blob: 0200b63fb448b0462f890f317c1c830b8959286d [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
Joe Perches8b58be82009-07-29 15:04:30 -0700316M: Michael Wu <flamingice@sourmilk.net>
Michael Wucc0b88c2007-08-31 01:15:25 -0400317L: linux-wireless@vger.kernel.org
318W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700319T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700321F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700326F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Jean Delvareb058b852009-12-09 20:36:08 +0100328ADT7475 HARDWARE MONITOR DRIVER
329M: Jean Delvare <khali@linux-fr.org>
330L: lm-sensors@lm-sensors.org
331S: Maintained
332F: Documentation/hwmon/adt7475
333F: drivers/hwmon/adt7475.c
334
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400335ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700336M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400337L: linux-scsi@vger.kernel.org
338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: Documentation/scsi/advansys.txt
340F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700343M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700345F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700348M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700350F: Documentation/filesystems/affs.txt
351F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700353AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700354M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700355L: linux-afs@lists.infradead.org
356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700357F: fs/afs/
358F: include/net/af_rxrpc.h
359F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700362M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700363T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700365F: drivers/char/agp/
366F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700369M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370L: linux-scsi@vger.kernel.org
371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700372F: drivers/scsi/aha152x*
373F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Hannes Reinecke64624d42007-10-19 10:32:29 +0200375AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700376M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200377L: linux-scsi@vger.kernel.org
378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/scsi/aic7xxx/
380F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200381
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700382AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700383M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700384L: linux-aio@kvack.org
385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700386F: fs/aio.c
387F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700390M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700391L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392W: http://www.linux-usb.org/SpeedTouch/
393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700394F: drivers/usb/atm/speedtch.c
395F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Pierre Ossman272f1332007-05-14 21:25:26 +0200397ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700400F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200401
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000402ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700403M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100404L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700406F: Documentation/i2c/busses/i2c-ali1563
407F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700410M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700411M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500412M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700413L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700414F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700416AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700417M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700418L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700420F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700421
Jordan Crousef90b8112006-01-06 00:12:14 -0800422AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100423P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700424L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800425W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700427F: drivers/char/hw_random/geode-rng.c
428F: drivers/crypto/geode*
429F: drivers/video/geode/
430F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800431
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200432AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700433M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200434L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700435T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700437F: arch/x86/kernel/amd_iommu*.c
438F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200439
Peter Orubae7f5b302008-07-28 18:44:11 +0200440AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700441M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700442L: amd64-microcode@amd64.org
443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700444F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200445
Stelian Pop284f42b2006-12-12 18:18:31 +0100446AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: Stelian Pop <stelian@popies.net>
448M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100451
Tom Tuckerf94b5332006-09-22 15:22:48 -0700452AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700453M: Tom Tucker <tom@opengridcomputing.com>
454M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700455L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700458
Johannes Berg42269062006-07-25 16:15:50 +0200459AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700460M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200461L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700462L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700467M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468L: linux-laptop@vger.kernel.org
469W: http://www.canb.auug.org.au/~sfr/
470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700471F: arch/x86/kernel/apm_32.c
472F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700474APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700476L: linux-input@vger.kernel.org
477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700479
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700480APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200481M: Henrik Rydberg <rydberg@euromail.se>
482L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700489F: drivers/net/appletalk/
490F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Jaya Kumar1154ea72005-06-21 17:17:04 -0700492ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700493M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: drivers/video/arcfb.c
496F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700501F: arch/arm/lib/floppydma.S
502F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Russell Kingd4275352009-04-16 14:05:27 +0100504ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700505M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700506L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100507W: http://www.arm.linux.org.uk/
508S: Maintained
509F: arch/arm/
510
Russell Kingcefbf4e2009-11-22 17:40:28 +0000511ARM PRIMECELL AACI PL041 DRIVER
512M: Russell King <linux@arm.linux.org.uk>
513S: Maintained
514F: sound/arm/aaci.*
515
516ARM PRIMECELL CLCD PL110 DRIVER
517M: Russell King <linux@arm.linux.org.uk>
518S: Maintained
519F: drivers/video/amba-clcd.*
520
521ARM PRIMECELL KMI PL050 DRIVER
522M: Russell King <linux@arm.linux.org.uk>
523S: Maintained
524F: drivers/input/serio/ambakmi.*
525F: include/linux/amba/kmi.h
526
Russell King2761f5c2007-05-24 06:56:08 +0200527ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200528S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200530
Russell Kingcefbf4e2009-11-22 17:40:28 +0000531ARM PRIMECELL BUS SUPPORT
532M: Russell King <linux@arm.linux.org.uk>
533S: Maintained
534F: drivers/amba/
535F: include/linux/amba/bus.h
536
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800537ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700538M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700539L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700541F: arch/arm/mach-ixp23xx/
542F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800543
544ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700545M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700546L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800547S: Maintained
548
Sergey Lapin9c784f92008-08-03 02:29:48 +0100549ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700550M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700551L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100552S: Maintained
553
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800554ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700556L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800557S: Maintained
558
Andrew Victord4a89c72006-12-04 13:56:21 +0100559ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700560M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700561L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200562W: http://maxim.org.za/at91_26.html
563S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100564
Leo Chen57a473f2009-08-12 22:08:48 +0100565ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100566M: Leo Chen <leochen@broadcom.com>
567M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700568L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800569S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100570F: arch/arm/mach-bcmring
571
572ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100573M: Leo Chen <leochen@broadcom.com>
574M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100575L: linux-mtd@lists.infradead.org
576S: Maintained
577F: drivers/mtd/nand/bcm_umi_nand.c
578F: drivers/mtd/nand/bcm_umi_bch.c
579F: drivers/mtd/nand/bcm_umi_hamming.c
580F: drivers/mtd/nand/nand_bcm_umi.h
581
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300582ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
583M: Anton Vorontsov <avorontsov@mvista.com>
584S: Maintained
585F: arch/arm/mach-cns3xxx/
586T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
587
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800588ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100589M: Hartley Sweeten <hsweeten@visionengravers.com>
590M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700591L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800592S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100593F: arch/arm/mach-ep93xx/
594F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800595
596ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700598L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800599S: Maintained
600
Russell Kingd4275352009-04-16 14:05:27 +0100601ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700602M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700603L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100604F: arch/arm/common/clkdev.c
605F: arch/arm/include/asm/clkdev.h
606
Mike Rapoportd48134e2008-08-20 09:03:26 +0100607ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700608M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700609L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100610S: Maintained
611
Hubert Feurstein94150092009-10-07 08:36:07 +0100612ARM/CONTEC MICRO9 MACHINE SUPPORT
613M: Hubert Feurstein <hubert.feurstein@contec.at>
614S: Maintained
615F: arch/arm/mach-ep93xx/micro9.c
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700618M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619S: Maintained
620
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200621ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200622M: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700623L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -0700624T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200625S: Odd Fixes
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300626F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200627
Russell Kingd4275352009-04-16 14:05:27 +0100628ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700629M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700630L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100631W: http://www.arm.linux.org.uk/
632S: Maintained
633F: arch/arm/mach-ebsa110/
634F: drivers/net/arm/am79c961a.*
635
Russell Kinga9da4f72008-07-12 21:42:04 +0100636ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Daniel Ribeiro <drwyrm@gmail.com>
638M: Stefan Schmidt <stefan@openezx.org>
639M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100640L: openezx-devel@lists.openezx.org (subscribers-only)
641W: http://www.openezx.org/
642S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200643T: topgit git://git.openezx.org/openezx.git
644F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100645
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200646ARM/FARADAY FA526 PORT
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200647M: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200649S: Odd Fixes
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300650F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200651
Russell Kingd4275352009-04-16 14:05:27 +0100652ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700653M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700654L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100655W: http://www.arm.linux.org.uk/
656S: Maintained
657F: arch/arm/include/asm/hardware/dec21285.h
658F: arch/arm/mach-footbridge/
659
Sascha Hauer86183a52008-07-24 23:50:35 +0200660ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700661M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700662L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200663S: Maintained
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100664T: git://git.pengutronix.de/git/imx/linux-2.6.git
665F: arch/arm/mach-mx*/
666F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200667
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800668ARM/FREESCALE IMX51
669M: Amit Kucheria <amit.kucheria@canonical.com>
670L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
671S: Maintained
672F: arch/arm/mach-mx5/
673
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800674ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700675M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700676L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800677S: Maintained
678
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100679ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700680M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700681L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100682S: Maintained
683
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200684ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700685M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200686S: Maintained
687F: arch/arm/mach-pxa/hx4700.c
688F: arch/arm/mach-pxa/include/mach/hx4700.h
689
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100690ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200692W: www.jlime.com
693S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700694T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
695F: arch/arm/mach-sa1100/jornada720.c
696F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100697
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800698ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700699M: Lennert Buytenhek <kernel@wantstofly.org>
700M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700701L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700702S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100703
704ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700705M: 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
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708
709ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700710M: Lennert Buytenhek <kernel@wantstofly.org>
711M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700713S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714
715ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Lennert Buytenhek <kernel@wantstofly.org>
717M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700718L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700719S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720
721ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700722M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800724S: Maintained
725
726ARM/INTEL IXDP2850 MACHINE SUPPORT
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 IXP23XX ARM ARCHITECTURE
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
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200736ARM/INTEL IXP4XX ARM ARCHITECTURE
737M: Imre Kaloz <kaloz@openwrt.org>
738M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200740S: Maintained
741F: arch/arm/mach-ixp4xx/
742
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100743ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT
744M: Jonathan Cameron <jic23@cam.ac.uk>
745L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
746S: Maintained
747F: arch/arm/mach-pxa/imote2.c
748
749ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT
750M: Jonathan Cameron <jic23@cam.ac.uk>
751L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
752S: Maintained
753F: arch/arm/mach-pxa/stargate2.c
754F: drivers/pcmcia/pxa2xx_stargate2.c
755
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700757M: Lennert Buytenhek <kernel@wantstofly.org>
758M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700760S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761
762ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800765S: Maintained
766
767ARM/LOGICPD PXA270 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
Philipp Zabel3b8861712008-07-09 21:27:15 +0100772ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700773M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100774S: Maintained
775
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400776ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400777M: Lennert Buytenhek <kernel@wantstofly.org>
778M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700779L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400780S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400781F: arch/arm/mach-loki/
782F: arch/arm/mach-kirkwood/
783F: arch/arm/mach-mv78xx0/
784F: arch/arm/mach-orion5x/
785F: arch/arm/plat-orion/
786
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200787ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700788M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200790F: arch/arm/mach-pxa/mioa701.c
791S: Maintained
792
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100793ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700794M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100795S: Maintained
796
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100797ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700798M: Alessandro Rubini <rubini@unipv.it>
799M: STEricsson <STEricsson_nomadik_linux@list.st.com>
800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
801S: Maintained
802F: arch/arm/mach-nomadik/
803F: arch/arm/plat-nomadik/
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100804
Andy Green9d762952009-05-19 06:41:42 -0300805ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300807L: openmoko-kernel@lists.openmoko.org (subscribers-only)
808W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
809S: Supported
810
Daniel Walker0c19d212009-12-07 16:53:51 -0800811ARM/QUALCOMM MSM MACHINE SUPPORT
812M: David Brown <davidb@codeaurora.org>
813M: Daniel Walker <dwalker@codeaurora.org>
814M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800815L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800816F: arch/arm/mach-msm/
817F: drivers/video/msm/
818F: drivers/mmc/host/msm_sdcc.c
819F: drivers/mmc/host/msm_sdcc.h
820F: drivers/serial/msm_serial.h
821F: drivers/serial/msm_serial.c
822T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git
823S: Maintained
824
Dirk Opfer8459c152005-11-06 14:27:52 +0000825ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
827M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000828S: Maintained
829
Marek Vasut5d783a22009-07-16 13:26:48 +0200830ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700831M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200832L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100833W: http://hackndev.com
834S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700835F: arch/arm/mach-pxa/include/mach/palmtx.h
836F: arch/arm/mach-pxa/palmtx.c
837F: arch/arm/mach-pxa/include/mach/palmt5.h
838F: arch/arm/mach-pxa/palmt5.c
839F: arch/arm/mach-pxa/include/mach/palmld.h
840F: arch/arm/mach-pxa/palmld.c
841F: arch/arm/mach-pxa/include/mach/palmte2.h
842F: arch/arm/mach-pxa/palmte2.c
843F: arch/arm/mach-pxa/include/mach/palmtc.h
844F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100845
Joe Perchesb57fe922009-12-14 18:00:52 -0800846ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700847M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200848L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200849W: http://hackndev.com
850S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800851F: arch/arm/mach-pxa/include/mach/palmtreo.h
852F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200853
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100854ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200856L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700857W: http://hackndev.com
858S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700859F: arch/arm/mach-pxa/include/mach/palmz72.h
860F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
865S: Maintained
866
867ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870W: http://www.arm.linux.org.uk/
871S: Maintained
872
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876S: Maintained
877
Russell Kingd4275352009-04-16 14:05:27 +0100878ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700879M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700880L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100881W: http://www.arm.linux.org.uk/
882S: Maintained
883F: arch/arm/common/time-acorn.c
884F: arch/arm/include/asm/hardware/entry-macro-iomd.S
885F: arch/arm/include/asm/hardware/ioc.h
886F: arch/arm/include/asm/hardware/iomd.h
887F: arch/arm/include/asm/hardware/memc.h
888F: arch/arm/mach-rpc/
889F: drivers/net/arm/ether*
890F: drivers/scsi/arm/
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894W: http://www.shark-linux.de/shark.html
895S: Maintained
896
Ben Dooksb21477f2009-06-13 10:46:34 +0100897ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100900W: http://www.fluff.org/ben/linux/
901S: Maintained
902F: arch/arm/plat-s3c/
903F: arch/arm/plat-s3c24xx/
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908W: http://www.fluff.org/ben/linux/
909S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100910F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912ARM/S3C2440 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-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Ben Dooksb21477f2009-06-13 10:46:34 +0100919ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700920M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100922W: http://www.fluff.org/ben/linux/
923S: Maintained
924F: arch/arm/mach-s3c2442/
925
926ARM/S3C2443 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-s3c2443/
932
933ARM/S3C6400 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-s3c6400/
939
940ARM/S3C6410 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-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Paul Mundtd48d38e2010-02-08 12:50:24 +0900947ARM/SHMOBILE ARM ARCHITECTURE
948M: Paul Mundt <lethal@linux-sh.org>
949M: Magnus Damm <magnus.damm@gmail.com>
950L: linux-sh@vger.kernel.org
951T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
952W: http://oss.renesas.com
953S: Supported
954F: arch/arm/mach-shmobile/
955F: drivers/sh/
956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800960S: Maintained
961
962ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700963M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700964L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800965S: Maintained
966
wanzongshun98ad6e32009-02-13 06:04:32 +0100967ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700968M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -0700970W: http://www.mcuos.com
971S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -0700972F: arch/arm/mach-w90x900/
973F: arch/arm/mach-nuc93x/
974F: drivers/input/keyboard/w90p910_keypad.c
975F: drivers/input/touchscreen/w90p910_ts.c
976F: drivers/watchdog/nuc900_wdt.c
977F: drivers/net/arm/w90p910_ether.c
978F: drivers/mtd/nand/w90p910_nand.c
979F: drivers/rtc/rtc-nuc900.c
980F: drivers/spi/spi_nuc900.c
981F: drivers/usb/host/ehci-w90x900.c
982F: drivers/video/nuc900fb.c
983F: drivers/sound/soc/nuc900/
wanzongshun98ad6e32009-02-13 06:04:32 +0100984
Linus Walleij54274d72010-04-04 10:58:03 +0100985ARM/U300 MACHINE SUPPORT
986M: Linus Walleij <linus.walleij@stericsson.com>
987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988S: Supported
989F: arch/arm/mach-u300/
990F: drivers/i2c/busses/i2c-stu300.c
991F: drivers/rtc/rtc-coh901331.c
992F: drivers/watchdog/coh901327_wdt.c
993F: drivers/dma/coh901318*
994
Srinidhi Kasagar870725d2009-12-01 13:41:24 +0100995ARM/U8500 ARM ARCHITECTURE
996M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998S: Maintained
999F: arch/arm/mach-ux500/
1000
Russell Kingd4275352009-04-16 14:05:27 +01001001ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001003L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001004W: http://www.arm.linux.org.uk/
1005S: Maintained
1006F: arch/arm/vfp/
1007
Marek Vasute66b6d82010-03-26 06:51:32 +01001008ARM/VOIPAC PXA270 SUPPORT
1009M: Marek Vasut <marek.vasut@gmail.com>
1010L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1011S: Maintained
1012F: arch/arm/mach-pxa/vpac270.c
1013F: arch/arm/mach-pxa/include/mach-pxa/vpac270.h
1014
1015ARM/ZIPIT Z2 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/z2.c
1020F: arch/arm/mach-pxa/include/mach-pxa/z2.h
1021
George Josephd58de032010-03-05 22:17:25 +01001022ASC7621 HARDWARE MONITOR DRIVER
1023M: George Joseph <george.joseph@fairview5.com>
1024L: lm-sensors@lm-sensors.org
1025S: Maintained
1026F: Documentation/hwmon/asc7621
1027F: drivers/hwmon/asc7621.c
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001030M: Corentin Chary <corentincj@iksaif.net>
1031M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001033L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001034W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001036F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001038ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001040L: lm-sensors@lm-sensors.org
1041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001042F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001043
Corentin Chary85091b72007-01-26 14:04:30 +01001044ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +01001046L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001047L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001048W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +01001049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001050F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +01001051
Andrew Morton953a6472008-11-06 12:53:28 -08001052ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001054W: http://sourceforge.net/projects/xscaleiop
1055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001056F: Documentation/crypto/async-tx-api.txt
1057F: crypto/async_tx/
1058F: drivers/dma/
1059F: include/linux/dmaengine.h
1060F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001061
Wolfram Sanga1867d32009-09-18 22:45:51 +02001062AT24 EEPROM DRIVER
1063M: Wolfram Sang <w.sang@pengutronix.de>
1064L: linux-i2c@vger.kernel.org
1065S: Maintained
1066F: drivers/misc/eeprom/at24.c
1067F: include/linux/i2c/at24.h
1068
Randy Dunlape7839f22008-10-12 16:11:45 -07001069ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001070M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071W: http://www.coraid.com/support/linux
1072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001073F: Documentation/aoe/
1074F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001076ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Jiri Slaby <jirislaby@gmail.com>
1078M: Nick Kossifidis <mickflemm@gmail.com>
1079M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1080M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001081L: linux-wireless@vger.kernel.org
1082L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001083W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001084S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001085F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001086
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001087ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001088M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1089M: Jouni Malinen <jmalinen@atheros.com>
1090M: Sujith Manoharan <Sujith.Manoharan@atheros.com>
1091M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1092M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001093L: linux-wireless@vger.kernel.org
1094L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001095W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001096S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001097F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001098
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001099ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001100M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001101L: linux-wireless@vger.kernel.org
1102W: http://wireless.kernel.org/en/users/Drivers/ar9170
1103S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001104F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001105
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001106ATK0110 HWMON DRIVER
1107M: Luca Tettamanti <kronos.it@gmail.com>
1108L: lm-sensors@lm-sensors.org
1109S: Maintained
1110F: drivers/hwmon/asus_atk0110.c
1111
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001112ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001115F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001116
Chris Snook7ae115b2008-09-09 03:26:57 -04001117ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001118M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001119M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001120M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001121L: atl1-devel@lists.sourceforge.net
1122W: http://sourceforge.net/projects/atl1
1123W: http://atl1.sourceforge.net
1124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001128M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001129L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131W: http://linux-atm.sourceforge.net
1132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001133F: drivers/atm/
1134F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Pierre Ossman272f1332007-05-14 21:25:26 +02001136ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001137M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001138L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001139W: http://www.atmel.com/products/AT91/
1140W: http://www.at91.com/
1141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001142F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001143
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001144ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001145M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001146S: Maintained
1147F: drivers/mmc/host/atmel-mci.c
1148F: drivers/mmc/host/atmel-mci-regs.h
1149
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001150ATMEL AT91 / AT32 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001151M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001153F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001154
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001155ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001156M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001157L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001159F: drivers/video/atmel_lcdfb.c
1160F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001161
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001162ATMEL MACB ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001163M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001165F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001166
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001167ATMEL SPI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001168M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001170F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001171
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001172ATMEL USBA UDC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001173M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001174L: kernel@avr32linux.org
1175W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001177F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001180M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001181L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182W: http://www.thekelleys.org.uk/atmel
1183W: http://atmelwlandriver.sourceforge.net/
1184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001185F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Chris Wrighta92b7b82005-07-07 18:12:23 -07001187AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Al Viro <viro@zeniv.linux.org.uk>
1189M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001190L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001191W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001192T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001194F: include/linux/audit.h
1195F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001196
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001197AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001198M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001199W: http://miguelojeda.es/auxdisplay.htm
1200W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001202F: drivers/auxdisplay/
1203F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001204
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001205AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001206M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001207W: http://www.atmel.com/products/AVR32/
1208W: http://avr32linux.org/
1209W: http://avrfreaks.net/
1210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001212
1213AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001214M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001216F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001221W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001223F: include/linux/ax25.h
1224F: include/net/ax25.h
1225F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001227B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001228M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001229L: linux-wireless@vger.kernel.org
1230W: http://linuxwireless.org/en/users/Drivers/b43
1231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001232F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001233
1234B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Larry Finger <Larry.Finger@lwfinger.net>
1236M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001237L: linux-wireless@vger.kernel.org
1238W: http://linuxwireless.org/en/users/Drivers/b43
1239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001240F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001241
Richard Purdie300abeb2007-02-07 22:21:07 +00001242BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001243M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001245F: drivers/video/backlight/
1246F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001247
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001248BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001249M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001250L: linux-hams@vger.kernel.org
1251W: http://www.baycom.org/~tom/ham/ham.html
1252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001253F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001254
1255BEFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001256M: "Sergey S. Kostyliov" <rathamahata@php4.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001258F: Documentation/filesystems/befs.txt
1259F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001260
1261BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001262M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001264F: Documentation/filesystems/bfs.txt
1265F: fs/bfs/
1266F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001267
Bryan Wu1394f032007-05-06 14:50:22 -07001268BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001269M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001270L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001271W: http://blackfin.uclinux.org
1272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001273F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001274
Bryan Wue190d6b2007-07-17 14:43:44 +08001275BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001276M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001277L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001278W: http://blackfin.uclinux.org
1279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001280F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001281
Mike Frysinger566da5b2007-06-11 15:31:30 +08001282BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001283M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001284L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001285W: http://blackfin.uclinux.org
1286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001287F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001288
Mike Frysinger936ed492010-03-10 15:20:38 -08001289BLACKFIN SDH DRIVER
1290M: Cliff Cai <cliff.cai@analog.com>
1291L: uclinux-dist-devel@blackfin.uclinux.org
1292W: http://blackfin.uclinux.org
1293S: Supported
1294F: drivers/mmc/host/bfin_sdh.c
1295
Bryan Wu1394f032007-05-06 14:50:22 -07001296BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001297M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001298L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001299W: http://blackfin.uclinux.org
1300S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001301F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001302
Bryan Wu1e6d3202007-07-15 02:50:02 +08001303BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001304M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001305L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001306W: http://blackfin.uclinux.org
1307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001308F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001309
Bryan Wud24ecfc2007-05-01 23:26:32 +02001310BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001311M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001312L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001313W: http://blackfin.uclinux.org/
1314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001315F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001318M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001319T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001321F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Joern Engel2b54aae2008-02-06 01:38:02 -08001323BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001324M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001325L: linux-mtd@lists.infradead.org
1326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001327F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001328
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001329BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001330M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001331L: linux-bluetooth@vger.kernel.org
1332W: http://www.bluez.org/
1333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001334F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001337M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001338L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001339W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001340T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001342F: net/bluetooth/
1343F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001347L: bonding-devel@lists.sourceforge.net
1348W: http://sourceforge.net/projects/bonding/
1349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001350F: drivers/net/bonding/
1351F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Gary Zambrano39105892006-06-22 17:26:20 -07001353BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001354M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001355L: netdev@vger.kernel.org
1356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001357F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001358
Michael Chan948c51e2006-06-04 02:51:39 -07001359BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001360M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001361L: netdev@vger.kernel.org
1362S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001363F: drivers/net/bnx2.*
1364F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001365
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001366BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001367M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001368L: netdev@vger.kernel.org
1369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001370F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001371
Michael Chan948c51e2006-06-04 02:51:39 -07001372BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001373M: Matt Carlson <mcarlson@broadcom.com>
1374M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001375L: netdev@vger.kernel.org
1376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001377F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001378
Jing Huang7725ccf2009-09-23 17:46:15 -07001379BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001380M: Jing Huang <huangj@brocade.com>
1381L: linux-scsi@vger.kernel.org
1382S: Supported
1383F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001384
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001385BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001386M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001387L: linux-scsi@vger.kernel.org
1388S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001389F: block/bsg.c
1390F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001391
Michael Bueschff1d5c22008-07-25 01:46:10 -07001392BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001393M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001394W: http://bu3sch.de/btgpio.php
1395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001396F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001397
Joe Percheseb1eb042009-01-21 10:49:16 -05001398BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001399M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001400L: linux-btrfs@vger.kernel.org
1401W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001402Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001403T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001405F: Documentation/filesystems/btrfs.txt
1406F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001409M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001410L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001411W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001412T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001414F: Documentation/video4linux/bttv/
1415F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
David Howellsa5432f52009-04-20 15:46:45 +01001417CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001418M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001419L: linux-cachefs@redhat.com
1420S: Supported
1421F: Documentation/filesystems/caching/cachefiles.txt
1422F: fs/cachefiles/
1423
Jonathan Corbet77d51402007-03-22 19:44:17 -03001424CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001425M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001426L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001427T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: Documentation/video4linux/cafe_ccic
1430F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001431
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001432CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Muli Ben-Yehuda <muli@il.ibm.com>
1434M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001435L: discuss@x86-64.org
1436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001437F: arch/x86/kernel/pci-calgary_64.c
1438F: arch/x86/kernel/tce_64.c
1439F: arch/x86/include/asm/calgary.h
1440F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001441
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001442CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001443M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001444M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001445M: Urs Thuermann <urs.thuermann@volkswagen.de>
1446L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001447L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001448W: http://developer.berlios.de/projects/socketcan/
1449S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001450F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001451F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001452F: include/linux/can/core.h
1453F: include/linux/can/bcm.h
1454F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001455
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001456CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001457M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001458L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001459L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001460W: http://developer.berlios.de/projects/socketcan/
1461S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001462F: drivers/net/can/
1463F: include/linux/can/dev.h
1464F: include/linux/can/error.h
1465F: include/linux/can/netlink.h
1466F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001467
Arnd Bergmannb8154542008-05-16 11:10:59 +02001468CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001470L: linuxppc-dev@ozlabs.org
1471L: cbe-oss-dev@ozlabs.org
1472W: http://www.ibm.com/developerworks/power/cell/
1473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001474F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001475F: arch/powerpc/include/asm/spu*.h
1476F: arch/powerpc/oprofile/*cell*
1477F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001478
Sage Weil9030aaf2009-10-06 11:31:15 -07001479CEPH DISTRIBUTED FILE SYSTEM CLIENT
1480M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001481L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001482W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001483T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001484S: Supported
1485F: Documentation/filesystems/ceph.txt
1486F: fs/ceph
1487
David Vrabel18332a82008-09-17 16:34:44 +01001488CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001490L: linux-usb@vger.kernel.org
1491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001492F: Documentation/usb/WUSB-Design-overview.txt
1493F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001494F: drivers/usb/host/hwa-hc.c
1495F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001496F: drivers/usb/wusbcore/
1497F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001498
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001499CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001500M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001501W: http://miguelojeda.es/auxdisplay.htm
1502W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001504F: drivers/auxdisplay/cfag12864b.c
1505F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001506
1507CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001508M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001509W: http://miguelojeda.es/auxdisplay.htm
1510W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/auxdisplay/cfag12864bfb.c
1513F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001514
Johannes Berg704232c2007-04-23 12:20:05 -07001515CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001516M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001517L: linux-wireless@vger.kernel.org
1518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: include/linux/nl80211.h
1520F: include/net/cfg80211.h
1521F: net/wireless/*
1522X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001523
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001524CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001525M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001527F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001528
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001529CISCO VIC ETHERNET NIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Scott Feldman <scofeldm@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001531M: Vasanthy Kolluri <vkolluri@cisco.com>
1532M: Roopa Prabhu <roprabhu@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001535
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001536CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001538L: netdev@vger.kernel.org
1539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001541
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001542CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001544L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001546F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001547
Timur Tabid9e9d822008-04-24 08:45:26 +10001548CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001550L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001552F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001553
Russell Kingd4275352009-04-16 14:05:27 +01001554CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001555M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001556F: include/linux/clk.h
1557
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001558CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001559M: Abhijeet Joglekar <abjoglek@cisco.com>
1560M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001561L: linux-scsi@vger.kernel.org
1562S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001563F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001564
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001565CMPC ACPI DRIVER
1566M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1567M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001568L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001569S: Supported
1570F: drivers/platform/x86/classmate-laptop.c
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001573M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574M: coda@cs.cmu.edu
1575L: codalist@coda.cs.cmu.edu
1576W: http://www.coda.cs.cmu.edu/
1577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001578F: Documentation/filesystems/coda.txt
1579F: fs/coda/
1580F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: Steve French <sfrench@samba.org>
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001584L: linux-cifs-client@lists.samba.org (moderated for non-subscribers)
1585L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001586W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001587Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001588T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001590F: Documentation/filesystems/cifs.txt
1591F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001595L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001601L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001606M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001607L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001609F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001611COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001612M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001613L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001615F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001618M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001621F: Documentation/serial/computone.txt
1622F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Simon Arlott949be0f2007-03-06 02:47:46 -08001624CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001626L: accessrunner-general@lists.sourceforge.net
1627W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001629F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001630
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001631CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001634F: fs/configfs/
1635F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001636
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001637CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001639L: netdev@vger.kernel.org
1640S: Maintained
1641F: drivers/connector/
1642
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001643CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001644M: Paul Menage <menage@google.com>
1645M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001646L: containers@lists.linux-foundation.org
1647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: include/linux/cgroup*
1649F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001650F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001651
Rudolf Marekbebe4672007-05-08 17:22:02 +02001652CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Rudolf Marek <r.marek@assembler.cz>
Huaxu Wan57784df2009-10-24 13:28:45 +02001654M: Huaxu Wan <huaxu.wan@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001655L: lm-sensors@lm-sensors.org
1656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001657F: Documentation/hwmon/coretemp
1658F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662W: http://www.fi.muni.cz/~kas/cosa/
1663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Florian Fainelli4371ee32009-06-01 02:43:17 -07001666CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001668L: netdev@vger.kernel.org
1669S: Maintained
1670F: drivers/net/cpmac.c
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001674L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001676T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001678F: arch/x86/kernel/cpu/cpufreq/
1679F: drivers/cpufreq/
1680F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001685F: arch/x86/kernel/cpuid.c
1686F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Paul Jacksoned90fb42005-09-27 21:45:37 -07001688CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001689M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001690W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001691W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001693F: Documentation/cgroups/cpusets.txt
1694F: include/linux/cpuset.h
1695F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001698W: http://sourceforge.net/projects/cramfs/
1699S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001700F: Documentation/filesystems/cramfs.txt
1701F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: Mikael Starvik <starvik@axis.com>
1705M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001706L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707W: http://developer.axis.com
1708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001709F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001712M: Herbert Xu <herbert@gondor.apana.org.au>
1713M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001715T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001717F: Documentation/crypto/
1718F: arch/*/crypto/
1719F: crypto/
1720F: drivers/crypto/
1721F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Neil Horman5b07bd52009-02-05 16:03:04 +11001723CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001724M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001725L: linux-crypto@vger.kernel.org
1726S: Maintained
1727
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001728CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001729M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001732
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001733CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001734M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001735L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001736L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001737T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001738W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001739W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001741F: Documentation/video4linux/cx18.txt
1742F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001743
Steve Wisee5ec3782008-05-20 14:06:33 -07001744CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001745M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001746L: netdev@vger.kernel.org
1747W: http://www.chelsio.com
1748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001749F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001750
1751CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001752M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001753L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001754W: http://www.openfabrics.org
1755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001756F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001757
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001758CXGB4 ETHERNET DRIVER (CXGB4)
1759M: Dimitris Michailidis <dm@chelsio.com>
1760L: netdev@vger.kernel.org
1761W: http://www.chelsio.com
1762S: Supported
1763F: drivers/net/cxgb4/
1764
1765CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
1766M: Steve Wise <swise@chelsio.com>
1767L: linux-rdma@vger.kernel.org
1768W: http://www.openfabrics.org
1769S: Supported
1770F: drivers/infiniband/hw/cxgb4/
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775W: http://www.arm.linux.org.uk/
1776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001780M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001781W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001783F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001787S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001788F: drivers/char/cyclades.c
1789F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001793S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001794F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001797M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798W: http://yaina.de/jreuter/
1799W: http://www.qsl.net/dl1bke/
1800L: linux-hams@vger.kernel.org
1801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001802F: net/ax25/af_ax25.c
1803F: net/ax25/ax25_dev.c
1804F: net/ax25/ax25_ds_*
1805F: net/ax25/ax25_in.c
1806F: net/ax25/ax25_out.c
1807F: net/ax25/ax25_timer.c
1808F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001810DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001811M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001812L: netdev@vger.kernel.org
1813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001814F: Documentation/networking/dmfe.txt
1815F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001816
1817DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001818M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001819W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001820M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001822F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001825M: Oliver Neukum <oliver@neukum.name>
1826M: Ali Akcaagac <aliakc@web.de>
1827M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001829L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830L: http://lists.twibble.org/mailman/listinfo/dc395x/
1831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001832F: Documentation/scsi/dc395x.txt
1833F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001835DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001836M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001837L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001838W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001840F: include/linux/dccp.h
1841F: include/linux/tfrc.h
1842F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845W: http://linux-decnet.sourceforge.net
1846L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00001847S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001848F: Documentation/networking/decnet.txt
1849F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001852M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001854F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001856DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001857M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05001858L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001860F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001863M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864W: http://www.debian.org/~dz/i8k/
1865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/char/i8k.c
1867F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Doug Warzecha90563ec2005-09-06 15:17:15 -07001869DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001872F: Documentation/dcdbas.txt
1873F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001874
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001875DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001877S: Maintained
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001880M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882S: Maintained
1883
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001884DEVICE-MAPPER (LVM)
1885P: Alasdair Kergon
1886L: dm-devel@redhat.com
1887W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08001888Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: Documentation/device-mapper/
1891F: drivers/md/dm*
1892F: include/linux/device-mapper.h
1893F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001896M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897L: Eng.Linux@digi.com
1898W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001899S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001900F: Documentation/serial/digiepca.txt
1901F: drivers/char/epca*
1902F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Randy Dunlape7839f22008-10-12 16:11:45 -07001904DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001907F: Documentation/filesystems/dnotify.txt
1908F: fs/notify/dnotify/
1909F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001912M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1914W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1915W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1916S: Maintained
1917
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001918DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001919M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001921F: Documentation/filesystems/quota.txt
1922F: fs/quota/
1923F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Randy Dunlape7839f22008-10-12 16:11:45 -07001925DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001926M: Christine Caulfield <ccaulfie@redhat.com>
1927M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001928L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001929W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001930T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001932F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001933
Dan Williamsb3e5f262007-08-07 10:26:35 -07001934DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001935M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001937F: drivers/dma/
1938F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001939
Juerg Haefligerb8250372007-06-09 10:11:16 -04001940DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001942L: lm-sensors@lm-sensors.org
1943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001944F: Documentation/hwmon/dme1737
1945F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001946
Martin Waitzba483d52005-06-17 13:20:59 -07001947DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001948M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001949S: Maintained
1950
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001951DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001952M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001953L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001955F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001956
Joe Perches7d2c86b2009-04-07 20:59:01 -07001957DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001958M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001959L: linux-doc@vger.kernel.org
1960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001964M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965L: blinux-list@redhat.com
1966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001967F: drivers/char/dtlk.c
1968F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001970DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001972L: linux-scsi@vger.kernel.org
1973W: http://www.adaptec.com/
1974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001975F: drivers/scsi/dpt*
1976F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001977
Philipp Reisnerb411b362009-09-25 16:07:19 -07001978DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07001979P: Philipp Reisner
1980P: Lars Ellenberg
1981M: drbd-dev@lists.linbit.com
1982L: drbd-user@lists.linbit.com
1983W: http://www.drbd.org
1984T: git git://git.drbd.org/linux-2.6-drbd.git drbd
1985T: git git://git.drbd.org/drbd-8.3.git
1986S: Supported
1987F: drivers/block/drbd/
1988F: lib/lru_cache.c
1989F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07001992M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08001993T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001995F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001996F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001997F: fs/sysfs/
1998F: include/linux/kobj*
1999F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002003L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002006F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
2008DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002009M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002010L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002014DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002021L: linux-eata@i-connect.net
2022L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028L: linux-scsi@vger.kernel.org
2029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002033M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002034L: linux-eata@i-connect.net
2035L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002037F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041L: ebtables-user@lists.sourceforge.net
2042L: ebtables-devel@lists.sourceforge.net
2043W: http://ebtables.sourceforge.net/
2044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: include/linux/netfilter_bridge/ebt_*.h
2046F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Michael Halcrow237fead2006-10-04 02:16:22 -07002048ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2050M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08002051L: ecryptfs-devel@lists.launchpad.net
2052W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002054F: Documentation/filesystems/ecryptfs.txt
2055F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002056
Alan Coxda9bb1d2006-01-18 17:44:13 -08002057EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002058M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002059L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002060W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002061S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002062F: Documentation/edac.txt
2063F: drivers/edac/edac_*
2064F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002065
Borislav Petkovc476c232009-05-20 20:31:58 +02002066EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Doug Thompson <dougthompson@xmission.com>
2068M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002069L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2070W: bluesmoke.sourceforge.net
2071S: Supported
2072F: drivers/edac/amd64_edac*
2073
Dave Peterson0e438e32006-03-26 01:38:55 -08002074EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Mark Gross <mark.gross@intel.com>
2076M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002077L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002078W: bluesmoke.sourceforge.net
2079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002081
2082EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002084L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002085W: bluesmoke.sourceforge.net
2086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002088
Douglas Thompson6bc78402007-07-19 01:50:12 -07002089EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002091L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002092W: bluesmoke.sourceforge.net
2093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002095
2096EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002097M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002098L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002099W: bluesmoke.sourceforge.net
2100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002102
2103EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002104M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002105L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002106W: bluesmoke.sourceforge.net
2107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002109
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002110EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Mauro Carvalho Chehab <mchehab@redhat.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002112L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002113W: bluesmoke.sourceforge.net
2114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002116
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002117EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002118M: Ranganathan Desikan <ravi@jetztechnologies.com>
2119M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002120L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002121W: bluesmoke.sourceforge.net
2122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002123F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002124
2125EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002127L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002128W: bluesmoke.sourceforge.net
2129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002130F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002131
Dave Peterson0e438e32006-03-26 01:38:55 -08002132EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002133M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002134L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002135W: bluesmoke.sourceforge.net
2136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002138
Eric Coopere59f8792008-03-13 12:55:46 +01002139EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01002141L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05002142L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00002143W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002145F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002146
Josh Triplett0bee8d22006-07-30 03:03:58 -07002147EFS FILESYSTEM
2148W: http://aeschi.ch.eu.org/efs/
2149S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002150F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002151
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002152EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002153M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2154M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002155L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002157F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002158
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002159EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002160M: Paul Gortmaker <paul.gortmaker@windriver.com>
2161M: Matt Mackall <mpm@selenic.com>
2162M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002163L: linux-embedded@vger.kernel.org
2164S: Maintained
2165
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002166EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002167M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002168L: linux-scsi@vger.kernel.org
2169W: http://sourceforge.net/projects/lpfcxxxx
2170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002171F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002172
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002173ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002175S: Maintained
2176F: drivers/misc/cb710/
2177F: drivers/mmc/host/cb710-mmc.*
2178F: include/linux/cb710.h
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002181M: Christopher Hoover <ch@murgatroid.com>
2182M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002186EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002188S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002189T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002190F: drivers/video/s1d13xxxfb.c
2191F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002195L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002200M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002201L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002202L: netdev@vger.kernel.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002203W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: include/linux/netfilter_bridge/
2206F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
2208ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002214L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: Documentation/filesystems/ext2.txt
2217F: fs/ext2/
2218F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220EXT3 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002221M: Andrew Morton <akpm@linux-foundation.org>
2222M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002223L: linux-ext4@vger.kernel.org
2224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: Documentation/filesystems/ext3.txt
2226F: fs/ext3/
2227F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002228
2229EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: "Theodore Ts'o" <tytso@mit.edu>
2231M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002232L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002233W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002234Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002236F: Documentation/filesystems/ext4.txt
2237F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Jean Delvaree53004e2006-01-09 23:26:14 +01002239F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002240M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002241L: lm-sensors@lm-sensors.org
2242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002243F: Documentation/hwmon/f71805f
2244F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002247M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248W: http://www.farsite.co.uk/
2249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002250F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Akinobu Mitac5408b82007-04-23 14:41:20 -07002252FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002253M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002255F: Documentation/fault-injection/
2256F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002257
Robert Lovecae727d2010-02-16 12:16:00 -08002258FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2259M: Robert Love <robert.w.love@intel.com>
2260L: devel@open-fcoe.org
2261W: www.Open-FCoE.org
2262S: Supported
2263F: drivers/scsi/libfc/
2264F: drivers/scsi/fcoe/
2265F: include/scsi/fc/
2266F: include/scsi/libfc.h
2267F: include/scsi/libfcoe.h
2268
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271L: linux-fsdevel@vger.kernel.org
2272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002273F: include/linux/fcntl.h
2274F: include/linux/fs.h
2275F: fs/fcntl.c
2276F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002277
2278FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002280L: linux-fsdevel@vger.kernel.org
2281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002283
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002284FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002285M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002286L: lm-sensors@lm-sensors.org
2287S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002288F: drivers/hwmon/f75375s.c
2289F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002290
Joe Perches7d2c86b2009-04-07 20:59:01 -07002291FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002292M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002293L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002294W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002295T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/firewire/
2298F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002299
2300FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002301S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002302F: Documentation/firmware_class/
2303F: drivers/base/firmware*.c
2304F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002305
2306FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002307M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002308W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002310F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002311
2312FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002313M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002314L: netdev@vger.kernel.org
2315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002316F: drivers/net/wan/dlci.c
2317F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319FRAMEBUFFER LAYER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002320L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002322S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002323F: Documentation/fb/
2324F: drivers/video/fb*
2325F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Zhang Wei173acc72008-03-01 07:42:48 -07002327FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002328M: Li Yang <leoli@freescale.com>
2329M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002330L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002332F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002333
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002334FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002335M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002336L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002337L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002339F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002340
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002341FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002343L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002344L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002346F: arch/arm/plat-mxc/include/mach/imxfb.h
2347F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002348
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002349FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2351M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002352L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002353L: netdev@vger.kernel.org
2354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002355F: drivers/net/fs_enet/
2356F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002357
Timur Tabid9e9d822008-04-24 08:45:26 +10002358FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002359M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002360L: linuxppc-dev@ozlabs.org
2361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002362F: arch/powerpc/sysdev/qe_lib/
2363F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002364
Joe Perchesb55ef9292009-10-26 16:49:46 -07002365FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002366M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002367L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002368L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002369S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002370F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002371
Li Yangbeaf53b2007-05-25 13:54:02 +08002372FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002373M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002374L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002375L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002378
Timur Tabid9e9d822008-04-24 08:45:26 +10002379FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002380M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002381L: linuxppc-dev@ozlabs.org
2382S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002383F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002384
2385FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002387L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002388L: linuxppc-dev@ozlabs.org
2389S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002390F: sound/soc/fsl/fsl*
2391F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Pavel Machek71038f52009-01-15 13:51:02 -08002399FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002400M: Pavel Machek <pavel@ucw.cz>
2401M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002402L: linux-pm@lists.linux-foundation.org
2403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002404F: Documentation/power/freezing-of-tasks.txt
2405F: include/linux/freezer.h
2406F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002407
David Howellsa5432f52009-04-20 15:46:45 +01002408FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002409M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002410L: linux-cachefs@redhat.com
2411S: Supported
2412F: Documentation/filesystems/caching/
2413F: fs/fscache/
2414F: include/linux/fscache*.h
2415
David Howells5ab7ffe2007-04-10 15:10:45 +01002416FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002417M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002419F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Jonathan Woithe20b93732008-06-11 10:14:56 +09302421FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002422M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002423L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002425F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302426
Miklos Szeredi04578f12005-09-09 13:10:22 -07002427FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002429L: fuse-devel@lists.sourceforge.net
2430W: http://fuse.sourceforge.net/
2431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002432F: fs/fuse/
2433F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002438S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002439F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443L: linux-scsi@vger.kernel.org
2444W: http://www.icp-vortex.com/
2445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002446F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002448GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/i2c/busses/i2c-gpio.c
2452F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002453
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002454GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: drivers/net/wan/c101.c
2459F: drivers/net/wan/hd6457*
2460F: drivers/net/wan/hdlc*
2461F: drivers/net/wan/n2.c
2462F: drivers/net/wan/pc300too.c
2463F: drivers/net/wan/pci200syn.c
2464F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002466GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002467M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002468L: linux-arch@vger.kernel.org
2469T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2470S: Maintained
2471F: include/asm-generic
2472
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002473GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002474M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002475L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002476S: Supported
2477F: drivers/uio/uio_pci_generic.c
2478
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002479GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002481L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002482W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002483T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2484T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002486F: Documentation/filesystems/gfs2*.txt
2487F: fs/gfs2/
2488F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002489
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002490GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Hansjoerg Lipp <hjlipp@web.de>
2492M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002493L: gigaset307x-common@lists.sourceforge.net
2494W: http://gigaset307x.sourceforge.net/
2495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002496F: Documentation/isdn/README.gigaset
2497F: drivers/isdn/gigaset/
2498F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002499
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002500GRETH 10/100/1G Ethernet MAC device driver
2501M: Kristoffer Glembo <kristoffer@gaisler.com>
2502L: netdev@vger.kernel.org
2503S: Maintained
2504F: drivers/net/greth*
2505
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002506HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002508L: lm-sensors@lm-sensors.org
2509W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002512
Andi Kleen7bc98b92009-12-16 12:19:57 +01002513HWPOISON MEMORY FAILURE HANDLING
2514M: Andi Kleen <andi@firstfloor.org>
2515L: linux-mm@kvack.org
2516L: linux-kernel@vger.kernel.org
2517T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2518S: Maintained
2519F: mm/memory-failure.c
2520F: mm/hwpoison-inject.c
2521
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002522HYPERVISOR VIRTUAL CONSOLE DRIVER
2523L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002524S: Odd Fixes
2525F: drivers/char/hvc_*
2526
Konrad Rzeszutek Wilkc4d14092010-02-26 03:53:00 +00002527iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
2528M: Peter Jones <pjones@redhat.com>
2529M: Konrad Rzeszutek Wilk <konrad@kernel.org>
2530S: Maintained
2531F: drivers/firmware/iscsi_ibft*
2532
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002533GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002534M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002535L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002536T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002538F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002539
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002540GSPCA GL860 SUBDRIVER
2541M: Olivier Lorin <o.lorin@laposte.net>
2542L: linux-media@vger.kernel.org
2543T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2544S: Maintained
2545F: drivers/media/video/gspca/gl860/
2546
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002547GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002549L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002550T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002552F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002553
2554GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002556L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002557T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002559F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002560
Brian Johnson261982f2009-07-19 15:58:56 -03002561GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002562M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002563L: linux-media@vger.kernel.org
2564T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2565S: Maintained
2566F: drivers/media/video/gspca/sn9c20x.c
2567
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002568GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002569M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002570L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002571T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002573F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002574
2575GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002576M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002577W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002578L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002579T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002582
Jean Delvare5b543962005-08-15 19:51:02 +02002583HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002584L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002585W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002586S: Orphan
Jean Delvare047f4ec2009-12-09 20:35:46 +01002587F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002588F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002589F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002590
Michael Buesch844dd052006-06-26 00:24:59 -07002591HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002592M: Matt Mackall <mpm@selenic.com>
2593M: Herbert Xu <herbert@gondor.apana.org.au>
2594S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002595F: Documentation/hw_random.txt
2596F: drivers/char/hw_random/
2597F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002600M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002601L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002603F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002605HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002606M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002607L: iss_storagedev@hp.com
2608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002609F: Documentation/blockdev/cpqarray.txt
2610F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002611
2612HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002613M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002614L: iss_storagedev@hp.com
2615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002616F: Documentation/blockdev/cciss.txt
2617F: drivers/block/cciss*
2618F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002621M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002623F: Documentation/filesystems/hfs.txt
2624F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002627M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628L: linux-nvidia@lists.surfsouth.com
2629W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002633HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002634M: Pavel Machek <pavel@ucw.cz>
2635M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002636L: linux-pm@lists.linux-foundation.org
2637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002638F: arch/x86/power/
2639F: drivers/base/power/
2640F: kernel/power/
2641F: include/linux/suspend.h
2642F: include/linux/freezer.h
2643F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002644F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002645
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002646HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002647M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002648L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002651F: drivers/hid/
2652F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002653
Ingo Molnar38bed542007-02-22 09:09:34 +01002654HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002655M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002657F: Documentation/timers/
2658F: kernel/hrtimer.c
2659F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002662M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663L: linux-hams@vger.kernel.org
2664W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002666F: drivers/net/hamradio/dmascc.c
2667F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002669HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002670M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002671W: http://www.highpoint-tech.com
2672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002673F: Documentation/scsi/hptiop.txt
2674F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002677M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678L: linux-hippi@sunsite.dk
2679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: include/linux/hippidevice.h
2681F: include/linux/if_hippi.h
2682F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Jouni Malinenff1d2762005-05-12 22:54:16 -04002684HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002685M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002686L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002687L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002688W: http://hostap.epitest.fi/
2689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002690F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002691
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002692HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002693M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -05002694L: platform-driver-x86@vger.kernel.org
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002695S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002696F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002697
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002698HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002699M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002701F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002702
Joe Perches7d2c86b2009-04-07 20:59:01 -07002703HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002704M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002706F: Documentation/timers/hpet.txt
2707F: drivers/char/hpet.c
2708F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002709
Jiri Kosinae07b5d72010-03-18 10:59:57 +01002710HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07002711M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: arch/x86/kernel/hpet.c
2714F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002715
Joe Perches7d2c86b2009-04-07 20:59:01 -07002716HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002719F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002722M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002725F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Joe Perches7d2c86b2009-04-07 20:59:01 -07002727HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002728M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002729W: http://www.pharscape.org
2730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002731F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002732
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002733HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002734M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002735L: linux-input@vger.kernel.org
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002744I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002746L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002748F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002749
Jean Delvare5b543962005-08-15 19:51:02 +02002750I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002751M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2752M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002753L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002754W: http://i2c.wiki.kernel.org/
2755T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01002756T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: Documentation/i2c/
2759F: drivers/i2c/
2760F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01002761F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Till Harbaume8c76ee2007-05-01 23:26:35 +02002763I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002764M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002765L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002766W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002768F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002771M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002773F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002776M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002777T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778S: Maintained
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Tony Luck <tony.luck@intel.com>
2782M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783L: linux-ia64@vger.kernel.org
2784W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002785T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002787F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002790M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791W: http://www.uni-mainz.de/~langm000/linux.html
2792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002793F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
2795IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002798F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800IBM ServeRAID RAID DRIVER
2801P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002804S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002805F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002807IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002808M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002810Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07002811T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002813F: Documentation/ide/
2814F: drivers/ide/
2815F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002817IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002818M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002819L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002821F: Documentation/cdrom/ide-cd
2822F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Andy Henroid27471fd2008-10-09 11:45:22 -07002824IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002826L: linux-pm@lists.linux-foundation.org
2827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002828F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002829
Joe Perches7d2c86b2009-04-07 20:59:01 -07002830IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002831M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002833W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002834T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Stefan Richter958a29c2009-12-26 01:36:12 +01002835S: Obsolete
Stefan Richter544df552009-10-03 10:17:29 +02002836F: Documentation/debugging-via-ohci1394.txt
Joe Perches679655d2009-04-07 20:44:32 -07002837F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Sergey Lapin02cf2282009-06-08 12:18:50 +00002839IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002840M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2841M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002842L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002843W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002844T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002845S: Maintained
2846F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002847F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002848
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002849INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002850M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002852F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002855L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09002856S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Roland Dreier <rolandd@cisco.com>
2861M: Sean Hefty <sean.hefty@intel.com>
2862M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002863L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864W: http://www.openib.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002865Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07002866T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002868F: Documentation/infiniband/
2869F: drivers/infiniband/
2870F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Robert Lovec9f04f52005-07-15 12:21:07 -04002872INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: John McCutchan <john@johnmccutchan.com>
2874M: Robert Love <rlove@rlove.org>
2875M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: Documentation/filesystems/inotify.txt
2878F: fs/notify/inotify/
2879F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002880
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002881INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002882M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2883M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002884L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002885Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07002886T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002888F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002889
Len Brown26717172010-03-08 14:07:30 -05002890INTEL IDLE DRIVER
2891M: Len Brown <lenb@kernel.org>
2892L: linux-pm@lists.linux-foundation.org
2893T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
2894S: Supported
2895F: drivers/idle/intel_idle.c
2896
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002897INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08002898M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002899L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002901F: Documentation/fb/intelfb.txt
2902F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002906L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002908F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302910INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002911M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002912L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302913W: http://www.lesswatts.org/projects/acpi/
2914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002915F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002918M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: arch/x86/kernel/microcode_core.c
2921F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002923INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08002924M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002926F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002927
David Woodhouse6c8909b2008-10-18 16:12:17 +01002928INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002929M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002930L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002931T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/pci/intel-iommu.c
2934F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002935
Dan Williamsb3e5f262007-08-07 10:26:35 -07002936INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07002938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002940
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002941INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002942M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002944F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2945F: arch/arm/mach-ixp4xx/include/mach/npe.h
2946F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2947F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2948F: drivers/net/arm/ixp4xx_eth.c
2949F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002950
Michael Buesch844dd052006-06-26 00:24:59 -07002951INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07002953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002954F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002955
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002956INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002958L: netdev@vger.kernel.org
2959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002961
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002962INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2964M: Jesse Brandeburg <jesse.brandeburg@intel.com>
2965M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002966M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002967M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
2968M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08002969L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002970W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002972F: drivers/net/e100.c
2973F: drivers/net/e1000/
2974F: drivers/net/e1000e/
2975F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002976F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07002977F: drivers/net/ixgb/
2978F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
James Ketrenos826d2ab2005-11-07 18:56:59 -06002980INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002981M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002982M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002983M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002984L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002985W: http://ipw2100.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002986S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002987F: Documentation/networking/README.ipw2100
2988F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002989
2990INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002992M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002993M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002994L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002995W: http://ipw2200.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002996S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002997F: Documentation/networking/README.ipw2200
2998F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002999
Shane Wang4bd96a72010-03-10 14:36:10 +08003000INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3001M: Joseph Cihula <joseph.cihula@intel.com>
3002M: Shane Wang <shane.wang@intel.com>
3003L: tboot-devel@lists.sourceforge.net
3004W: http://tboot.sourceforge.net
3005T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3006S: Supported
3007F: Documentation/intel_txt.txt
3008F: include/linux/tboot.h
3009F: arch/x86/kernel/tboot.c
3010
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003011INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003012M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003013M: linux-wimax@intel.com
3014L: wimax@linuxwimax.org
3015S: Supported
3016W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003017F: Documentation/wimax/README.i2400m
3018F: drivers/net/wimax/i2400m/
3019F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003020
Zhu Yib481de92007-09-25 17:54:57 -07003021INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07003022M: Zhu Yi <yi.zhu@intel.com>
3023M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003024M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003025L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003026W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003027T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003028S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003029F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003030
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003031INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3032M: Samuel Ortiz <samuel.ortiz@intel.com>
3033M: Zhu Yi <yi.zhu@intel.com>
3034M: Intel Linux Wireless <ilw@linux.intel.com>
3035L: linux-wireless@vger.kernel.org
3036S: Supported
3037W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3038F: drivers/net/wireless/iwmc3200wifi/
3039
Ralf Baechlecb109a02007-08-30 23:56:30 -07003040IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003041M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042L: linux-mips@linux-mips.org
3043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003044F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Ralf Baechlecb109a02007-08-30 23:56:30 -07003046IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003047M: Pat Gefre <pfg@sgi.com>
Joe Perches6650e0a2007-12-10 15:49:32 -08003048L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003050F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003051
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003052IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003053M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003055F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Francois Romieu1202d6f2007-09-17 17:13:55 -07003057IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003058M: Francois Romieu <romieu@fr.zoreil.com>
3059M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003060L: netdev@vger.kernel.org
3061S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003062F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003063
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003064IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003065M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003066L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07003067T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003068S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003069F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003070
Corey Minyard4409ebe2006-04-20 02:43:12 -07003071IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003072M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003073L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003074W: http://openipmi.sourceforge.net/
3075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003076F: Documentation/IPMI.txt
3077F: drivers/char/ipmi/
3078F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003079
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003081M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003082L: linux-scsi@vger.kernel.org
3083W: http://www.adaptec.com/
3084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003085F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003086
3087IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003088M: Wensong Zhang <wensong@linux-vs.org>
3089M: Simon Horman <horms@verge.net.au>
3090M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003091L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003092L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003094F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003095F: include/net/ip_vs.h
3096F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003097F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Randy Dunlape7839f22008-10-12 16:11:45 -07003099IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Jiri Kosina <jkosina@suse.cz>
3101M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003102S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003103T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003104F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003105
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003106IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003107M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003108L: netdev@vger.kernel.org
3109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003110F: include/linux/ipx.h
3111F: include/net/ipx.h
3112F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003115M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003116L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003118S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003119T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003120F: Documentation/networking/irda.txt
3121F: drivers/net/irda/
3122F: include/net/irda/
3123F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003125ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: Documentation/isapnp.txt
3129F: drivers/pnp/isapnp/
3130F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003131
Mike Christie14816b1e2007-11-28 16:22:06 -08003132ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003134L: open-iscsi@googlegroups.com
3135W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003136T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003138F: drivers/scsi/*iscsi*
3139F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003140
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003143L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003144L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003146T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003148F: Documentation/isdn/
3149F: drivers/isdn/
3150F: include/linux/isdn.h
3151F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
3153ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003154M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003155L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156W: http://www.melware.de
3157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003158F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Jean Delvared6248702010-03-05 22:17:20 +01003160IT87 HARDWARE MONITORING DRIVER
3161M: Jean Delvare <khali@linux-fr.org>
3162L: lm-sensors@lm-sensors.org
3163S: Maintained
3164F: Documentation/hwmon/it87
3165F: drivers/hwmon/it87.c
3166
Hans Verkuil91821ff2007-12-02 09:35:33 -03003167IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003168M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003169L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003170L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003171T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003172W: http://www.ivtvdriver.org
3173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: Documentation/video4linux/*.ivtv
3175F: drivers/media/video/ivtv/
3176F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003178JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003180L: jfs-discussion@lists.sourceforge.net
3181W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003182T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003184F: Documentation/filesystems/jfs.txt
3185F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003186
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003187JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003189L: netdev@vger.kernel.org
3190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003194M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003195L: linux-mtd@lists.infradead.org
3196W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003198F: fs/jffs2/
3199F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Josh Triplettde456d32006-07-30 03:04:00 -07003201JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003202M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003203M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003204L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003206F: fs/jbd*/
3207F: include/linux/ext*jbd*.h
3208F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003209
Rudolf Marek4660cb32006-10-08 22:01:26 +02003210K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003211M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003212L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003214F: Documentation/hwmon/k8temp
3215F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003219L: linux-kbuild@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003220Q: http://patchwork.kernel.org/project/linux-kbuild/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003222F: Documentation/kbuild/kconfig-language.txt
3223F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Vivek Goyalea6c2082006-05-20 14:59:55 -07003225KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003226M: Vivek Goyal <vgoyal@redhat.com>
3227M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003228L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003229W: http://lse.sourceforge.net/kdump/
3230S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003231F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235L: autofs@linux.kernel.org
3236S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003237F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241L: autofs@linux.kernel.org
3242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003243F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Joe Perches7d2c86b2009-04-07 20:59:01 -07003245KERNEL BUILD
Michal Marek5ce45962009-12-14 17:57:43 -08003246M: Michal Marek <mmarek@suse.cz>
3247T: git git://repo.or.cz/linux-kbuild.git for-next
3248T: git git://repo.or.cz/linux-kbuild.git for-linus
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003249L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: Documentation/kbuild/
3252F: Makefile
3253F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003256L: kernel-janitors@vger.kernel.org
Joe Perchesee709b02009-10-26 16:49:43 -07003257W: http://janitor.kernelnewbies.org/
3258S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003260KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003261M: "J. Bruce Fields" <bfields@fieldses.org>
3262M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003263L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003266F: fs/nfsd/
3267F: include/linux/nfsd/
3268F: fs/lockd/
3269F: fs/nfs_common/
3270F: net/sunrpc/
3271F: include/linux/lockd/
3272F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Avi Kivity426d62e2006-12-13 00:34:03 -08003274KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003276M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003277L: kvm@vger.kernel.org
3278W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003280F: Documentation/*/kvm.txt
3281F: arch/*/kvm/
3282F: arch/*/include/asm/kvm*
3283F: include/linux/kvm*
3284F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003285
Joerg Roedelad8003d2008-09-10 20:01:07 +02003286KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003288L: kvm@vger.kernel.org
3289W: http://kvm.qumranet.com
3290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003291F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003292F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003293
Hollis Blanchard513014b2008-04-16 23:28:08 -05003294KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003295M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003296L: kvm-ppc@vger.kernel.org
3297W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003299F: arch/powerpc/include/asm/kvm*
3300F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003301
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003302KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003304L: kvm-ia64@vger.kernel.org
3305W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003306S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003307F: Documentation/ia64/kvm.txt
3308F: arch/ia64/include/asm/kvm*
3309F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003310
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003311KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003312M: Carsten Otte <cotte@de.ibm.com>
3313M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003314M: linux390@de.ibm.com
3315L: linux-s390@vger.kernel.org
3316W: http://www.ibm.com/developerworks/linux/linux390/
3317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003318F: Documentation/s390/kvm.txt
3319F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003320F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003321F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003322
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003323KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003324M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003325W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003326L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003328F: include/linux/kexec.h
3329F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003330
David Howellse9714612010-03-29 23:42:09 +01003331KEYS/KEYRINGS:
3332M: David Howells <dhowells@redhat.com>
3333L: keyrings@linux-nfs.org
3334S: Maintained
3335F: Documentation/keys.txt
3336F: include/linux/key.h
3337F: include/linux/key-type.h
3338F: include/keys/
3339F: security/keys/
3340
Jason Wessel5b778da2010-05-20 21:04:28 -05003341KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003342M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003343W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003344L: kgdb-bugreport@lists.sourceforge.net
3345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003346F: Documentation/DocBook/kgdb.tmpl
3347F: drivers/misc/kgdbts.c
3348F: drivers/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003349F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003350F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003351F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003352
Pekka Enberg456db8c2008-04-28 22:47:29 +03003353KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003354M: Vegard Nossum <vegardno@ifi.uio.no>
Joe Perches410d7a92009-11-17 14:06:15 -08003355M: Pekka Enberg <penberg@cs.helsinki.fi>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003356S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003357F: Documentation/kmemcheck.txt
3358F: arch/x86/include/asm/kmemcheck.h
3359F: arch/x86/mm/kmemcheck/
3360F: include/linux/kmemcheck.h
3361F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003362
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003363KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003364M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003365S: Maintained
3366F: Documentation/kmemleak.txt
3367F: include/linux/kmemleak.h
3368F: mm/kmemleak.c
3369F: mm/kmemleak-test.c
3370
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003371KMEMTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003373S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003374F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003375F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003376F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003377
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003378KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003379M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3380M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3381M: "David S. Miller" <davem@davemloft.net>
3382M: Masami Hiramatsu <mhiramat@redhat.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003384F: Documentation/kprobes.txt
3385F: include/linux/kprobes.h
3386F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003387
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003388KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003389M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003390W: http://miguelojeda.es/auxdisplay.htm
3391W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003393F: Documentation/auxdisplay/ks0108
3394F: drivers/auxdisplay/ks0108.c
3395F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003399S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003400F: Documentation/networking/lapb-module.txt
3401F: include/*/lapb.h
3402F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406L: linux-scsi@vger.kernel.org
3407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: Documentation/scsi/53c700.txt
3409F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Richard Purdie263de9b2006-05-15 09:44:16 -07003411LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003414F: drivers/leds/
3415F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003418M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419L: legousb-devel@lists.sourceforge.net
3420W: http://legousb.sourceforge.net/
3421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003422F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Rusty Russell568a17f2007-10-25 14:12:24 +10003424LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003426L: lguest@ozlabs.org
3427W: http://lguest.ozlabs.org/
3428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003429F: Documentation/lguest/
3430F: arch/x86/lguest/
3431F: drivers/lguest/
3432F: include/linux/lguest*.h
3433F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437W: http://www.ibm.com/linux/ltc/projects/ppc
3438S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003439F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003441LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3443M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444W: http://www.penguinppc.org/
3445L: linuxppc-dev@ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003446Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003447T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003449F: Documentation/powerpc/
3450F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454W: http://www.penguinppc.org/
3455L: linuxppc-dev@ozlabs.org
3456S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003457F: arch/powerpc/platforms/powermac/
3458F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Grant Likely77a76362008-07-12 12:11:43 -06003460LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003461M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003463T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003465F: arch/powerpc/platforms/512x/
3466F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
3468LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003469M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3470M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003472L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003473T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003475F: arch/powerpc/platforms/40x/
3476F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Grant Likely260c02a2007-10-02 12:15:34 +10003478LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003480W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003481L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003482T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003484F: arch/powerpc/*/*virtex*
3485F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Tom Rinie93adf12005-07-26 12:49:53 -07003487LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003488M: Vitaly Bordug <vitb@kernel.crashing.org>
3489M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003490W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003491L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003492S: Maintained
3493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003496W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003497L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003498S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003499F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Olof Johanssonab06ff32006-09-06 14:44:54 -05003501LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003502M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003503W: http://www.pasemi.com/
3504L: linuxppc-dev@ozlabs.org
3505S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003506F: arch/powerpc/platforms/pasemi/
3507F: drivers/*/*pasemi*
3508F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003511M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003512L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003513T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514S: Supported
3515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003516LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003517M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003519F: include/linux/llc.h
3520F: include/net/llc*
3521F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003522
Pavel Machek455fbdd2008-11-12 13:27:02 -08003523LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003524M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003526F: Documentation/hwmon/lis3lv02d
3527F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003528
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003529LM73 HARDWARE MONITOR DRIVER
3530M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3531L: lm-sensors@lm-sensors.org
3532S: Maintained
3533F: drivers/hwmon/lm73.c
3534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003536M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003537L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: Documentation/hwmon/lm83
3540F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
3542LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003544L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003546F: Documentation/hwmon/lm90
3547F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003549LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003550M: Peter Zijlstra <peterz@infradead.org>
3551M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003552T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003554F: Documentation/lockdep*.txt
3555F: Documentation/lockstat.txt
3556F: include/linux/lockdep.h
3557F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003558
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003559LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003560M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003561L: linux-ntfs-dev@lists.sourceforge.net
3562W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: Documentation/ldm.txt
3565F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Joern Engelef6ada32009-11-20 22:17:12 +01003567LogFS
3568M: Joern Engel <joern@logfs.org>
3569L: logfs@logfs.org
3570W: logfs.org
3571S: Maintained
3572F: fs/logfs/
3573
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003574LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003576M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003577L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003578L: linux-scsi@vger.kernel.org
3579W: http://www.lsilogic.com/support
3580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003581F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003584M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585L: linux-scsi@vger.kernel.org
3586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003587F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Mike Frysinger81365c32008-10-29 14:01:12 -07003589LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08003590M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
3591M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07003592M: Mike Frysinger <vapier@gentoo.org>
3593M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07003594L: ltp-list@lists.sourceforge.net (subscribers-only)
3595W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003596T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003597S: Maintained
3598
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003599M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003601L: linux-m32r@ml.linux-m32r.org
3602L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3603W: http://www.linux-m32r.org/
3604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003605F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: Geert Uytterhoeven <geert@linux-m68k.org>
3609M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610L: linux-m68k@lists.linux-m68k.org
3611W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003612T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003614F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003615F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
3617M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003618M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003620L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003622F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
3624M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626W: http://www.tazenda.demon.co.uk/phil/linux-hp
3627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003628F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Jiri Benc64a327a2007-05-05 11:47:08 -07003630MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003632L: linux-wireless@vger.kernel.org
3633W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003634T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003636F: Documentation/networking/mac80211-injection.txt
3637F: include/net/mac80211.h
3638F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003639
Stefano Brivio1036d862007-12-23 04:46:27 +01003640MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003641M: Stefano Brivio <stefano.brivio@polimi.it>
3642M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003643L: linux-wireless@vger.kernel.org
3644W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003645T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003647F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003648
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003649MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003650M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003651L: netdev@vger.kernel.org
3652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003653F: drivers/net/macvlan.c
3654F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003655
Michael Kerriskfaf16682005-07-31 22:34:47 -07003656MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003657M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003658W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003659L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003660S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003661
Stefano Brivio74cda162007-11-19 20:27:46 +01003662MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003663M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003664L: libertas-dev@lists.infradead.org
3665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003666F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003667
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003668MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003669M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003670L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/net/mv643xx_eth.*
3673F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003675MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01003676M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003677L: linux-wireless@vger.kernel.org
Lennert Buytenheka040d532010-02-23 09:34:38 +01003678S: Maintained
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003679F: drivers/net/wireless/mwl8k.c
3680
Pierre Ossman2a695672009-03-16 19:52:26 +01003681MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003682M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04003683S: Odd Fixes
3684F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01003685
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003686MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003687M: Mirko Lindner <mlindner@syskonnect.de>
3688M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003689W: http://www.syskonnect.com
3690S: Supported
3691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003693M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003694L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003696F: drivers/video/matrox/matroxfb_*
3697F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003699MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003700M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003701L: lm-sensors@lm-sensors.org
3702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003703F: Documentation/hwmon/max6650
3704F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003705
Joe Perches127c49a2009-04-08 08:34:04 -07003706MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003707M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003708P: LinuxTV.org Project
3709L: linux-media@vger.kernel.org
3710W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003711Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07003712T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3713S: Maintained
3714F: Documentation/dvb/
3715F: Documentation/video4linux/
3716F: drivers/media/
3717F: include/media/
3718F: include/linux/dvb/
3719F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003720
3721MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003722M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003723L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003724W: http://megaraid.lsilogic.com
3725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/scsi/megaraid.txt
3727F: drivers/scsi/megaraid.*
3728F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003729
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003730MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732W: http://www.linux-mm.org
3733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003734F: include/linux/mm.h
3735F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003736
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003737MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003738M: Balbir Singh <balbir@linux.vnet.ibm.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08003739M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07003740M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003741L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003743F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003748W: http://www.linux-mtd.infradead.org/
3749Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08003750T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003752F: drivers/mtd/
3753F: include/linux/mtd/
3754F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Michal Simekc6375b02009-03-27 14:25:52 +01003756MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003757M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003758L: microblaze-uclinux@itee.uq.edu.au
3759W: http://www.monstr.eu/fdt/
3760T: git git://git.monstr.eu/linux-2.6-microblaze.git
3761S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003762F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
3764MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003765M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003767F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
3769MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003770M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003771W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003773T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003775F: Documentation/mips/
3776F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
3778MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003779M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: Documentation/ia64/mca.txt
3782F: Documentation/mca.txt
3783F: drivers/mca/
3784F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785
3786MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003787M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003789F: include/linux/module.h
3790F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
3792MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794W: http://popies.net/meye/
3795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003796F: Documentation/video4linux/meye.txt
3797F: drivers/media/video/meye.*
3798F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Pavel Pisac58ff042007-05-16 01:10:41 +02003800MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003801M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003804F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003807M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: drivers/input/mouse/
3810F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Jiri Slabyb9705b62008-04-30 00:53:48 -07003812MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: Documentation/serial/moxa-smartio
3816F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003817
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003818MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Lennart Poettering <mzxreary@0pointer.de>
Matthew Garrettd0944852010-02-11 10:40:13 -05003820L: platform-driver-x86@vger.kernel.org
Joe Perches04bdfb92007-12-22 14:03:27 -08003821W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003822W: http://0pointer.de/lennart/tchibo.html
3823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003824F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003825
Anisse Astier0f1006b2009-12-17 11:28:49 +01003826MSI WMI SUPPORT
3827M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05003828L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01003829S: Supported
3830F: drivers/platform/x86/msi-wmi.c
3831
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003832MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003834T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003836F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003837
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003838MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossman3822a0e32009-07-31 12:27:28 +02003839S: Orphan
Andrew Mortonb2503a92009-08-18 14:11:12 -07003840L: linux-mmc@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -07003841F: drivers/mmc/
3842F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003843
David Brownell15a05802007-08-08 09:12:54 -07003844MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003846S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/mmc/host/mmc_spi.c
3848F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003853F: Documentation/sound/oss/MultiSound
3854F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Jiri Slabyd7354102006-12-08 02:38:35 -08003856MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003859F: drivers/char/isicom.c
3860F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003861
Felipe Balbi550a7372008-07-24 12:27:36 +03003862MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003864L: linux-usb@vger.kernel.org
Felipe Balbi8a700f32009-12-15 11:08:45 +02003865T: git git://gitorious.org/usb/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003867F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003868
Brice Goglin2d3cf582008-05-17 12:45:36 +02003869MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003870M: Andrew Gallatin <gallatin@myri.com>
3871M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003872L: netdev@vger.kernel.org
3873W: http://www.myri.com/scs/download-Myri10GE.html
3874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003875F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003878M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003880F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889L: linux-scsi@vger.kernel.org
3890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003891F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003893NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: Faisal Latif <faisal.latif@intel.com>
3895M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003896L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003897W: http://www.neteffect.com
3898S: Supported
3899F: drivers/infiniband/hw/nes/
3900
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003901NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003902M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003903L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003905F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003906
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003907NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Joe Perches8b58be82009-07-29 15:04:30 -07003908M: Ramkrishna Vepa <ram.vepa@neterion.com>
3909M: Rastapur Santosh <santosh.rastapur@neterion.com>
3910M: Sivakumar Subramani <sivakumar.subramani@neterion.com>
3911M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003912L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003913W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3914W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003916F: Documentation/networking/s2io.txt
3917F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003918
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919NETFILTER/IPTABLES/IPCHAINS
3920P: Rusty Russell
3921P: Marc Boucher
3922P: James Morris
3923P: Harald Welte
3924P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003925M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003926L: netfilter-devel@vger.kernel.org
3927L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003928L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929W: http://www.netfilter.org/
3930W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08003931T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003933F: include/linux/netfilter*
3934F: include/linux/netfilter/
3935F: include/net/netfilter/
3936F: net/*/netfilter.c
3937F: net/*/netfilter/
3938F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Paul Moore4cc67732006-09-25 15:57:13 -07003940NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003941M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003942W: http://netlabel.sf.net
3943L: netdev@vger.kernel.org
3944S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003945F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003946F: include/net/netlabel.h
3947F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003952W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: include/linux/netrom.h
3955F: include/net/netrom.h
3956F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003958NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003959M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003961F: Documentation/blockdev/nbd.txt
3962F: drivers/block/nbd.c
3963F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Neil Horman6e436502009-10-05 03:56:55 +00003965NETWORK DROP MONITOR
3966M: Neil Horman <nhorman@tuxdriver.com>
3967L: netdev@vger.kernel.org
3968S: Maintained
3969W: https://fedorahosted.org/dropwatch/
3970F: net/core/drop_monitor.c
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003974L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003975W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00003976W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003977T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08003978T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003980F: net/
3981F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003982F: include/linux/in.h
3983F: include/linux/net.h
3984F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
3986NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07003987M: "David S. Miller" <davem@davemloft.net>
3988M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
3989M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
3990M: James Morris <jmorris@namei.org>
3991M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
3992M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003993L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003994T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003996F: net/ipv4/
3997F: net/ipv6/
3998F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
James Morris10e2ff12007-08-25 14:41:28 -07004000NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07004001M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07004002L: netdev@vger.kernel.org
4003S: Maintained
4004
John W. Linville29f8f632006-01-18 14:52:48 -08004005NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004007L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004008Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004009T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004010S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004011F: net/mac80211/
4012F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004013F: net/wireless/
4014F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004015F: include/linux/wireless.h
John W. Linville740c2672010-04-26 16:08:57 -04004016F: include/linux/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004017F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004018
Joe Perches788873a2009-04-16 09:38:45 +00004019NETWORKING DRIVERS
4020L: netdev@vger.kernel.org
4021W: http://www.linuxfoundation.org/en/Net
4022T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004023T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004024S: Odd Fixes
4025F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004026F: include/linux/if_*
4027F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004028
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004029NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004030M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004031L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004032W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004035
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004036NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004038L: linux-nfs@vger.kernel.org
4039W: http://client.linux-nfs.org
4040T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004042F: fs/lockd/
4043F: fs/nfs/
4044F: fs/nfs_common/
4045F: net/sunrpc/
4046F: include/linux/lockd/
4047F: include/linux/nfs*
4048F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Jan-Pascal van Best <janpascal@vanbest.org>
4052M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004053L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004057NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004058M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004059L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004060W: http://www.nilfs.org/en/
4061S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004062F: Documentation/filesystems/nilfs2.txt
4063F: fs/nilfs2/
4064F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004065
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004067M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004070F: Documentation/scsi/NinjaSCSI.txt
4071F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
4073NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: GOTO Masanori <gotom@debian.or.jp>
4075M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004078F: Documentation/scsi/NinjaSCSI.txt
4079F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004082M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004084W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004085T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004087F: Documentation/filesystems/ntfs.txt
4088F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004090NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004092L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004094F: drivers/video/riva/
4095F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Tony Lindgrenf5525782009-05-28 13:23:53 -07004097OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004098M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004099L: linux-omap@vger.kernel.org
4100W: http://www.muru.com/linux/omap/
4101W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004102Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004103T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4104S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004105F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004106
4107OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004108M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004109L: linux-omap@vger.kernel.org
4110S: Maintained
4111F: arch/arm/*omap*/*clock*
4112
4113OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004114M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004115L: linux-omap@vger.kernel.org
4116S: Maintained
4117F: arch/arm/*omap*/*pm*
4118
4119OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004120M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004121L: alsa-devel@alsa-project.org (subscribers-only)
4122L: linux-omap@vger.kernel.org
4123S: Maintained
4124F: sound/soc/omap/
4125
4126OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen3043c102010-01-07 13:06:51 +02004127M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004128L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004129L: linux-omap@vger.kernel.org
4130S: Maintained
4131F: drivers/video/omap/
4132
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004133OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004134M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4135L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004136L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004137S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004138F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004139F: Documentation/arm/OMAP/DSS
4140
Tony Lindgrenf5525782009-05-28 13:23:53 -07004141OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004143L: linux-omap@vger.kernel.org
4144S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004145F: drivers/mmc/host/omap.c
4146
4147OMAP HS MMC SUPPORT
4148M: Madhusudhan Chikkature <madhu.cr@ti.com>
4149L: linux-omap@vger.kernel.org
4150S: Maintained
4151F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004152
4153OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004155S: Maintained
4156F: drivers/char/hw_random/omap-rng.c
4157
4158OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004159M: Felipe Balbi <felipe.balbi@nokia.com>
4160M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004161L: linux-usb@vger.kernel.org
4162L: linux-omap@vger.kernel.org
4163S: Maintained
4164
Bob Copeland0ad122d2008-07-25 19:45:18 -07004165OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004166M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004167L: linux-karma-devel@lists.sourceforge.net
4168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/filesystems/omfs.txt
4170F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004171
Harald Weltec1986ee2005-11-13 16:06:29 -08004172OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: drivers/char/pcmcia/cm4000_cs.c
4176F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004177
Harald Welte77c44ab2005-11-13 16:06:26 -08004178OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004181F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004182
Jonathan Corbet77d51402007-03-22 19:44:17 -03004183OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004184M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004185L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004186T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004188F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004189
Thomas Gleixner431bca72007-05-02 09:31:35 +02004190ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004191M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004192L: linux-mtd@lists.infradead.org
4193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004194F: drivers/mtd/onenand/
4195F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004196
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199L: osst-users@lists.sourceforge.net
4200L: linux-scsi@vger.kernel.org
4201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004202F: drivers/scsi/osst*
4203F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004205OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004207L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004209F: Documentation/i2c/busses/i2c-ocores
4210F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004211
Grant Likely860c44c2009-10-26 16:49:49 -07004212OPEN FIRMWARE AND FLATTENED DEVICE TREE
4213M: Grant Likely <grant.likely@secretlab.ca>
4214L: devicetree-discuss@lists.ozlabs.org
4215W: http://fdt.secretlab.ca
4216S: Maintained
4217F: drivers/of
4218F: include/linux/of*.h
4219K: of_get_property
4220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004222M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223L: oprofile-list@lists.sf.net
4224S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004225F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004226F: arch/*/oprofile/
4227F: drivers/oprofile/
4228F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004230ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004231M: Mark Fasheh <mfasheh@suse.com>
4232M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004233L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4234W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004235T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004237F: Documentation/filesystems/ocfs2.txt
4238F: Documentation/filesystems/dlmfs.txt
4239F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004240
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004242M: Pavel Roskin <proski@gnu.org>
4243M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07004244L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004245L: orinoco-users@lists.sourceforge.net
4246L: orinoco-devel@lists.sourceforge.net
4247W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004251OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004252M: Boaz Harrosh <bharrosh@panasas.com>
4253M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004254L: osd-dev@open-osd.org
4255W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004256T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004257S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004258F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004259F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004260F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004262P54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Michael Wu <flamingice@sourmilk.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004264L: linux-wireless@vger.kernel.org
4265W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004266T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004268F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004269
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004270PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004272L: netdev@vger.kernel.org
4273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004274F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004275
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004276PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004278L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004280F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004281
Harald Welte709ee532008-09-23 17:46:57 +02004282PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004283M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004284L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004287
David Howells4fa97182008-10-13 10:42:44 +01004288PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: David Howells <dhowells@redhat.com>
4290M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004291L: linux-am33-list@redhat.com (moderated for non-subscribers)
4292W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004294F: Documentation/mn10300/
4295F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004296
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004298L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004299S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004300F: drivers/parport/
4301F: include/linux/parport*.h
4302F: drivers/char/ppdev.c
4303F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004305PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004306M: Jeremy Fitzhardinge <jeremy@xensource.com>
4307M: Chris Wright <chrisw@sous-sol.org>
4308M: Alok Kataria <akataria@vmware.com>
4309M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004310L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004312F: Documentation/ia64/paravirt_ops.txt
4313F: arch/*/kernel/paravirt*
4314F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004315
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004317M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004318L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319W: http://www.torque.net/linux-pp.html
4320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004321F: Documentation/blockdev/paride.txt
4322F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
4324PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Kyle McMartin <kyle@mcmartin.ca>
4326M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004327M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004328L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004330Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004331T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004333F: arch/parisc/
4334F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Jim Cromie1662d322006-10-06 00:43:59 -07004336PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004337M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004338L: lm-sensors@lm-sensors.org
4339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004340F: Documentation/hwmon/pc87360
4341F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004342
4343PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004346F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004347
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004348PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004349M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004350S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004351F: drivers/leds/leds-pca9532.c
4352F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004353
Wolfram Sanga1867d32009-09-18 22:45:51 +02004354PCA9564/PCA9665 I2C BUS DRIVER
4355M: Wolfram Sang <w.sang@pengutronix.de>
4356L: linux-i2c@vger.kernel.org
4357S: Maintained
4358F: drivers/i2c/algos/i2c-algo-pca.c
4359F: drivers/i2c/busses/i2c-pca-*
4360F: include/linux/i2c-algo-pca.h
4361F: include/linux/i2c-pca-platform.h
4362
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004363PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004364M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004365L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004367F: Documentation/PCI/pci-error-recovery.txt
4368F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004372L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004373Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004374T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004376F: Documentation/PCI/
4377F: drivers/pci/
4378F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004380PCI HOTPLUG
4381M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004382L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004383S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004384F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004387P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004388L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004389W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004390T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004392F: Documentation/pcmcia/
4393F: drivers/pcmcia/
4394F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004398L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004402PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004403M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: include/linux/delayacct.h
4406F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004407
Ingo Molnar57c0c152009-09-21 12:20:38 +02004408PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4410M: Paul Mackerras <paulus@samba.org>
4411M: Ingo Molnar <mingo@elte.hu>
Ingo Molnarcfb581b2010-03-08 15:20:50 +01004412M: Arnaldo Carvalho de Melo <acme@redhat.com>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004413S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004414F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004415F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004416F: arch/*/kernel/perf_event*.c
4417F: arch/*/kernel/*/perf_event*.c
4418F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004419F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004420F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004421F: arch/*/kernel/perf_callchain.c
4422F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004423
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004424PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004425M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004426L: linux-abi-devel@lists.sourceforge.net
4427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004428F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004429
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004431M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432L: linux-mtd@lists.infradead.org
4433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004434F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Peter Osterlund249a6772005-09-27 21:45:30 -07004436PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004437M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: drivers/block/pktcdvd.c
4440F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004441
Anil Ravindranath89a36812009-08-25 17:35:18 -07004442PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004443M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004444L: linux-scsi@vger.kernel.org
4445W: http://www.pmc-sierra.com/
4446S: Supported
4447F: drivers/scsi/pmcraid.*
4448
jack wangdbf9bfe2009-10-14 16:19:21 +08004449PMC SIERRA PM8001 DRIVER
4450M: jack_wang@usish.com
4451M: lindar_liu@usish.com
4452L: linux-scsi@vger.kernel.org
4453S: Supported
4454F: drivers/scsi/pm8001/
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004457M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004459F: fs/timerfd.c
4460F: include/linux/timer*
4461F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Anton Vorontsov3be86142007-07-15 04:43:36 +04004463POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004464M: Anton Vorontsov <cbou@mail.ru>
4465M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004466T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004468F: include/linux/power_supply.h
4469F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004470
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Adam Belay <abelay@mit.edu>
4473M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004475F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Vitaly Wool999445d2007-01-04 13:07:03 +01004477PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004478M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004479L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004481F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004482
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485L: linux-ppp@vger.kernel.org
4486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004487F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
4489PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004490M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004492F: net/atm/pppoatm.c
4493F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
4495PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: drivers/net/pppoe.c
4499F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
James Chapmana6d23702007-06-27 15:53:17 -07004501PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004504F: drivers/net/pppol2tp.c
4505F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004506
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004507PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004508M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004509W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4510L: linuxpps@ml.enneenne.com (subscribers-only)
4511S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004512F: Documentation/pps/
4513F: drivers/pps/
4514F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518L: kpreempt-tech@lists.sourceforge.net
4519W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004521F: Documentation/preempt-locking.txt
4522F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
4524PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004526L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527W: http://prism54.org
4528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Peter Denison <promise@pnd-pc.demon.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533W: http://www.pnd-pc.demon.co.uk/promise/
4534S: Maintained
4535
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004536PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004537M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004538L: linux-ide@vger.kernel.org
4539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004541
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004542PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004543M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004544L: netdev@vger.kernel.org
4545L: cbe-oss-dev@ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004547F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004548
Geoff Levandf58a9d12006-11-23 00:46:51 +01004549PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004550M: Geoff Levand <geoff@infradead.org>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004551L: linuxppc-dev@ozlabs.org
4552L: cbe-oss-dev@ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: arch/powerpc/boot/ps3*
4555F: arch/powerpc/include/asm/lv1call.h
4556F: arch/powerpc/include/asm/ps3*.h
4557F: arch/powerpc/platforms/ps3/
4558F: drivers/*/ps3*
4559F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004560F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004561F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004562F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004563
Jim Pariscffb4add2009-01-06 11:32:10 +00004564PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004565M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004566L: cbe-oss-dev@ozlabs.org
4567S: Maintained
4568
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004569PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004570M: Roland McGrath <roland@redhat.com>
4571M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004572S: Maintained
4573F: include/asm-generic/syscall.h
4574F: include/linux/ptrace.h
4575F: include/linux/regset.h
4576F: include/linux/tracehook.h
4577F: kernel/ptrace.c
4578
Michael Krufky83202042006-07-03 00:24:18 -07004579PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004580M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004581L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004582L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004583W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004584T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: Documentation/video4linux/README.pvrusb2
4587F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004588
Eric Miao30ec2612008-06-12 15:21:41 -07004589PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: Eric Miao <eric.y.miao@gmail.com>
4591M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004592L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004594F: arch/arm/mach-pxa/
4595F: drivers/pcmcia/pxa2xx*
4596F: drivers/spi/pxa2xx*
4597F: drivers/usb/gadget/pxa2*
4598F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004599F: sound/arm/pxa*
4600F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004602PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004603M: Eric Miao <eric.y.miao@gmail.com>
4604M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004605L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004606T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004607S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004608
Eric Miao5fa82eb2009-03-20 12:52:24 +08004609PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004610M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004611L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004612T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004613S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004614
Eric Miaoe8e6cb32010-01-05 15:28:26 +08004615MMP2 SUPPORT (aka ARMADA610)
4616M: Haojian Zhuang <haojian.zhuang@marvell.com>
4617M: Eric Miao <eric.y.miao@gmail.com>
4618L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4619T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4620S: Maintained
4621
Pierre Ossman272f1332007-05-14 21:25:26 +02004622PXA MMCI DRIVER
4623S: Orphan
4624
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004625PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004626M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004627L: rtc-linux@googlegroups.com
4628S: Maintained
4629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004632M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633L: linux-scsi@vger.kernel.org
4634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004635F: Documentation/scsi/LICENSE.qla2xxx
4636F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Ravi Anand883c98f2010-04-28 11:45:49 +05304638QLOGIC QLA4XXX iSCSI DRIVER
4639M: Ravi Anand <ravi.anand@qlogic.com>
4640M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
4641M: iscsi-driver@qlogic.com
4642L: linux-scsi@vger.kernel.org
4643S: Supported
4644F: drivers/scsi/qla4xxx/
4645
Ron Mercer5a4faa872006-07-25 00:40:21 -07004646QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004647M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07004648M: linux-driver@qlogic.com
4649L: netdev@vger.kernel.org
4650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/networking/LICENSE.qla3xxx
4652F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004653
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004654QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
4655M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07004656M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004657M: linux-driver@qlogic.com
4658L: netdev@vger.kernel.org
4659S: Supported
4660F: drivers/net/qlcnic/
4661
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004662QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004663M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004664M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004665L: netdev@vger.kernel.org
4666S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004667F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671W: http://www.alarsen.net/linux/qnx4fs/
4672S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004673F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004674F: include/linux/qnx4_fs.h
4675F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
4677RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004679L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004681F: drivers/video/aty/radeon*
4682F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
4684RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004685M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004686L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004688F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
Randy Dunlape7839f22008-10-12 16:11:45 -07004690RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004691P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01004692M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01004693M: Gertjan van Wingerde <gwingerde@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004694L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01004695L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004696W: http://rt2x00.serialmonkey.com/
4697S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004698T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004699F: drivers/net/wireless/rt2x00/
4700
Nick Piggin9db55792008-02-08 04:19:49 -08004701RAMDISK RAM BLOCK DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Nick Piggin <npiggin@suse.de>
Nick Piggin9db55792008-02-08 04:19:49 -08004703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004704F: Documentation/blockdev/ramdisk.txt
4705F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004706
Matt Mackall9e95ce22005-04-16 15:25:56 -07004707RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004710F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004711
Matt Porter394b7012005-11-07 01:00:15 -08004712RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004713M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004715F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004716
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004717RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: Corey Thomas <coreythomas@charter.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004719L: linux-wireless@vger.kernel.org
4720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004721F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004722
4723RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004724M: Josh Triplett <josh@freedesktop.org>
4725M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004727F: Documentation/RCU/torture.txt
4728F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004729
Florian Fainellic1f766b2008-02-06 22:39:44 +01004730RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004731M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004732S: Maintained
4733
Florian Fainellidb17f392007-12-19 11:30:30 +01004734RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004735M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004736L: netdev@vger.kernel.org
4737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004738F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004739
Andy Grovera09ed662009-02-24 15:30:41 +00004740RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004742L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004743S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004744F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004745
Josh Triplett595182b2006-10-04 02:17:21 -07004746READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004747M: Dipankar Sarma <dipankar@in.ibm.com>
4748M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004749W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004750S: Supported
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004751F: Documentation/RCU/
4752F: include/linux/rcu*
4753F: include/linux/srcu*
4754F: kernel/rcu*
4755F: kernel/srcu*
4756X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07004757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: Documentation/rtc.txt
4762F: drivers/rtc/
4763F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004765REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004766M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004767L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08004768Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004770F: Documentation/rtc.txt
4771F: drivers/rtc/
4772F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004775L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004777F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
Ivo van Doorne08976452008-04-12 19:23:55 +02004779RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004780M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004781L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004782S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08004783F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07004784F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004785
Maxim Levitsky67e054e2010-02-22 20:39:42 +02004786RICOH SMARTMEDIA/XD DRIVER
4787M: Maxim Levitsky <maximlevitsky@gmail.com>
4788S: Maintained
4789F: drivers/mtd/nand/r822.c
4790F: drivers/mtd/nand/r822.h
4791
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004792RISCOM8 DRIVER
4793S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004794F: Documentation/serial/riscom8.txt
4795F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004796
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797ROCKETPORT DRIVER
4798P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799W: http://www.comtrol.com
4800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004801F: Documentation/serial/rocket.txt
4802F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
4804ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004807W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004809F: include/linux/rose.h
4810F: include/net/rose.h
4811F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
Larry Finger59840482008-11-12 17:13:09 -06004813RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004814M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004815L: linux-wireless@vger.kernel.org
4816W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004817T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004818S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004819F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004820
Larry Finger59840482008-11-12 17:13:09 -06004821RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4823M: Hin-Tak Leung <htl10@users.sourceforge.net>
4824M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004825L: linux-wireless@vger.kernel.org
4826W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004827T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004829F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004830
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004831S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004832M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004833L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004835F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837S390
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4839M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004841L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004842W: http://www.ibm.com/developerworks/linux/linux390/
4843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004844F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01004845F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02004846F: fs/partitions/ibm.c
4847F: Documentation/s390/
4848F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08004849
4850S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004851M: Ursula Braun <ursula.braun@de.ibm.com>
4852M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004853M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004854L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004855W: http://www.ibm.com/developerworks/linux/linux390/
4856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004857F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004858
Felix Beckfeed9b62009-03-26 15:24:23 +01004859S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Felix Beck <felix.beck@de.ibm.com>
4861M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004862M: linux390@de.ibm.com
4863L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01004864W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01004865S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004866F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004867
Heiko Carstens5238da42006-02-11 17:56:01 -08004868S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Christof Schmitt <christof.schmitt@de.ibm.com>
Christof Schmitt07bbd0f2010-04-01 13:04:07 +02004870M: Swen Schillig <swen@vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004871M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004872L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004873W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004875F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
Ursula Braundd96df22007-09-19 13:09:02 +02004877S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004878M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004879M: linux390@de.ibm.com
4880L: linux-s390@vger.kernel.org
4881W: http://www.ibm.com/developerworks/linux/linux390/
4882S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004883F: drivers/s390/net/*iucv*
4884F: include/net/iucv/
4885F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004886
Ben Dooks4dde7f72008-06-30 22:40:38 +01004887S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004888M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004891F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004894M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004895L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004896T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897W: http://www.mihu.de/linux/saa7146
4898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004899F: drivers/media/common/saa7146*
4900F: drivers/media/video/*7146*
4901F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004903TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03004904M: Huang Shijie <shijie8@gmail.com>
4905M: Kang Yong <kangyong@telegent.com>
4906M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004907S: Supported
4908F: drivers/media/video/tlg2300
4909
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004911M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004913F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
4915SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004916M: Ingo Molnar <mingo@elte.hu>
4917M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004919F: kernel/sched*
4920F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Chen Liqin6bcf6732009-06-13 15:24:33 +08004922SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07004923M: Chen Liqin <liqin.chen@sunplusct.com>
4924M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08004925W: http://www.sunplusct.com
4926S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07004927F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08004928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004930M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931L: linux-scsi@vger.kernel.org
4932W: http://www.kernel.dk
4933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004934F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004937M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938L: linux-scsi@vger.kernel.org
4939W: http://www.torque.net/sg
4940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004941F: drivers/scsi/sg.c
4942F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
4944SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00004945M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004947T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4948T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4949T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004951F: drivers/scsi/
4952F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953
4954SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004955M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956L: linux-scsi@vger.kernel.org
4957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004958F: Documentation/scsi/st.txt
4959F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
4961SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07004962M: Vlad Yasevich <vladislav.yasevich@hp.com>
4963M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07004964L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004965W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004967F: Documentation/networking/sctp.txt
4968F: include/linux/sctp.h
4969F: include/net/sctp/
4970F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
4972SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004973M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004974S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004975F: Documentation/i2c/busses/scx200_acb
4976F: arch/x86/kernel/scx200_32.c
4977F: drivers/watchdog/scx200_wdt.c
4978F: drivers/i2c/busses/scx200*
4979F: drivers/mtd/maps/scx200_docflash.c
4980F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004981
4982SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004983M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004985F: drivers/char/scx200_gpio.c
4986F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004987
4988SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004989M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Sascha Sommer6a369132008-07-15 14:21:29 +02004993SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02004995L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004997F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004998
Randy Dunlape7839f22008-10-12 16:11:45 -07004999SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07005000S: Orphan
5001L: linux-mmc@vger.kernel.org
5002F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005003
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005004SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005006L: linuxppc-dev@ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005007L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005009F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
Ben Dooks0d1bb412009-06-14 13:52:37 +01005011SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005012M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005013L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005014S: Maintained
5015F: drivers/mmc/host/sdhci-s3c.c
5016
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005017SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5018M: Viresh Kumar <viresh.kumar@st.com>
5019L: linux-mmc@vger.kernel.org
5020S: Maintained
5021F: drivers/mmc/host/sdhci-spear.c
5022
James Morris8711cca2008-12-04 03:19:45 +11005023SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005024M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005025L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005026T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005027W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005028S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005029F: security/
James Morris8711cca2008-12-04 03:19:45 +11005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033S: Supported
5034
5035SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005036M: Stephen Smalley <sds@tycho.nsa.gov>
5037M: James Morris <jmorris@namei.org>
5038M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005039L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005040W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005043F: include/linux/selinux*
5044F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Jiri Slabycef2cf02007-05-08 00:31:45 -07005046SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005047M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: drivers/misc/phantom.c
5050F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005051
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005052SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005053M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005055T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005057F: drivers/ata/
5058F: include/linux/ata.h
5059F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305061SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Joe Perches3387f652009-11-11 14:26:11 -08005062M: Jayamohan Kallickal <jayamohank@serverengines.com>
5063L: linux-scsi@vger.kernel.org
5064W: http://www.serverengines.com
5065S: Supported
5066F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305067
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005068SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005069M: Sathya Perla <sathyap@serverengines.com>
5070M: Subbu Seetharaman <subbus@serverengines.com>
Ajit Khapardef66d7442010-02-19 14:00:03 +00005071M: Sarveshwar Bandi <sarveshwarb@serverengines.com>
5072M: Ajit Khaparde <ajitk@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005073L: netdev@vger.kernel.org
5074W: http://www.serverengines.com
5075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005077
Ben Hutchings8ceee662008-04-27 12:55:59 +01005078SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005079M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5080M: Steve Hodgson <shodgson@solarflare.com>
5081M: Ben Hutchings <bhutchings@solarflare.com>
5082L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005084F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005086SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005087M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005089F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005090
5091SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005092M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005093L: linux-ia64@vger.kernel.org
5094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005095F: Documentation/ia64/serial.txt
5096F: drivers/serial/ioc?_serial.c
5097F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005098
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101L: linux-visws-devel@lists.sf.net
5102W: http://linux-visws.sf.net
5103S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005104F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Jack Steiner75312612008-08-15 00:40:42 -07005106SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005109F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005110
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005111SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07005112M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005113W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07005114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005116F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5117F: arch/arm/mach-lh7a40x/
5118F: drivers/serial/serial_lh7a40x.c
5119F: drivers/usb/gadget/lh7a40*
5120F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005121
Len Brown6349d992009-08-14 15:07:14 -04005122SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005123M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005124L: sfi-devel@simplefirmware.org
5125W: http://simplefirmware.org/
5126T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005127S: Supported
Len Brown6349d992009-08-14 15:07:14 -04005128F: arch/x86/kernel/*sfi*
5129F: drivers/sfi/
5130F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132SIMTEC EB110ATX (Chalice CATS)
5133P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005134M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135W: http://www.simtec.co.uk/products/EB110ATX/
5136S: Supported
5137
5138SIMTEC EB2410ITX (BAST)
5139P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005140M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141W: http://www.simtec.co.uk/products/EB2410ITX/
5142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005143F: arch/arm/mach-s3c2410/
5144F: drivers/*/*s3c2410*
5145F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005147TI DAVINCI MACHINE SUPPORT
5148P: Kevin Hilman
5149M: davinci-linux-open-source@linux.davincidsp.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005150Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005151S: Supported
5152F: arch/arm/mach-davinci
5153
Francois Romieu92aab3c2005-07-30 13:11:18 +02005154SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005155M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005156L: netdev@vger.kernel.org
5157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005158F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005159
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005161M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005163L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005165F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005167SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005168M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005169L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005171F: Documentation/i2c/busses/i2c-sis96x
5172F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005173
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005175M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: Documentation/fb/sisfb.txt
5179F: drivers/video/sis/
5180F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
5182SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005183M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184W: http://www.winischhofer.at/linuxsisusbvga.shtml
5185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005186F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005188SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005190L: netdev@vger.kernel.org
5191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005192F: drivers/net/skge.*
5193F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005194
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005195SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005196M: Christoph Lameter <cl@linux-foundation.org>
5197M: Pekka Enberg <penberg@cs.helsinki.fi>
5198M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005199L: linux-mm@kvack.org
5200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: include/linux/sl?b*.h
5202F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005203
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005205M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005206S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005207F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005209SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005211L: lm-sensors@lm-sensors.org
5212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005213F: Documentation/hwmon/smsc47b397
5214F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005215
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005216SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005217M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005218L: netdev@vger.kernel.org
5219S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005220F: include/linux/smsc911x.h
5221F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005222
Steve Glendinning2cb37722008-12-11 20:54:30 -08005223SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005224M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005225L: netdev@vger.kernel.org
5226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005227F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005228
Ben Nizetteb54f2862008-03-13 22:27:30 +11005229SMX UIO Interface
Joe Perches8b58be82009-07-29 15:04:30 -07005230M: Ben Nizette <bn@niasdigital.com>
Ben Nizetteb54f2862008-03-13 22:27:30 +11005231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005232F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005233
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005234SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005235M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005236L: linux-altix@sgi.com
5237L: linux-ia64@vger.kernel.org
5238W: http://www.sgi.com/altix
5239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005240F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005241
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005242SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005243M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005244L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005245T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005247F: include/media/v4l2*
5248F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005249
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005250SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005251M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005253F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005254
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005256M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005259F: drivers/md/
5260F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005263M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005264L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005266F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Michael Buesch61e115a2007-09-18 15:12:50 -04005268SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005270L: netdev@vger.kernel.org
5271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005272F: drivers/ssb/
5273F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005277L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005278W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: Documentation/laptops/sony-laptop.txt
5281F: drivers/char/sonypi.c
5282F: drivers/platform/x86/sony-laptop.c
5283F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Alex Dubovbaf85322008-02-09 10:20:54 -08005285SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005286M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005287W: http://tifmxx.berlios.de/
5288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005289F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: Jaroslav Kysela <perex@perex.cz>
5293M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005294L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005295W: http://www.alsa-project.org/
5296T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5297T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005299F: Documentation/sound/
5300F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005301F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Mark Brownbd903bd2008-11-19 19:16:05 +00005303SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07005304M: Liam Girdwood <lrg@slimlogic.co.uk>
5305M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005306T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005307L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005308W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005310F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005311F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005312
Sam Ravnborg473321f2009-01-04 15:47:49 -08005313SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005314M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005316Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07005317T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5318T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005320F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
David S. Miller6404fcc2010-03-16 01:00:17 -07005322SPARC SERIAL DRIVERS
5323M: "David S. Miller" <davem@davemloft.net>
5324L: sparclinux@vger.kernel.org
5325T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5326T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
5327S: Maintained
5328F: drivers/serial/suncore.c
5329F: drivers/serial/suncore.h
5330F: drivers/serial/sunhv.c
5331F: drivers/serial/sunsab.c
5332F: drivers/serial/sunsab.h
5333F: drivers/serial/sunsu.c
5334F: drivers/serial/sunzilog.c
5335F: drivers/serial/sunzilog.h
5336
viresh kumarfc0c1952010-04-01 12:31:21 +01005337SPEAR PLATFORM SUPPORT
5338M: Viresh Kumar <viresh.kumar@st.com>
5339W: http://www.st.com/spear
5340S: Maintained
5341F: arch/arm/plat-spear/
5342
5343SPEAR3XX MACHINE SUPPORT
5344M: Viresh Kumar <viresh.kumar@st.com>
5345W: http://www.st.com/spear
5346S: Maintained
5347F: arch/arm/mach-spear3xx/
5348
5349SPEAR6XX MACHINE SUPPORT
5350M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
5351W: http://www.st.com/spear
5352S: Maintained
5353F: arch/arm/mach-spear6xx/
5354
5355SPEAR CLOCK FRAMEWORK SUPPORT
5356M: Viresh Kumar <viresh.kumar@st.com>
5357W: http://www.st.com/spear
5358S: Maintained
5359F: arch/arm/mach-spear*/clock.c
5360F: arch/arm/mach-spear*/include/mach/clkdev.h
5361F: arch/arm/plat-spear/clock.c
5362F: arch/arm/plat-spear/include/plat/clock.h and clkdev.h
5363
5364SPEAR PAD MULTIPLEXING SUPPORT
5365M: Viresh Kumar <viresh.kumar@st.com>
5366W: http://www.st.com/spear
5367S: Maintained
5368F: arch/arm/plat-spear/include/plat/padmux.h
5369F: arch/arm/plat-spear/padmux.c
5370F: arch/arm/mach-spear*/spear*xx.c
5371F: arch/arm/mach-spear*/include/mach/generic.h
5372F: arch/arm/mach-spear3xx/spear3*0.c
5373F: arch/arm/mach-spear3xx/spear3*0_evb.c
5374F: arch/arm/mach-spear6xx/spear600.c
5375F: arch/arm/mach-spear6xx/spear600_evb.c
5376
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005378M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005380F: Documentation/serial/specialix.txt
5381F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005383SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005384M: David Brownell <dbrownell@users.sourceforge.net>
Grant Likelyd33c8612009-11-25 07:32:25 -07005385M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005386L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08005387Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005389F: Documentation/spi/
5390F: drivers/spi/
5391F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005392
Jim Lewis2752e402006-09-29 02:01:19 -07005393SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07005394M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
5395M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07005396L: netdev@vger.kernel.org
5397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005398F: Documentation/networking/spider_net.txt
5399F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005400
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005401SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005402M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005403L: linuxppc-dev@ozlabs.org
5404L: cbe-oss-dev@ozlabs.org
5405W: http://www.ibm.com/developerworks/power/cell/
5406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005407F: Documentation/filesystems/spufs.txt
5408F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005409
Phillip Lougherfc555842009-01-05 08:46:29 +00005410SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00005412L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5413W: http://squashfs.org.uk
5414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: Documentation/filesystems/squashfs.txt
5416F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005417
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07005419M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Linus Torvalds26e9a392008-10-17 09:50:12 -07005423STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07005424M: Greg Kroah-Hartman <greg@kroah.com>
5425M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005426L: stable@kernel.org
5427S: Maintained
5428
Linus Torvalds26e9a392008-10-17 09:50:12 -07005429STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005430M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07005431T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005432L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005434F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07005438S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005439F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
5441STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005442S: Orphan
Joe Perches931812c2010-03-05 13:43:10 -08005443F: drivers/staging/strip/strip.c
Joe Perches679655d2009-04-07 20:44:32 -07005444F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445
5446STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005447M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448W: http://www.stradis.com/
5449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005450F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005452SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07005453M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454W: http://sammy.net/sun3/
5455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005456F: arch/m68k/kernel/*sun3*
5457F: arch/m68k/sun3*/
5458F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005459
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005460SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07005461M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005462L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005464Q: http://patchwork.kernel.org/project/linux-sh/list/
Joe Perches54e58812009-04-07 21:08:10 -07005465T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005466S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005467F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005468F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005469F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005471SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: Len Brown <len.brown@intel.com>
5473M: Pavel Machek <pavel@ucw.cz>
5474M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005475L: linux-pm@lists.linux-foundation.org
5476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005477F: Documentation/power/
5478F: arch/x86/kernel/acpi/
5479F: drivers/base/power/
5480F: kernel/power/
5481F: include/linux/suspend.h
5482F: include/linux/freezer.h
5483F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
5485SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005486M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487L: linux-video@atrey.karlin.mff.cuni.cz
5488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: Documentation/svga.txt
5490F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491
5492SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005495F: Documentation/filesystems/sysv-fs.txt
5496F: fs/sysv/
5497F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Alan Cox4e688522008-04-30 00:52:11 -07005499TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005502F: Documentation/accounting/taskstats*
5503F: include/linux/taskstats*
5504F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005505
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005506TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005507M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005508L: netdev@vger.kernel.org
5509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005510F: include/linux/pkt_cls.h
5511F: include/net/pkt_cls.h
5512F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005513
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005514TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005515M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5516M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005517W: http://tcp-lp-mod.sourceforge.net/
5518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005519F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005520
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005521TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005522M: Alexander Indenbaum <baum@tehutinetworks.net>
5523M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005524L: netdev@vger.kernel.org
5525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005526F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005527
Alan Cox4e688522008-04-30 00:52:11 -07005528Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005531F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005532
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005533TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005534M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005536F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005537
5538THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005540L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05005541L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005542W: http://ibm-acpi.sourceforge.net
5543W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005544T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005547
Alex Dubov4020f2d2006-10-04 02:15:37 -07005548TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005549M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: drivers/misc/tifm*
5552F: drivers/mmc/host/tifm_sd.c
5553F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005554
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005555TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5558S: Maintained
5559F: sound/soc/codecs/twl4030*
5560
Per Lidene86eaa32006-01-12 16:45:18 +01005561TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Jon Maloy <jon.maloy@ericsson.com>
5563M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005564L: tipc-discussion@lists.sourceforge.net
5565W: http://tipc.sourceforge.net/
5566W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005567T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: include/linux/tipc*.h
5570F: include/net/tipc/
5571F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005572
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005574M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005575L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576W: http://sourceforge.net/projects/tlan/
5577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005578F: Documentation/networking/tlan.txt
5579F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005581TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005582M: Kentaro Takeda <takedakn@nttdata.co.jp>
5583M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005584L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5585L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5586L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5587W: http://tomoyo.sourceforge.jp/
5588T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005591
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005592TOPSTAR LAPTOP EXTRAS DRIVER
5593M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05005594L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005595S: Maintained
5596F: drivers/platform/x86/topstar-laptop.c
5597
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005599L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02005600S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005601F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
5603TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605L: tlinux-users@tce.toshiba-dme.co.jp
5606W: http://www.buzzard.org.uk/toshiba/
5607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005608F: drivers/char/toshiba.c
5609F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
Pierre Ossmand719f902009-03-24 21:06:09 +01005611TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005612M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005613S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005614F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005615
Hugh Dickins98f32602009-05-21 20:33:58 +01005616TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07005617M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01005618L: linux-mm@kvack.org
5619S: Maintained
5620F: include/linux/shmem_fs.h
5621F: mm/shmem.c
5622
Alan Cox4e688522008-04-30 00:52:11 -07005623TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005624M: Debora Velarde <debora@linux.vnet.ibm.com>
5625M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005626W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005627M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005628W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005629L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005632
Joe Perchesd6f005a2009-10-26 16:49:40 -07005633TRACING
5634M: Steven Rostedt <rostedt@goodmis.org>
5635M: Frederic Weisbecker <fweisbec@gmail.com>
5636M: Ingo Molnar <mingo@redhat.com>
5637T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git tracing/core
5638S: Maintained
5639F: Documentation/trace/ftrace.txt
5640F: arch/*/*/*/ftrace.h
5641F: arch/*/kernel/ftrace.c
5642F: include/*/ftrace.h
5643F: include/linux/trace*.h
5644F: include/trace/
5645F: kernel/trace/
5646
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650S: Maintained
5651
Alan Cox4e688522008-04-30 00:52:11 -07005652TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005653M: Greg Kroah-Hartman <gregkh@suse.de>
5654S: Maintained
5655T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005656F: drivers/char/tty_*
5657F: drivers/serial/serial_core.c
5658F: include/linux/serial_core.h
5659F: include/linux/serial.h
5660F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005661
Grant Grundler740db6d2008-02-17 11:53:49 -07005662TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005663M: Grant Grundler <grundler@parisc-linux.org>
5664M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005665L: netdev@vger.kernel.org
5666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005667F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
5669TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005670M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671L: vtun@office.satix.net
5672W: http://vtun.sourceforge.net/tun
5673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005674F: Documentation/networking/tuntap.txt
5675F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005677TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005678M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: drivers/tc/
5681F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005682
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685L: linux-scsi@vger.kernel.org
5686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005689UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005690M: Artem Bityutskiy <dedekind1@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005691M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005692L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005693T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005694W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: Documentation/filesystems/ubifs.txt
5697F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005698
Alan Coxcc2020e2008-05-19 14:21:51 +01005699UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005701W: http://www.uclinux.org/
5702L: uclinux-dev@uclinux.org (subscribers-only)
5703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005705
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005706UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005707M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005708W: http://uclinux-h8.sourceforge.jp/
5709S: Supported
5710
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005712M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713W: http://linux-udf.sourceforge.net
5714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005715F: Documentation/filesystems/udf.txt
5716F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Alan Coxcc2020e2008-05-19 14:21:51 +01005718UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005719M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005721F: Documentation/filesystems/ufs.txt
5722F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005723
David Vrabel18332a82008-09-17 16:34:44 +01005724ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005725M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005726L: linux-usb@vger.kernel.org
5727S: Supported
David Vrabel355ffe62009-12-22 13:13:28 +00005728F: drivers/uwb/
5729X: drivers/uwb/wlp/
5730X: drivers/uwb/i1480/i1480u-wlp/
5731X: drivers/uwb/i1480/i1480-wlp.h
Joe Perches679655d2009-04-07 20:44:32 -07005732F: include/linux/uwb.h
5733F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005734
Tony Finchd8379ab2009-11-27 15:50:30 +00005735UNIFDEF
5736M: Tony Finch <dot@dotat.at>
5737W: http://dotat.at/prog/unifdef
5738S: Maintained
5739F: scripts/unifdef.c
5740
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005742M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743W: http://www.kernel.dk
5744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005745F: Documentation/cdrom/
5746F: drivers/cdrom/cdrom.c
5747F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005749UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005750M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005751W: http://www.linux-mtd.infradead.org/
5752L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005753T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005754S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005755F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005756F: include/linux/mtd/ubi.h
5757F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005758
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005761L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: Documentation/usb/acm.txt
5764F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
5766USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005767M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005768L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005770F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08005773M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005774L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005776F: drivers/net/usb/cdc_*.c
5777F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005779USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005780M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005781L: linux-usb@vger.kernel.org
5782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005783F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005784
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005785USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005786M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005787L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005788W: http://www.linux-usb.org/usbnet
5789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005790F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005791
Alan Coxcc2020e2008-05-19 14:21:51 +01005792USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005793M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005794L: rio500-users@lists.sourceforge.net
5795W: http://rio500.sourceforge.net
5796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005797F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005798
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005800M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005801L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005802S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005803F: Documentation/usb/ehci.txt
5804F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805
Luca Risolia7ce08c92006-01-11 02:06:59 +00005806USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005807M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005808L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005809L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005810T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005811W: http://www.linux-projects.org
5812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005813F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005814
David Brownell69ae9e32006-11-14 02:03:31 -08005815USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005816M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005817L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005818W: http://www.linux-usb.org/gadget
5819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005820F: drivers/usb/gadget/
5821F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005822
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005823USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005825L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005826T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005828F: Documentation/usb/hiddev.txt
5829F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Olav Kongas959eea22005-11-03 17:38:14 +02005831USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005832M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005833L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005835F: drivers/usb/host/isp116x*
5836F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005840L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005842F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
5844USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005845M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005846L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005847L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848S: Maintained
5849W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005850F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851
5852USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005854L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005855S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005856F: Documentation/usb/ohci.txt
5857F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Matthias Urlichsba460e42005-07-14 00:33:47 -07005859USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005860M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005861L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005863F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005867L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868W: http://alpha.dyndns.org/ov511/
5869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871
5872USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005874L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005875L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876W: http://pegasus2.sourceforge.net/
5877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005878F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005880USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005882L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005884F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885
5886USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005887M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005888L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005889L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890W: http://pegasus2.sourceforge.net/
5891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005896L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897W: http://www.chello.nl/~j.vreeken/se401/
5898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005899F: Documentation/video4linux/se401.txt
5900F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Alan Cox4e688522008-04-30 00:52:11 -07005902USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005904L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005907
5908USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005909M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005910L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005911S: Maintained
5912W: http://geocities.com/i0xox0i
5913W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005914F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005917M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921
5922USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005923M: Peter Berger <pberger@brimson.com>
5924M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005925L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
5929USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005930M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005931L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005933F: Documentation/usb/usb-serial.txt
5934F: drivers/usb/serial/generic.c
5935F: drivers/usb/serial/usb-serial.c
5936F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005939M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005940L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005942F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943
5944USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005945M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005946L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947W: http://www.kroah.com/linux/
5948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005949F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
5951USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005952M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005953L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954W: http://www.connecttech.com
5955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005956F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005958USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005960L: netdev@vger.kernel.org
5961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005962F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005963
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005964USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005965M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005966L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005967L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005968T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969W: http://www.linux-projects.org
5970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005971F: Documentation/video4linux/sn9c102.txt
5972F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
5974USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005976L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005978T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005980F: Documentation/usb/
5981F: drivers/net/usb/
5982F: drivers/usb/
5983F: include/linux/usb.h
5984F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985
5986USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005988L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005990F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
David Brownell69ae9e32006-11-14 02:03:31 -08005992USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005993M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005994L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005995W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: drivers/net/usb/usbnet.c
5998F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006000USB VIDEO CLASS
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: Laurent Pinchart <laurent.pinchart@skynet.be>
Jiri Slabya67534a2008-12-10 09:09:27 -03006002L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006003L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006004T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006005W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006011L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006012L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006013T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014W: http://www.linux-projects.org
6015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: Documentation/video4linux/w9968cf.txt
6017F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006019USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006021L: linux-wireless@vger.kernel.org
6022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006023F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006024
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006025USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006026M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006027L: linux-usb@vger.kernel.org
6028S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006029F: drivers/usb/host/xhci*
6030F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006031
Luca Risolia60f78052006-02-06 16:29:35 +00006032USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006033M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006034L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006035L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006036T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006037W: http://www.linux-projects.org
6038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006039F: Documentation/video4linux/zc0301.txt
6040F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006041
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042USB ZD1201 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006044L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045W: http://linux-lc100020.sourceforge.net
6046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006047F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006049USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006050M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006051L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006052L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006053T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006054W: http://royale.zerezo.com/zr364xx/
6055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006056F: Documentation/video4linux/zr364xx.txt
6057F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006058
Randy Dunlape7839f22008-10-12 16:11:45 -07006059USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006060M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061L: user-mode-linux-devel@lists.sourceforge.net
6062L: user-mode-linux-user@lists.sourceforge.net
6063W: http://user-mode-linux.sourceforge.net
6064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: Documentation/uml/
6066F: arch/um/
6067F: fs/hostfs/
6068F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006069
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006070USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07006071M: "Hans J. Koch" <hjk@linutronix.de>
6072M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006074F: Documentation/DocBook/uio-howto.tmpl
6075F: drivers/uio/
6076F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006077
Karel Zakf899b0a2008-05-23 13:04:21 -07006078UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006079M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006080L: util-linux-ng@vger.kernel.org
6081W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006082T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006083S: Maintained
6084
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006085UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006086M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006087L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006088W: http://dev.gentoo.org/~spock/projects/uvesafb/
6089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006090F: Documentation/fb/uvesafb.txt
6091F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006092
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006093VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006094M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006096F: Documentation/filesystems/vfat.txt
6097F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098
Amit Shah9a824462010-03-23 18:23:09 +05306099VIRTIO CONSOLE DRIVER
6100M: Amit Shah <amit.shah@redhat.com>
6101L: virtualization@lists.linux-foundation.org
6102S: Maintained
6103F: drivers/char/virtio_console.c
6104F: include/linux/virtio_console.h
6105
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00006106VIRTIO HOST (VHOST)
6107M: "Michael S. Tsirkin" <mst@redhat.com>
6108L: kvm@vger.kernel.org
6109L: virtualization@lists.osdl.org
6110L: netdev@vger.kernel.org
6111S: Maintained
6112F: drivers/vhost/
6113F: include/linux/vhost.h
6114
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006116M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006118F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119
Jean Delvare32c0a522005-09-22 21:47:58 +02006120VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006121M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006122L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006124F: Documentation/i2c/busses/i2c-viapro
6125F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006126
Harald Weltef0bf7f62009-06-17 20:22:39 +02006127VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Joseph Chan <JosephChan@via.com.tw>
6129M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02006130S: Maintained
6131F: drivers/mmc/host/via-sdmmc.c
6132
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006133VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006134M: Joseph Chan <JosephChan@via.com.tw>
6135M: Scott Fang <ScottFang@viatech.com.cn>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006136L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006139
Francois Romieu01f20732007-01-26 00:57:17 -08006140VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006141M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08006142L: netdev@vger.kernel.org
6143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
Patrick McHardybe7f8272007-10-23 20:26:36 -07006146VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07006147M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07006148L: netdev@vger.kernel.org
6149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006150F: drivers/net/macvlan.c
6151F: include/linux/if_*vlan.h
6152F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006153
Florian Fainelli55e331c2009-06-16 15:33:53 -07006154VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006155M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07006156L: openwrt-devel@lists.openwrt.org
6157S: Maintained
6158F: drivers/vlynq/vlynq.c
6159F: include/linux/vlynq.h
6160
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006161VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08006162M: Shreyas Bhatewara <sbhatewara@vmware.com>
6163M: "VMware, Inc." <pv-drivers@vmware.com>
6164L: netdev@vger.kernel.org
6165S: Maintained
6166F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006167
Alok Kataria851b1642009-10-13 14:51:05 -07006168VMware PVSCSI driver
6169M: Alok Kataria <akataria@vmware.com>
6170M: VMware PV-Drivers <pv-drivers@vmware.com>
6171L: linux-scsi@vger.kernel.org
6172S: Maintained
6173F: drivers/scsi/vmw_pvscsi.c
6174F: drivers/scsi/vmw_pvscsi.h
6175
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006176VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Liam Girdwood <lrg@slimlogic.co.uk>
6178M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006179W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006180W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006181T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006183F: drivers/regulator/
6184F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006185
Juerg Haefligerab413192006-09-24 20:54:04 +02006186VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006187M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02006188L: lm-sensors@lm-sensors.org
6189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006190F: Documentation/hwmon/vt1211
6191F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006192
Roger Lucas1de9e372005-11-26 20:20:05 +01006193VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01006195L: lm-sensors@lm-sensors.org
6196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006197F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006198
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006200M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: Documentation/w1/
6203F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204
Charles Spirakis13927072006-07-05 18:05:15 +02006205W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006206M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02006207L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: Documentation/hwmon/w83791d
6210F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006211
Rudolf Marek61db0112006-12-12 18:18:30 +01006212W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006213M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01006214L: lm-sensors@lm-sensors.org
6215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: Documentation/hwmon/w83793
6217F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006218
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006220M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006222F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006224WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006225M: Wim Van Sebroeck <wim@iguana.be>
Joe Perches54e58812009-04-07 21:08:10 -07006226T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006228F: Documentation/watchdog/
6229F: drivers/watchdog/
6230F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006231
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
Joe Perches8b58be82009-07-29 15:04:30 -07006233M: Jean Tourrilhes <jt@hpl.hp.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006234L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: Documentation/networking/wavelan.txt
Joe Perchese200e0e2010-03-05 13:43:10 -08006238F: drivers/staging/wavelan/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
6240WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006241M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242L: linux-scsi@vger.kernel.org
6243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
David Härdemane258b802009-09-21 17:04:53 -07006246WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006247M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006248S: Maintained
6249F: drivers/input/misc/winbond-cir.c
6250
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006251WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006252M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006253M: linux-wimax@intel.com
6254L: wimax@linuxwimax.org
6255S: Supported
6256W: http://linuxwimax.org
6257
David Vrabel18332a82008-09-17 16:34:44 +01006258WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006259M: David Vrabel <david.vrabel@csr.com>
David Vrabel355ffe62009-12-22 13:13:28 +00006260L: netdev@vger.kernel.org
David Vrabel18332a82008-09-17 16:34:44 +01006261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006262F: include/linux/wlp.h
6263F: drivers/uwb/wlp/
David Vrabel355ffe62009-12-22 13:13:28 +00006264F: drivers/uwb/i1480/i1480u-wlp/
6265F: drivers/uwb/i1480/i1480-wlp.h
David Vrabel18332a82008-09-17 16:34:44 +01006266
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006267WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006268M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006270F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006271
Kalle Valo834da342009-07-21 14:26:08 +03006272WL1251 WIRELESS DRIVER
Kalle Valo54f2d732010-02-18 21:47:51 +02006273M: Kalle Valo <kalle.valo@iki.fi>
Kalle Valo834da342009-07-21 14:26:08 +03006274L: linux-wireless@vger.kernel.org
6275W: http://wireless.kernel.org
6276T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6277S: Maintained
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006278F: drivers/net/wireless/wl12xx/*
6279X: drivers/net/wireless/wl12xx/wl1271*
6280
6281WL1271 WIRELESS DRIVER
6282M: Luciano Coelho <luciano.coelho@nokia.com>
6283L: linux-wireless@vger.kernel.org
6284W: http://wireless.kernel.org
6285T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6286S: Maintained
6287F: drivers/net/wireless/wl12xx/wl1271*
Kalle Valo834da342009-07-21 14:26:08 +03006288
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006290M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006291L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006292W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006294F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295
Mark Brownfebf1df2008-04-02 00:51:09 -04006296WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6298M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006299L: linux-input@vger.kernel.org
6300T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6301W: http://opensource.wolfsonmicro.com/node/7
6302S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006303F: drivers/input/touchscreen/*wm97*
6304F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006305
Mark Brownb75ea162009-07-02 16:43:08 +01006306WOLFSON MICROELECTRONICS PMIC DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006307M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownb75ea162009-07-02 16:43:08 +01006308T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
6309W: http://opensource.wolfsonmicro.com/node/8
6310S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006311F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006312F: drivers/leds/leds-wm83*.c
6313F: drivers/mfd/wm8*.c
6314F: drivers/power/wm83*.c
6315F: drivers/rtc/rtc-wm83*.c
6316F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006317F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006318F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006319F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006320F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006321F: include/linux/mfd/wm8400*
6322F: sound/soc/codecs/wm8350.*
6323F: sound/soc/codecs/wm8400.*
Mark Brownb75ea162009-07-02 16:43:08 +01006324
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006326M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006328S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006329F: Documentation/networking/x25*
6330F: include/net/x25*
6331F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006333X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Thomas Gleixner <tglx@linutronix.de>
6335M: Ingo Molnar <mingo@redhat.com>
6336M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006337M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006338T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006340F: Documentation/x86/
6341F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006342
Matthew Garrettd0944852010-02-11 10:40:13 -05006343X86 PLATFORM DRIVERS
6344M: Matthew Garrett <mjg@redhat.com>
6345L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07006346T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05006347S: Maintained
6348F: drivers/platform/x86
6349
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006350XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07006351M: Jeremy Fitzhardinge <jeremy@xensource.com>
6352M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006353L: virtualization@lists.osdl.org
6354L: xen-devel@lists.xensource.com
6355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006356F: arch/x86/xen/
6357F: drivers/*/xen-*front.c
6358F: drivers/xen/
6359F: arch/x86/include/asm/xen/
6360F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006361
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362XFS FILESYSTEM
6363P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05006364M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006366L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006368T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006370F: Documentation/filesystems/xfs.txt
6371F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006373XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006374M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006375W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006377F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006378
Peter Korsgaard238b8722006-12-06 20:35:17 -08006379XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006380M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08006381L: linux-serial@vger.kernel.org
6382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006383F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006384
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006386M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387L: linux-hams@vger.kernel.org
6388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006389F: drivers/net/hamradio/yam*
6390F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006391
Henkaf64a5e2005-10-12 15:02:56 +02006392YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006393M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02006394L: usbb2k-api-dev@nongnu.org
6395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: Documentation/input/yealink.txt
6397F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006398
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006400M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401W: http://yaina.de/jreuter/
6402W: http://www.qsl.net/dl1bke/
6403L: linux-hams@vger.kernel.org
6404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006405F: Documentation/networking/z8530drv.txt
6406F: drivers/net/hamradio/*scc.c
6407F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006409ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006410M: Daniel Drake <dsd@gentoo.org>
6411M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006412W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006413L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006414L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006416F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006417
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006420L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006422T: Mercurial http://linuxtv.org/hg/v4l-dvb
6423S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006424F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006426ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006427M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006429F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006430
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07006432M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07006433L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006434Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07006435T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006437F: *
6438F: */