blob: eb8da39111c7eb9dfeba7b3e33e401b3a9bc58d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Joe Perchesc7c4fb12009-10-26 16:49:48 -070068Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Joe Perchesc7c4fb12009-10-26 16:49:48 -070070 P: Person (obsolete)
71 M: Mail patches to: FullName <address@domain>
72 L: Mailing list that is relevant to this area
73 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080074 Q: Patchwork web based patch tracking system site
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
76 S: Status, one of the following:
77 Supported: Someone is actually paid to look after this.
78 Maintained: Someone actually looks after it.
79 Odd Fixes: It has a maintainer but they don't have time to do
80 much other than throw the odd patch in. See below..
81 Orphan: No current maintainer [but maybe you could take the
82 role as you write your new code].
83 Obsolete: Old code. Something tagged obsolete generally means
84 it has been replaced by a better system and you
85 should be using that.
86 F: Files and directories with wildcard patterns.
87 A trailing slash includes all files and subdirectory files.
88 F: drivers/net/ all files in and below drivers/net
89 F: drivers/net/* all files in drivers/net, but not below
90 F: */net/* all files in "any top level directory"/net
91 One pattern per line. Multiple F: lines acceptable.
92 X: Files and directories that are NOT maintained, same rules as F:
93 Files exclusions are tested before file matches.
94 Can be useful for excluding a specific subdirectory, for instance:
95 F: net/
96 X: net/ipv6/
97 matches all files in and below net excluding net/ipv6/
98 K: Keyword perl extended regex pattern to match content in a
99 patch or file. For instance:
100 K: of_get_profile
101 matches patches or files that contain "of_get_profile"
102 K: \b(printk|pr_(info|err))\b
103 matches patches or files that contain one or more of the words
104 printk, pr_info or pr_err
105 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107Note: For the hard of thinking, this list is meant to remain in alphabetical
108order. If you could add yourselves to it in alphabetical order that would be
109so much easier [Ed]
110
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700111Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700113 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700116M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700117L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700119F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Steffen Klasserta6d89912007-08-10 14:05:27 -07001213C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700122M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700123L: netdev@vger.kernel.org
124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700125F: Documentation/networking/vortex.txt
126F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700129M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700132F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
adam radfordc4de0ce2010-03-08 12:40:36 -08001343WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
135M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800137W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800139F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
14153C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700142M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143L: linux-scsi@vger.kernel.org
144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700145F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
1476PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-hams@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538169 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700154M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700157F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
1598250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Linus Torvalds90a09c92009-07-30 16:40:37 -0700162S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/serial/8250*
164F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
1668390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Joe Perches8b58be82009-07-29 15:04:30 -0700167M: Paul Gortmaker <p_gortmaker@yahoo.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700170F: drivers/net/*8390*
171F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001739P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700174M: Eric Van Hensbergen <ericvh@gmail.com>
175M: Ron Minnich <rminnich@sandia.gov>
176M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100177L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500178W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800179Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800180T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700182F: Documentation/filesystems/9p.txt
183F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700186M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187L: linux-m68k@lists.linux-m68k.org
188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700189F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700191AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700192M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700193L: linux-scsi@vger.kernel.org
194W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700196F: Documentation/scsi/aacraid.txt
197F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700199ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700200M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200201L: lm-sensors@lm-sensors.org
202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700203F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700206M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213L: linux-acenic@sunsite.dk
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Peter Feuerere86435e2009-06-21 18:53:03 +0200217ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500219L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700220W: http://piie.net/?section=acerhdf
221S: Maintained
222F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200223
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000224ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700225M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000226L: aceracpi@googlegroups.com (subscribers-only)
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228W: http://code.google.com/p/aceracpi
229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700230F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700233M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500234L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400235W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800236Q: http://patchwork.kernel.org/project/linux-acpi/list/
Joe Perches54e58812009-04-07 21:08:10 -0700237T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/acpi/
240F: drivers/pnp/pnpacpi/
241F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700242F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500243
244ACPI BATTERY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500246L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300247W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700249F: drivers/acpi/battery.c
250F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500251
252ACPI EC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700253M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500254L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300255W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700257F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500258
259ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700260M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500261L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300262W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700264F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Shaohua Li8e0af512009-07-27 18:11:02 -0400266ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700267M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400268L: linux-acpi@vger.kernel.org
269W: http://www.lesswatts.org/projects/acpi/
270S: Supported
271F: drivers/acpi/acpi_pad.c
272
Len Brown8b59a452007-01-08 19:03:28 -0500273ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700274M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500275L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300276W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700278F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700279
Len Brown359acec2007-02-10 01:59:24 -0500280ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700281M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500282L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300283W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700285F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500286
Carlos Corbachobff431e2008-02-05 02:17:04 +0000287ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700288M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -0500289L: platform-driver-x86@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +0200290W: http://www.lesswatts.org/projects/acpi/
291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700292F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000293
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100294AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700295M: Kyle McMartin <kyle@mcmartin.ca>
296M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200297W: http://wiki.parisc-linux.org/AD1889
298L: linux-parisc@vger.kernel.org
299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700300F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700303M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200304L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700306F: Documentation/hwmon/adm1025
307F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Corentin Labbecae2caa2007-02-14 21:15:04 +0100309ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700310M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100311L: lm-sensors@lm-sensors.org
312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100314
Michael Wucc0b88c2007-08-31 01:15:25 -0400315ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400316L: linux-wireless@vger.kernel.org
317W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400318S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700319F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Jean Delvareb058b852009-12-09 20:36:08 +0100326ADT7475 HARDWARE MONITOR DRIVER
327M: Jean Delvare <khali@linux-fr.org>
328L: lm-sensors@lm-sensors.org
329S: Maintained
330F: Documentation/hwmon/adt7475
331F: drivers/hwmon/adt7475.c
332
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400333ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700334M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400335L: linux-scsi@vger.kernel.org
336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700337F: Documentation/scsi/advansys.txt
338F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700341M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700343F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700346M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700348F: Documentation/filesystems/affs.txt
349F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700351AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700352M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700353L: linux-afs@lists.infradead.org
354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700355F: fs/afs/
356F: include/net/af_rxrpc.h
357F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700360M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700361T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700363F: drivers/char/agp/
364F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700367M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368L: linux-scsi@vger.kernel.org
369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700370F: drivers/scsi/aha152x*
371F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Hannes Reinecke64624d42007-10-19 10:32:29 +0200373AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700374M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200375L: linux-scsi@vger.kernel.org
376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/scsi/aic7xxx/
378F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700380AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700381M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700382L: linux-aio@kvack.org
383S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700384F: fs/aio.c
385F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700388M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700389L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390W: http://www.linux-usb.org/SpeedTouch/
391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700392F: drivers/usb/atm/speedtch.c
393F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Pierre Ossman272f1332007-05-14 21:25:26 +0200395ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200399
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000400ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100402L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/i2c/busses/i2c-ali1563
405F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700409M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500410M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700411L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700412F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700414AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700416L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700418F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700419
Jordan Crousef90b8112006-01-06 00:12:14 -0800420AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100421P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700422L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800423W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700425F: drivers/char/hw_random/geode-rng.c
426F: drivers/crypto/geode*
427F: drivers/video/geode/
428F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800429
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200430AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700431M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200432L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700433T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: arch/x86/kernel/amd_iommu*.c
436F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200437
Peter Orubae7f5b302008-07-28 18:44:11 +0200438AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700440L: amd64-microcode@amd64.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200443
Stelian Pop284f42b2006-12-12 18:18:31 +0100444AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700445M: Stelian Pop <stelian@popies.net>
446M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700448F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100449
Tom Tuckerf94b5332006-09-22 15:22:48 -0700450AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700451M: Tom Tucker <tom@opengridcomputing.com>
452M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700453L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700456
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400457ANALOG DEVICES INC ASOC DRIVERS
458L: uclinux-dist-devel@blackfin.uclinux.org
459L: alsa-devel@alsa-project.org (moderated for non-subscribers)
460W: http://blackfin.uclinux.org/
461S: Supported
462F: sound/soc/blackfin/*
463F: sound/soc/codecs/ad1*
464F: sound/soc/codecs/adau*
465F: sound/soc/codecs/adav*
466F: sound/soc/codecs/ssm*
467
Johannes Berg42269062006-07-25 16:15:50 +0200468AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000470L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700471L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700473F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477L: linux-laptop@vger.kernel.org
478W: http://www.canb.auug.org.au/~sfr/
479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700480F: arch/x86/kernel/apm_32.c
481F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700483APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700485L: linux-input@vger.kernel.org
486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700487F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700488
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700489APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200490M: Henrik Rydberg <rydberg@euromail.se>
491L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700493F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700498F: drivers/net/appletalk/
499F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Jaya Kumar1154ea72005-06-21 17:17:04 -0700501ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700502M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700504F: drivers/video/arcfb.c
505F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700508M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700510F: arch/arm/lib/floppydma.S
511F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Russell Kingd4275352009-04-16 14:05:27 +0100513ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700514M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700515L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100516W: http://www.arm.linux.org.uk/
517S: Maintained
518F: arch/arm/
519
Russell Kingcefbf4e2009-11-22 17:40:28 +0000520ARM PRIMECELL AACI PL041 DRIVER
521M: Russell King <linux@arm.linux.org.uk>
522S: Maintained
523F: sound/arm/aaci.*
524
525ARM PRIMECELL CLCD PL110 DRIVER
526M: Russell King <linux@arm.linux.org.uk>
527S: Maintained
528F: drivers/video/amba-clcd.*
529
530ARM PRIMECELL KMI PL050 DRIVER
531M: Russell King <linux@arm.linux.org.uk>
532S: Maintained
533F: drivers/input/serio/ambakmi.*
534F: include/linux/amba/kmi.h
535
Russell King2761f5c2007-05-24 06:56:08 +0200536ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200539
Russell Kingcefbf4e2009-11-22 17:40:28 +0000540ARM PRIMECELL BUS SUPPORT
541M: Russell King <linux@arm.linux.org.uk>
542S: Maintained
543F: drivers/amba/
544F: include/linux/amba/bus.h
545
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800546ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700547M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700548L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700550F: arch/arm/mach-ixp23xx/
551F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800552
553ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700555L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800556S: Maintained
557
Sergey Lapin9c784f92008-08-03 02:29:48 +0100558ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100561S: Maintained
562
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800563ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700564M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700565L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800566S: Maintained
567
Andrew Victord4a89c72006-12-04 13:56:21 +0100568ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700569M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700570L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200571W: http://maxim.org.za/at91_26.html
572S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100573
Leo Chen57a473f2009-08-12 22:08:48 +0100574ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100575M: Leo Chen <leochen@broadcom.com>
576M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700577L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800578S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100579F: arch/arm/mach-bcmring
580
581ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100582M: Leo Chen <leochen@broadcom.com>
583M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100584L: linux-mtd@lists.infradead.org
585S: Maintained
586F: drivers/mtd/nand/bcm_umi_nand.c
587F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100588F: drivers/mtd/nand/nand_bcm_umi.h
589
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300590ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
591M: Anton Vorontsov <avorontsov@mvista.com>
592S: Maintained
593F: arch/arm/mach-cns3xxx/
594T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
595
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800596ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100597M: Hartley Sweeten <hsweeten@visionengravers.com>
598M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700599L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800600S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100601F: arch/arm/mach-ep93xx/
602F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800603
604ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700605M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700606L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800607S: Maintained
608
Russell Kingd4275352009-04-16 14:05:27 +0100609ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700610M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700611L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100612F: arch/arm/common/clkdev.c
613F: arch/arm/include/asm/clkdev.h
614
Mike Rapoportd48134e2008-08-20 09:03:26 +0100615ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700616M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700617L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100618S: Maintained
619
Hubert Feurstein94150092009-10-07 08:36:07 +0100620ARM/CONTEC MICRO9 MACHINE SUPPORT
621M: Hubert Feurstein <hubert.feurstein@contec.at>
622S: Maintained
623F: arch/arm/mach-ep93xx/micro9.c
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
628
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200629ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100630M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700631L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100632T: git git://git.berlios.de/gemini-board
633S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300634F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200635
Russell Kingd4275352009-04-16 14:05:27 +0100636ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700638L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100639W: http://www.arm.linux.org.uk/
640S: Maintained
641F: arch/arm/mach-ebsa110/
642F: drivers/net/arm/am79c961a.*
643
Russell Kinga9da4f72008-07-12 21:42:04 +0100644ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Daniel Ribeiro <drwyrm@gmail.com>
646M: Stefan Schmidt <stefan@openezx.org>
647M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100648L: openezx-devel@lists.openezx.org (subscribers-only)
649W: http://www.openezx.org/
650S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200651T: topgit git://git.openezx.org/openezx.git
652F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100653
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200654ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100655M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700656L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100657S: Maintained
658T: git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300659F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200660
Russell Kingd4275352009-04-16 14:05:27 +0100661ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700662M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700663L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100664W: http://www.arm.linux.org.uk/
665S: Maintained
666F: arch/arm/include/asm/hardware/dec21285.h
667F: arch/arm/mach-footbridge/
668
Sascha Hauer86183a52008-07-24 23:50:35 +0200669ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200672S: Maintained
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100673T: git://git.pengutronix.de/git/imx/linux-2.6.git
674F: arch/arm/mach-mx*/
675F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200676
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800677ARM/FREESCALE IMX51
678M: Amit Kucheria <amit.kucheria@canonical.com>
679L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
680S: Maintained
681F: arch/arm/mach-mx5/
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100688ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700690L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100691S: Maintained
692
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200693ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700694M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200695S: Maintained
696F: arch/arm/mach-pxa/hx4700.c
697F: arch/arm/mach-pxa/include/mach/hx4700.h
698
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100699ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700700M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200701W: www.jlime.com
702S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700703T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
704F: arch/arm/mach-sa1100/jornada720.c
705F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100706
Marek Vasut403d2972010-05-22 00:29:39 +0200707ARM/INCOME PXA270 SUPPORT
708M: Marek Vasut <marek.vasut@gmail.com>
709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
710S: Maintained
711F: arch/arm/mach-pxa/income.c
712F: arch/arm/mach-pxa/include/mach-pxa/income.h
713
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700715M: Lennert Buytenhek <kernel@wantstofly.org>
716M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700718S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100719
720ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700721M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700723S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800724
725ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700726M: Lennert Buytenhek <kernel@wantstofly.org>
727M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700729S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800730
731ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700732M: Lennert Buytenhek <kernel@wantstofly.org>
733M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700735S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800736
737ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700738M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740S: Maintained
741
742ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800745S: Maintained
746
747ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700748M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750S: Maintained
751
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200752ARM/INTEL IXP4XX ARM ARCHITECTURE
753M: Imre Kaloz <kaloz@openwrt.org>
754M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200756S: Maintained
757F: arch/arm/mach-ixp4xx/
758
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100759ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT
760M: Jonathan Cameron <jic23@cam.ac.uk>
761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
762S: Maintained
763F: arch/arm/mach-pxa/imote2.c
764
765ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT
766M: Jonathan Cameron <jic23@cam.ac.uk>
767L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
768S: Maintained
769F: arch/arm/mach-pxa/stargate2.c
770F: drivers/pcmcia/pxa2xx_stargate2.c
771
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800772ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700773M: Lennert Buytenhek <kernel@wantstofly.org>
774M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700776S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800777
778ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700779M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800781S: Maintained
782
783ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700784M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700785L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800786S: Maintained
787
Philipp Zabel3b8861712008-07-09 21:27:15 +0100788ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100790S: Maintained
791
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400792ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400793M: Lennert Buytenhek <kernel@wantstofly.org>
794M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700795L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400796S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400797F: arch/arm/mach-loki/
798F: arch/arm/mach-kirkwood/
799F: arch/arm/mach-mv78xx0/
800F: arch/arm/mach-orion5x/
801F: arch/arm/plat-orion/
802
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200803ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700804M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200806F: arch/arm/mach-pxa/mioa701.c
807S: Maintained
808
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100809ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700810M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100811S: Maintained
812
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100813ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700814M: Alessandro Rubini <rubini@unipv.it>
815M: STEricsson <STEricsson_nomadik_linux@list.st.com>
816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817S: Maintained
818F: arch/arm/mach-nomadik/
819F: arch/arm/plat-nomadik/
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100820
Andy Green9d762952009-05-19 06:41:42 -0300821ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700822M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300823L: openmoko-kernel@lists.openmoko.org (subscribers-only)
824W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
825S: Supported
826
Daniel Walker0c19d212009-12-07 16:53:51 -0800827ARM/QUALCOMM MSM MACHINE SUPPORT
828M: David Brown <davidb@codeaurora.org>
829M: Daniel Walker <dwalker@codeaurora.org>
830M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800831L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800832F: arch/arm/mach-msm/
833F: drivers/video/msm/
834F: drivers/mmc/host/msm_sdcc.c
835F: drivers/mmc/host/msm_sdcc.h
836F: drivers/serial/msm_serial.h
837F: drivers/serial/msm_serial.c
838T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git
839S: Maintained
840
Dirk Opfer8459c152005-11-06 14:27:52 +0000841ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
843M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000844S: Maintained
845
Marek Vasut5d783a22009-07-16 13:26:48 +0200846ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700847M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200848L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100849W: http://hackndev.com
850S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700851F: arch/arm/mach-pxa/include/mach/palmtx.h
852F: arch/arm/mach-pxa/palmtx.c
853F: arch/arm/mach-pxa/include/mach/palmt5.h
854F: arch/arm/mach-pxa/palmt5.c
855F: arch/arm/mach-pxa/include/mach/palmld.h
856F: arch/arm/mach-pxa/palmld.c
857F: arch/arm/mach-pxa/include/mach/palmte2.h
858F: arch/arm/mach-pxa/palmte2.c
859F: arch/arm/mach-pxa/include/mach/palmtc.h
860F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100861
Joe Perchesb57fe922009-12-14 18:00:52 -0800862ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200864L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200865W: http://hackndev.com
866S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800867F: arch/arm/mach-pxa/include/mach/palmtreo.h
868F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200869
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100870ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200872L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700873W: http://hackndev.com
874S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700875F: arch/arm/mach-pxa/include/mach/palmz72.h
876F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700879M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
881S: Maintained
882
883ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886W: http://www.arm.linux.org.uk/
887S: Maintained
888
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800889ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892S: Maintained
893
Russell Kingd4275352009-04-16 14:05:27 +0100894ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700895M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100897W: http://www.arm.linux.org.uk/
898S: Maintained
899F: arch/arm/common/time-acorn.c
900F: arch/arm/include/asm/hardware/entry-macro-iomd.S
901F: arch/arm/include/asm/hardware/ioc.h
902F: arch/arm/include/asm/hardware/iomd.h
903F: arch/arm/include/asm/hardware/memc.h
904F: arch/arm/mach-rpc/
905F: drivers/net/arm/ether*
906F: drivers/scsi/arm/
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910W: http://www.shark-linux.de/shark.html
911S: Maintained
912
Ben Dooksb21477f2009-06-13 10:46:34 +0100913ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700914M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -0700915M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100917W: http://www.fluff.org/ben/linux/
918S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -0700919F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +0100920F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -0700921F: arch/arm/plat-s5p/
Ben Dooksb21477f2009-06-13 10:46:34 +0100922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700924M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700925L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926W: http://www.fluff.org/ben/linux/
927S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100928F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930ARM/S3C2440 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700931M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933W: http://www.fluff.org/ben/linux/
934S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100935F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Ben Dooksb21477f2009-06-13 10:46:34 +0100937ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700938M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700939L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100940W: http://www.fluff.org/ben/linux/
941S: Maintained
942F: arch/arm/mach-s3c2442/
943
944ARM/S3C2443 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100947W: http://www.fluff.org/ben/linux/
948S: Maintained
949F: arch/arm/mach-s3c2443/
950
951ARM/S3C6400 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700952M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700953L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100954W: http://www.fluff.org/ben/linux/
955S: Maintained
956F: arch/arm/mach-s3c6400/
957
958ARM/S3C6410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700959M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100961W: http://www.fluff.org/ben/linux/
962S: Maintained
963F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Kukjin Kimf556cb072010-09-30 15:15:35 -0700965ARM/S5P ARM ARCHITECTURES
966M: Kukjin Kim <kgene.kim@samsung.com>
967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
969S: Maintained
970F: arch/arm/mach-s5p*/
971
Kyungmin Parkaaac7d92010-10-07 12:59:28 -0700972ARM/SAMSUNG S5P SERIES FIMC SUPPORT
973M: Kyungmin Park <kyungmin.park@samsung.com>
974M: Sylwester Nawrocki <s.nawrocki@samsung.com>
975L: linux-arm-kernel@lists.infradead.org
976L: linux-media@vger.kernel.org
977S: Maintained
978F: arch/arm/plat-s5p/dev-fimc*
979F: arch/arm/plat-samsung/include/plat/*fimc*
980F: drivers/media/video/s5p-fimc/
981
Paul Mundtd48d38e2010-02-08 12:50:24 +0900982ARM/SHMOBILE ARM ARCHITECTURE
983M: Paul Mundt <lethal@linux-sh.org>
984M: Magnus Damm <magnus.damm@gmail.com>
985L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +0900986W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +0900987Q: http://patchwork.kernel.org/project/linux-sh/list/
988T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
Paul Mundtd48d38e2010-02-08 12:50:24 +0900989S: Supported
990F: arch/arm/mach-shmobile/
991F: drivers/sh/
992
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800993ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700994M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700995L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800996S: Maintained
997
998ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700999M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001000L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001001S: Maintained
1002
wanzongshun98ad6e32009-02-13 06:04:32 +01001003ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001004M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001005L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001006W: http://www.mcuos.com
1007S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001008F: arch/arm/mach-w90x900/
1009F: arch/arm/mach-nuc93x/
1010F: drivers/input/keyboard/w90p910_keypad.c
1011F: drivers/input/touchscreen/w90p910_ts.c
1012F: drivers/watchdog/nuc900_wdt.c
1013F: drivers/net/arm/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001014F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001015F: drivers/rtc/rtc-nuc900.c
1016F: drivers/spi/spi_nuc900.c
1017F: drivers/usb/host/ehci-w90x900.c
1018F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001019
Linus Walleij54274d72010-04-04 10:58:03 +01001020ARM/U300 MACHINE SUPPORT
1021M: Linus Walleij <linus.walleij@stericsson.com>
1022L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023S: Supported
1024F: arch/arm/mach-u300/
1025F: drivers/i2c/busses/i2c-stu300.c
1026F: drivers/rtc/rtc-coh901331.c
1027F: drivers/watchdog/coh901327_wdt.c
1028F: drivers/dma/coh901318*
1029
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001030ARM/U8500 ARM ARCHITECTURE
1031M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
1032L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033S: Maintained
1034F: arch/arm/mach-ux500/
1035
Russell Kingd4275352009-04-16 14:05:27 +01001036ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001039W: http://www.arm.linux.org.uk/
1040S: Maintained
1041F: arch/arm/vfp/
1042
Marek Vasute66b6d82010-03-26 06:51:32 +01001043ARM/VOIPAC PXA270 SUPPORT
1044M: Marek Vasut <marek.vasut@gmail.com>
1045L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1046S: Maintained
1047F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001048F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001049
1050ARM/ZIPIT Z2 SUPPORT
1051M: Marek Vasut <marek.vasut@gmail.com>
1052L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053S: Maintained
1054F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001055F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001056
George Josephd58de032010-03-05 22:17:25 +01001057ASC7621 HARDWARE MONITOR DRIVER
1058M: George Joseph <george.joseph@fairview5.com>
1059L: lm-sensors@lm-sensors.org
1060S: Maintained
1061F: Documentation/hwmon/asc7621
1062F: drivers/hwmon/asc7621.c
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Corentin Chary <corentincj@iksaif.net>
1066M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001068L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001069W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001071F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001073ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001074M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001075L: lm-sensors@lm-sensors.org
1076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001077F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001078
Corentin Chary85091b72007-01-26 14:04:30 +01001079ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001080M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +01001081L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001082L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001083W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +01001084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001085F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +01001086
Andrew Morton953a6472008-11-06 12:53:28 -08001087ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001088M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001089W: http://sourceforge.net/projects/xscaleiop
1090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001091F: Documentation/crypto/async-tx-api.txt
1092F: crypto/async_tx/
1093F: drivers/dma/
1094F: include/linux/dmaengine.h
1095F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001096
Wolfram Sanga1867d32009-09-18 22:45:51 +02001097AT24 EEPROM DRIVER
1098M: Wolfram Sang <w.sang@pengutronix.de>
1099L: linux-i2c@vger.kernel.org
1100S: Maintained
1101F: drivers/misc/eeprom/at24.c
1102F: include/linux/i2c/at24.h
1103
Randy Dunlape7839f22008-10-12 16:11:45 -07001104ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001105M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106W: http://www.coraid.com/support/linux
1107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001108F: Documentation/aoe/
1109F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001111ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001112M: Jiri Slaby <jirislaby@gmail.com>
1113M: Nick Kossifidis <mickflemm@gmail.com>
1114M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1115M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001116L: linux-wireless@vger.kernel.org
1117L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001118W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001119S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001120F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001121
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001122ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001123M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1124M: Jouni Malinen <jmalinen@atheros.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001125M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1126M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001127L: linux-wireless@vger.kernel.org
1128L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001129W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001130S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001131F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001132
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001133ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001134M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001135L: linux-wireless@vger.kernel.org
1136W: http://wireless.kernel.org/en/users/Drivers/ar9170
1137S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001138F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001139
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001140CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1141M: Christian Lamparter <chunkeey@googlemail.com>
1142L: linux-wireless@vger.kernel.org
1143W: http://wireless.kernel.org/en/users/Drivers/carl9170
1144S: Maintained
1145F: drivers/net/wireless/ath/carl9170/
1146
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001147ATK0110 HWMON DRIVER
1148M: Luca Tettamanti <kronos.it@gmail.com>
1149L: lm-sensors@lm-sensors.org
1150S: Maintained
1151F: drivers/hwmon/asus_atk0110.c
1152
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001153ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001156F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001157
Chris Snook7ae115b2008-09-09 03:26:57 -04001158ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001159M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001160M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001161M: Jie Yang <jie.yang@atheros.com>
Chris Snooke443e382010-09-16 22:00:28 -07001162L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001163W: http://sourceforge.net/projects/atl1
1164W: http://atl1.sourceforge.net
1165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001166F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001169M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001170L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001171L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172W: http://linux-atm.sourceforge.net
1173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001174F: drivers/atm/
1175F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Pierre Ossman272f1332007-05-14 21:25:26 +02001177ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001179L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001180W: http://www.atmel.com/products/AT91/
1181W: http://www.at91.com/
1182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001183F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001184
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001185ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001186M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001187S: Maintained
1188F: drivers/mmc/host/atmel-mci.c
1189F: drivers/mmc/host/atmel-mci-regs.h
1190
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001191ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001192M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001194F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001195
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001196ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001197M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001198L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001200F: drivers/video/atmel_lcdfb.c
1201F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001202
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001203ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001204M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001206F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001207
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001208ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001209M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001212
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001213ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001214M: Nicolas Ferre <nicolas.ferre@atmel.com>
1215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001216W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001218F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001221M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001222L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223W: http://www.thekelleys.org.uk/atmel
1224W: http://atmelwlandriver.sourceforge.net/
1225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001226F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Chris Wrighta92b7b82005-07-07 18:12:23 -07001228AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001229M: Al Viro <viro@zeniv.linux.org.uk>
1230M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001231L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001232W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001233T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001235F: include/linux/audit.h
1236F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001237
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001238AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001239M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001240W: http://miguelojeda.es/auxdisplay.htm
1241W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001243F: drivers/auxdisplay/
1244F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001245
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001246AVR32 ARCHITECTURE
Hans-Christian Egtvedtf5665512010-09-22 13:04:58 -07001247M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001248W: http://www.atmel.com/products/AVR32/
1249W: http://avr32linux.org/
1250W: http://avrfreaks.net/
1251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001252F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001253
1254AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedtf5665512010-09-22 13:04:58 -07001255M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001257F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001260M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001262W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001264F: include/linux/ax25.h
1265F: include/net/ax25.h
1266F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001268B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001269M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001270L: linux-wireless@vger.kernel.org
1271W: http://linuxwireless.org/en/users/Drivers/b43
1272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001273F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001274
1275B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001276M: Larry Finger <Larry.Finger@lwfinger.net>
1277M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001278L: linux-wireless@vger.kernel.org
1279W: http://linuxwireless.org/en/users/Drivers/b43
1280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001281F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001282
Richard Purdie300abeb2007-02-07 22:21:07 +00001283BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001284M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001286F: drivers/video/backlight/
1287F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001289BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001291L: linux-hams@vger.kernel.org
1292W: http://www.baycom.org/~tom/ham/ham.html
1293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001295
1296BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001297S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001298F: Documentation/filesystems/befs.txt
1299F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001300
1301BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001302M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001304F: Documentation/filesystems/bfs.txt
1305F: fs/bfs/
1306F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001307
Bryan Wu1394f032007-05-06 14:50:22 -07001308BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001309M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001310L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001311W: http://blackfin.uclinux.org
1312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001313F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001314
Bryan Wue190d6b2007-07-17 14:43:44 +08001315BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001316M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001317L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001318W: http://blackfin.uclinux.org
1319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001320F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001321
Mike Frysinger566da5b2007-06-11 15:31:30 +08001322BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001323M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001324L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001325W: http://blackfin.uclinux.org
1326S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001327F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001328
Mike Frysinger936ed492010-03-10 15:20:38 -08001329BLACKFIN SDH DRIVER
1330M: Cliff Cai <cliff.cai@analog.com>
1331L: uclinux-dist-devel@blackfin.uclinux.org
1332W: http://blackfin.uclinux.org
1333S: Supported
1334F: drivers/mmc/host/bfin_sdh.c
1335
Bryan Wu1394f032007-05-06 14:50:22 -07001336BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001337M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001338L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001339W: http://blackfin.uclinux.org
1340S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001341F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001342
Bryan Wu1e6d3202007-07-15 02:50:02 +08001343BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001344M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001345L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001346W: http://blackfin.uclinux.org
1347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001348F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001349
Bryan Wud24ecfc2007-05-01 23:26:32 +02001350BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001351M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001352L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001353W: http://blackfin.uclinux.org/
1354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001355F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001358M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001359T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001361F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Joern Engel2b54aae2008-02-06 01:38:02 -08001363BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001364M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001365L: linux-mtd@lists.infradead.org
1366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001367F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001368
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001369BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001370M: Marcel Holtmann <marcel@holtmann.org>
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001371M: Gustavo F. Padovan <padovan@profusion.mobi>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001372L: linux-bluetooth@vger.kernel.org
1373W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001374T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001376F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001379M: Marcel Holtmann <marcel@holtmann.org>
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001380M: Gustavo F. Padovan <padovan@profusion.mobi>
Pavel Machek781c2842008-03-20 15:41:02 -07001381L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001382W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001383T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001385F: net/bluetooth/
1386F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001390L: bonding-devel@lists.sourceforge.net
1391W: http://sourceforge.net/projects/bonding/
1392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001393F: drivers/net/bonding/
1394F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Gary Zambrano39105892006-06-22 17:26:20 -07001396BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001397M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001398L: netdev@vger.kernel.org
1399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001400F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001401
Michael Chan948c51e2006-06-04 02:51:39 -07001402BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001403M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001404L: netdev@vger.kernel.org
1405S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001406F: drivers/net/bnx2.*
1407F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001408
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001409BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001410M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001411L: netdev@vger.kernel.org
1412S: Supported
Dmitry Kravkov49efec12010-07-27 12:37:58 +00001413F: drivers/net/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001414
Michael Chan948c51e2006-06-04 02:51:39 -07001415BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001416M: Matt Carlson <mcarlson@broadcom.com>
1417M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001418L: netdev@vger.kernel.org
1419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001420F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001421
Jing Huang7725ccf2009-09-23 17:46:15 -07001422BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001423M: Jing Huang <huangj@brocade.com>
1424L: linux-scsi@vger.kernel.org
1425S: Supported
1426F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001427
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001428BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1429M: Rasesh Mody <rmody@brocade.com>
1430M: Debashis Dutt <ddutt@brocade.com>
1431L: netdev@vger.kernel.org
1432S: Supported
1433F: drivers/net/bna/
1434
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001435BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001436M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001437L: linux-scsi@vger.kernel.org
1438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001439F: block/bsg.c
1440F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001441
Michael Bueschff1d5c22008-07-25 01:46:10 -07001442BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001443M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001444W: http://bu3sch.de/btgpio.php
1445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001446F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001447
Joe Percheseb1eb042009-01-21 10:49:16 -05001448BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001449M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001450L: linux-btrfs@vger.kernel.org
1451W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001452Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001453T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001455F: Documentation/filesystems/btrfs.txt
1456F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001459M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001460L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001461W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001462T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001464F: Documentation/video4linux/bttv/
1465F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
David Howellsa5432f52009-04-20 15:46:45 +01001467CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001468M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001469L: linux-cachefs@redhat.com
1470S: Supported
1471F: Documentation/filesystems/caching/cachefiles.txt
1472F: fs/cachefiles/
1473
Jonathan Corbet77d51402007-03-22 19:44:17 -03001474CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001475M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001476L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001477T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001479F: Documentation/video4linux/cafe_ccic
1480F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001481
Joe Perches201b6ba2010-09-07 20:33:24 +00001482CAIF NETWORK LAYER
1483M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1484L: netdev@vger.kernel.org
1485S: Supported
1486F: Documentation/networking/caif/
1487F: drivers/net/caif/
1488F: include/linux/caif/
1489F: include/net/caif/
1490F: net/caif/
1491
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001492CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001493M: Muli Ben-Yehuda <muli@il.ibm.com>
1494M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001495L: discuss@x86-64.org
1496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: arch/x86/kernel/pci-calgary_64.c
1498F: arch/x86/kernel/tce_64.c
1499F: arch/x86/include/asm/calgary.h
1500F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001501
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001502CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001503M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001504M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001505M: Urs Thuermann <urs.thuermann@volkswagen.de>
1506L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001507L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508W: http://developer.berlios.de/projects/socketcan/
1509S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001510F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001511F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001512F: include/linux/can/core.h
1513F: include/linux/can/bcm.h
1514F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001516CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001518L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001519L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001520W: http://developer.berlios.de/projects/socketcan/
1521S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001522F: drivers/net/can/
1523F: include/linux/can/dev.h
1524F: include/linux/can/error.h
1525F: include/linux/can/netlink.h
1526F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001527
Arnd Bergmannb8154542008-05-16 11:10:59 +02001528CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001530L: linuxppc-dev@lists.ozlabs.org
1531L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001532W: http://www.ibm.com/developerworks/power/cell/
1533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001534F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001535F: arch/powerpc/include/asm/spu*.h
1536F: arch/powerpc/oprofile/*cell*
1537F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001538
Sage Weil9030aaf2009-10-06 11:31:15 -07001539CEPH DISTRIBUTED FILE SYSTEM CLIENT
1540M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001541L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001542W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001543T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001544S: Supported
1545F: Documentation/filesystems/ceph.txt
1546F: fs/ceph
1547
David Vrabel18332a82008-09-17 16:34:44 +01001548CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001550L: linux-usb@vger.kernel.org
1551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001552F: Documentation/usb/WUSB-Design-overview.txt
1553F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001554F: drivers/usb/host/hwa-hc.c
1555F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001556F: drivers/usb/wusbcore/
1557F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001558
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001559CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001561W: http://miguelojeda.es/auxdisplay.htm
1562W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001564F: drivers/auxdisplay/cfag12864b.c
1565F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001566
1567CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001569W: http://miguelojeda.es/auxdisplay.htm
1570W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001572F: drivers/auxdisplay/cfag12864bfb.c
1573F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001574
Johannes Berg704232c2007-04-23 12:20:05 -07001575CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001577L: linux-wireless@vger.kernel.org
1578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001579F: include/linux/nl80211.h
1580F: include/net/cfg80211.h
1581F: net/wireless/*
1582X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001583
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001584CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001587F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001588
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001589CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001590M: Vasanthy Kolluri <vkolluri@cisco.com>
1591M: Roopa Prabhu <roprabhu@cisco.com>
Vasanthy Kolluri94d57c42010-09-30 13:36:05 +00001592M: David Wang <dwang2@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001594F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001595
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001596CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001597M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001598L: netdev@vger.kernel.org
1599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001601
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001602CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001603M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001604L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001606F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001607
Timur Tabid9e9d822008-04-24 08:45:26 +10001608CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001609M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001610L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001612F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001613
Russell Kingd4275352009-04-16 14:05:27 +01001614CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001616F: include/linux/clk.h
1617
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001618CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001619M: Abhijeet Joglekar <abjoglek@cisco.com>
1620M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001621L: linux-scsi@vger.kernel.org
1622S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001623F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001624
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001625CMPC ACPI DRIVER
1626M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1627M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001628L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001629S: Supported
1630F: drivers/platform/x86/classmate-laptop.c
1631
Nicolas Palix74425ee2010-06-06 17:15:01 +02001632COCCINELLE/Semantic Patches (SmPL)
1633M: Julia Lawall <julia@diku.dk>
1634M: Gilles Muller <Gilles.Muller@lip6.fr>
1635M: Nicolas Palix <npalix@diku.dk>
1636L: cocci@diku.dk (moderated for non-subscribers)
1637W: http://coccinelle.lip6.fr/
1638S: Supported
1639F: scripts/coccinelle/
1640F: scripts/coccicheck
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644M: coda@cs.cmu.edu
1645L: codalist@coda.cs.cmu.edu
1646W: http://www.coda.cs.cmu.edu/
1647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: Documentation/filesystems/coda.txt
1649F: fs/coda/
1650F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001652COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001654L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001655L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001656W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001657Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001658T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001660F: Documentation/filesystems/cifs.txt
1661F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001664M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001665L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001667F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001671L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001677L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001679F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001681COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001683L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001685F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001688M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001691F: Documentation/serial/computone.txt
1692F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Simon Arlott949be0f2007-03-06 02:47:46 -08001694CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001695M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001696L: accessrunner-general@lists.sourceforge.net
1697W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001699F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001700
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001701CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001702M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001704F: fs/configfs/
1705F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001706
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001707CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001708M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001709L: netdev@vger.kernel.org
1710S: Maintained
1711F: drivers/connector/
1712
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001713CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001714M: Paul Menage <menage@google.com>
1715M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001716L: containers@lists.linux-foundation.org
1717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001718F: include/linux/cgroup*
1719F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001720F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001721
Rudolf Marekbebe4672007-05-08 17:22:02 +02001722CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02001723M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001724L: lm-sensors@lm-sensors.org
1725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001726F: Documentation/hwmon/coretemp
1727F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001730M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731W: http://www.fi.muni.cz/~kas/cosa/
1732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001733F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Florian Fainelli4371ee32009-06-01 02:43:17 -07001735CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001736M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001737L: netdev@vger.kernel.org
1738S: Maintained
1739F: drivers/net/cpmac.c
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001742M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001743L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001745T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001747F: arch/x86/kernel/cpu/cpufreq/
1748F: drivers/cpufreq/
1749F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001752M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001754F: arch/x86/kernel/cpuid.c
1755F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Paul Jacksoned90fb42005-09-27 21:45:37 -07001757CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001758M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001759W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001760W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001762F: Documentation/cgroups/cpusets.txt
1763F: include/linux/cpuset.h
1764F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001767W: http://sourceforge.net/projects/cramfs/
1768S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001769F: Documentation/filesystems/cramfs.txt
1770F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: Mikael Starvik <starvik@axis.com>
1774M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001775L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776W: http://developer.axis.com
1777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001778F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Herbert Xu <herbert@gondor.apana.org.au>
1782M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001784T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: Documentation/crypto/
1787F: arch/*/crypto/
1788F: crypto/
1789F: drivers/crypto/
1790F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Neil Horman5b07bd52009-02-05 16:03:04 +11001792CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001793M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001794L: linux-crypto@vger.kernel.org
1795S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07001796F: crypto/ansi_cprng.c
1797F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11001798
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001799CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001800M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001802F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001803
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001804CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001805M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001806L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001807L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001808T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001809W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001810W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001812F: Documentation/video4linux/cx18.txt
1813F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001814
Steve Wisee5ec3782008-05-20 14:06:33 -07001815CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001816M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001817L: netdev@vger.kernel.org
1818W: http://www.chelsio.com
1819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001820F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001821
1822CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001823M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001824L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001825W: http://www.openfabrics.org
1826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001827F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001828
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001829CXGB4 ETHERNET DRIVER (CXGB4)
1830M: Dimitris Michailidis <dm@chelsio.com>
1831L: netdev@vger.kernel.org
1832W: http://www.chelsio.com
1833S: Supported
1834F: drivers/net/cxgb4/
1835
1836CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
1837M: Steve Wise <swise@chelsio.com>
1838L: linux-rdma@vger.kernel.org
1839W: http://www.openfabrics.org
1840S: Supported
1841F: drivers/infiniband/hw/cxgb4/
1842
Casey Leedom5c20a5c2010-07-19 17:55:33 -07001843CXGB4VF ETHERNET DRIVER (CXGB4VF)
1844M: Casey Leedom <leedom@chelsio.com>
1845L: netdev@vger.kernel.org
1846W: http://www.chelsio.com
1847S: Supported
1848F: drivers/net/cxgb4vf/
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001851M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853W: http://www.arm.linux.org.uk/
1854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001855F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001858M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001859W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001861F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001865S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/char/cyclades.c
1867F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001871S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001872F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001875M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876W: http://yaina.de/jreuter/
1877W: http://www.qsl.net/dl1bke/
1878L: linux-hams@vger.kernel.org
1879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001880F: net/ax25/af_ax25.c
1881F: net/ax25/ax25_dev.c
1882F: net/ax25/ax25_ds_*
1883F: net/ax25/ax25_in.c
1884F: net/ax25/ax25_out.c
1885F: net/ax25/ax25_timer.c
1886F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001888DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001889M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001890L: netdev@vger.kernel.org
1891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001892F: Documentation/networking/dmfe.txt
1893F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001894
1895DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001896M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001897W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001900F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001903M: Oliver Neukum <oliver@neukum.name>
1904M: Ali Akcaagac <aliakc@web.de>
1905M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001907L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908L: http://lists.twibble.org/mailman/listinfo/dc395x/
1909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001910F: Documentation/scsi/dc395x.txt
1911F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001913DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001914M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001915L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001916W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001918F: include/linux/dccp.h
1919F: include/linux/tfrc.h
1920F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923W: http://linux-decnet.sourceforge.net
1924L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00001925S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001926F: Documentation/networking/decnet.txt
1927F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001934DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001935M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05001936L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001938F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942W: http://www.debian.org/~dz/i8k/
1943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001944F: drivers/char/i8k.c
1945F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Doug Warzecha90563ec2005-09-06 15:17:15 -07001947DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001948M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001950F: Documentation/dcdbas.txt
1951F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001952
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001953DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001954M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001955S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07001956F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001959M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961S: Maintained
1962
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001963DEVICE-MAPPER (LVM)
1964P: Alasdair Kergon
1965L: dm-devel@redhat.com
1966W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08001967Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001969F: Documentation/device-mapper/
1970F: drivers/md/dm*
1971F: include/linux/device-mapper.h
1972F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001975M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976L: Eng.Linux@digi.com
1977W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001978S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001979F: Documentation/serial/digiepca.txt
1980F: drivers/char/epca*
1981F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Randy Dunlape7839f22008-10-12 16:11:45 -07001983DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: Documentation/filesystems/dnotify.txt
1987F: fs/notify/dnotify/
1988F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1993W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1994W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1995S: Maintained
1996
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001997DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002000F: Documentation/filesystems/quota.txt
2001F: fs/quota/
2002F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Randy Dunlape7839f22008-10-12 16:11:45 -07002004DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002005M: Christine Caulfield <ccaulfie@redhat.com>
2006M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002007L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002008W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002009T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002011F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002012
Dan Williamsb3e5f262007-08-07 10:26:35 -07002013DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002016F: drivers/dma/
2017F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002018
Juerg Haefligerb8250372007-06-09 10:11:16 -04002019DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002021L: lm-sensors@lm-sensors.org
2022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: Documentation/hwmon/dme1737
2024F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002025
Martin Waitzba483d52005-06-17 13:20:59 -07002026DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002028S: Maintained
2029
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002030DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002031M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002032L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002034F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002035
Joe Perches7d2c86b2009-04-07 20:59:01 -07002036DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002038L: linux-doc@vger.kernel.org
2039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002040F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044L: blinux-list@redhat.com
2045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002046F: drivers/char/dtlk.c
2047F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002049DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002050M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002051L: linux-scsi@vger.kernel.org
2052W: http://www.adaptec.com/
2053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/scsi/dpt*
2055F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002056
Philipp Reisnerb411b362009-09-25 16:07:19 -07002057DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002058P: Philipp Reisner
2059P: Lars Ellenberg
2060M: drbd-dev@lists.linbit.com
2061L: drbd-user@lists.linbit.com
2062W: http://www.drbd.org
2063T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2064T: git git://git.drbd.org/drbd-8.3.git
2065S: Supported
2066F: drivers/block/drbd/
2067F: lib/lru_cache.c
2068F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08002072T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002074F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002075F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002076F: fs/sysfs/
2077F: include/linux/kobj*
2078F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002081M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002082L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002083T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002086F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002089M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002090L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002094DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002097F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002101L: linux-eata@i-connect.net
2102L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002104F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002107M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108L: linux-scsi@vger.kernel.org
2109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002110F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002113M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002114L: linux-eata@i-connect.net
2115L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002117F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121L: ebtables-user@lists.sourceforge.net
2122L: ebtables-devel@lists.sourceforge.net
2123W: http://ebtables.sourceforge.net/
2124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002125F: include/linux/netfilter_bridge/ebt_*.h
2126F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Michael Halcrow237fead2006-10-04 02:16:22 -07002128ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002129M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2130M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08002131L: ecryptfs-devel@lists.launchpad.net
2132W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002134F: Documentation/filesystems/ecryptfs.txt
2135F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002136
Alan Coxda9bb1d2006-01-18 17:44:13 -08002137EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002138M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002139L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002140W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002142F: Documentation/edac.txt
2143F: drivers/edac/edac_*
2144F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002145
Borislav Petkovc476c232009-05-20 20:31:58 +02002146EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Doug Thompson <dougthompson@xmission.com>
2148M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002149L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2150W: bluesmoke.sourceforge.net
2151S: Supported
2152F: drivers/edac/amd64_edac*
2153
Dave Peterson0e438e32006-03-26 01:38:55 -08002154EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Mark Gross <mark.gross@intel.com>
2156M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002157L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002158W: bluesmoke.sourceforge.net
2159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002161
2162EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002164L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002165W: bluesmoke.sourceforge.net
2166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002168
Douglas Thompson6bc78402007-07-19 01:50:12 -07002169EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002171L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002172W: bluesmoke.sourceforge.net
2173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002174F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002175
2176EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002177M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002178L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002179W: bluesmoke.sourceforge.net
2180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002181F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002182
2183EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002184M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002185L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002186W: bluesmoke.sourceforge.net
2187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002188F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002189
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002190EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002191M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002192L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002193W: bluesmoke.sourceforge.net
2194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002195F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002196
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002197EDAC-I7CORE
2198M: Mauro Carvalho Chehab <mchehab@redhat.com>
2199L: linux-edac@vger.kernel.org
2200W: bluesmoke.sourceforge.net
2201S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002202F: drivers/edac/i7core_edac.c
2203F: drivers/edac/edac_mce.c
2204F: include/linux/edac_mce.h
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002205
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002206EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Ranganathan Desikan <ravi@jetztechnologies.com>
2208M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002209L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002210W: bluesmoke.sourceforge.net
2211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002213
2214EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002216L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002217W: bluesmoke.sourceforge.net
2218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002220
Dave Peterson0e438e32006-03-26 01:38:55 -08002221EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002223L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002224W: bluesmoke.sourceforge.net
2225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002227
Eric Coopere59f8792008-03-13 12:55:46 +01002228EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002229M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01002230L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05002231L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00002232W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002234F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002235
Peter Jones85a00d92010-09-22 13:05:04 -07002236EFIFB FRAMEBUFFER DRIVER
2237L: linux-fbdev@vger.kernel.org
2238M: Peter Jones <pjones@redhat.com>
2239S: Maintained
2240F: drivers/video/efifb.c
2241
Josh Triplett0bee8d22006-07-30 03:03:58 -07002242EFS FILESYSTEM
2243W: http://aeschi.ch.eu.org/efs/
2244S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002245F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002246
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002247EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002248M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2249M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002250L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002252F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002253
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002254EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
2255M: Breno Leitao <leitao@linux.vnet.ibm.com>
2256L: netdev@vger.kernel.org
2257S: Maintained
2258F: drivers/net/ehea/
2259
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002260EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002261M: Paul Gortmaker <paul.gortmaker@windriver.com>
2262M: Matt Mackall <mpm@selenic.com>
2263M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002264L: linux-embedded@vger.kernel.org
2265S: Maintained
2266
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002267EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002268M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002269L: linux-scsi@vger.kernel.org
2270W: http://sourceforge.net/projects/lpfcxxxx
2271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002272F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002273
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002274ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002275M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002276S: Maintained
2277F: drivers/misc/cb710/
2278F: drivers/mmc/host/cb710-mmc.*
2279F: include/linux/cb710.h
2280
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002281ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2282M: Maxim Levitsky <maximlevitsky@gmail.com>
2283S: Maintained
2284F: drivers/media/IR/ene_ir.c
2285F: drivers/media/IR/ene_ir.h
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002288M: Christopher Hoover <ch@murgatroid.com>
2289M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002291F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002293EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002294M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002295S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002296T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/video/s1d13xxxfb.c
2298F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002301M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002302L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002304F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002307M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002308L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002309L: netdev@vger.kernel.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002310W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002312F: include/linux/netfilter_bridge/
2313F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002316M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
2320EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002321M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002322L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002324F: Documentation/filesystems/ext2.txt
2325F: fs/ext2/
2326F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002329M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002331M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002332L: linux-ext4@vger.kernel.org
2333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002334F: Documentation/filesystems/ext3.txt
2335F: fs/ext3/
2336F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002337
2338EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002339M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002340M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002341L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002342W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002343Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002345F: Documentation/filesystems/ext4.txt
2346F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Jean Delvaree53004e2006-01-09 23:26:14 +01002348F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002349M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002350L: lm-sensors@lm-sensors.org
2351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002352F: Documentation/hwmon/f71805f
2353F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002354
Eric Paris88b2dbd2010-08-18 12:25:50 -04002355FANOTIFY
2356M: Eric Paris <eparis@redhat.com>
2357S: Maintained
2358F: fs/notify/fanotify/
2359F: include/linux/fanotify.h
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363W: http://www.farsite.co.uk/
2364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002365F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Akinobu Mitac5408b82007-04-23 14:41:20 -07002367FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002368M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002370F: Documentation/fault-injection/
2371F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002372
Robert Lovecae727d2010-02-16 12:16:00 -08002373FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2374M: Robert Love <robert.w.love@intel.com>
2375L: devel@open-fcoe.org
2376W: www.Open-FCoE.org
2377S: Supported
2378F: drivers/scsi/libfc/
2379F: drivers/scsi/fcoe/
2380F: include/scsi/fc/
2381F: include/scsi/libfc.h
2382F: include/scsi/libfcoe.h
2383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002384FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002385M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002386L: linux-fsdevel@vger.kernel.org
2387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002388F: include/linux/fcntl.h
2389F: include/linux/fs.h
2390F: fs/fcntl.c
2391F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002392
2393FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002395L: linux-fsdevel@vger.kernel.org
2396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002398
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002399FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002400M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002401L: lm-sensors@lm-sensors.org
2402S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002403F: drivers/hwmon/f75375s.c
2404F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002405
Joe Perches7d2c86b2009-04-07 20:59:01 -07002406FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002407M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002408L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002409W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002410T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: drivers/firewire/
2413F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002414F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002415
2416FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002417S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002418F: Documentation/firmware_class/
2419F: drivers/base/firmware*.c
2420F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002421
2422FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002423M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002424W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002426F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002427
2428FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002429M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002430L: netdev@vger.kernel.org
2431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002432F: drivers/net/wan/dlci.c
2433F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435FRAMEBUFFER LAYER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002436L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002438S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002439F: Documentation/fb/
2440F: drivers/video/fb*
2441F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Zhang Wei173acc72008-03-01 07:42:48 -07002443FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Li Yang <leoli@freescale.com>
2445M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002446L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002449
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002450FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002452L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002453L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002456
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002457FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002458M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002459L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002460L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002462F: arch/arm/plat-mxc/include/mach/imxfb.h
2463F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002464
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002465FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002466M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2467M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002468L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002469L: netdev@vger.kernel.org
2470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002471F: drivers/net/fs_enet/
2472F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002473
Timur Tabid9e9d822008-04-24 08:45:26 +10002474FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002475M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002476L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002478F: arch/powerpc/sysdev/qe_lib/
2479F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002480
Joe Perchesb55ef9292009-10-26 16:49:46 -07002481FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002483L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002484L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002485S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002486F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002487
Li Yangbeaf53b2007-05-25 13:54:02 +08002488FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002490L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002491L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002493F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002494
Timur Tabid9e9d822008-04-24 08:45:26 +10002495FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002496M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002497L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002499F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002500
2501FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002502M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002503L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002504L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002505S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002506F: sound/soc/fsl/fsl*
2507F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002510M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002513F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Pavel Machek71038f52009-01-15 13:51:02 -08002515FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Pavel Machek <pavel@ucw.cz>
2517M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002518L: linux-pm@lists.linux-foundation.org
2519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002520F: Documentation/power/freezing-of-tasks.txt
2521F: include/linux/freezer.h
2522F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002523
David Howellsa5432f52009-04-20 15:46:45 +01002524FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002526L: linux-cachefs@redhat.com
2527S: Supported
2528F: Documentation/filesystems/caching/
2529F: fs/fscache/
2530F: include/linux/fscache*.h
2531
David Howells5ab7ffe2007-04-10 15:10:45 +01002532FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Jonathan Woithe20b93732008-06-11 10:14:56 +09302537FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002538M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002539L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002541F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302542
Miklos Szeredi04578f12005-09-09 13:10:22 -07002543FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002544M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002545L: fuse-devel@lists.sourceforge.net
2546W: http://fuse.sourceforge.net/
2547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002548F: fs/fuse/
2549F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002552M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002554S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002555F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002558M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559L: linux-scsi@vger.kernel.org
2560W: http://www.icp-vortex.com/
2561S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002562F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002564GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07002565M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002567F: drivers/i2c/busses/i2c-gpio.c
2568F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002569
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002570GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002571M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: drivers/net/wan/c101.c
2575F: drivers/net/wan/hd6457*
2576F: drivers/net/wan/hdlc*
2577F: drivers/net/wan/n2.c
2578F: drivers/net/wan/pc300too.c
2579F: drivers/net/wan/pci200syn.c
2580F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002582GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002583M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002584L: linux-arch@vger.kernel.org
2585T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2586S: Maintained
2587F: include/asm-generic
2588
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002589GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002590M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002591L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002592S: Supported
2593F: drivers/uio/uio_pci_generic.c
2594
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002595GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002596M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002597L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002598W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002599T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2600T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002602F: Documentation/filesystems/gfs2*.txt
2603F: fs/gfs2/
2604F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002605
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002606GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002607M: Hansjoerg Lipp <hjlipp@web.de>
2608M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002609L: gigaset307x-common@lists.sourceforge.net
2610W: http://gigaset307x.sourceforge.net/
2611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: Documentation/isdn/README.gigaset
2613F: drivers/isdn/gigaset/
2614F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002615
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002616GRETH 10/100/1G Ethernet MAC device driver
2617M: Kristoffer Glembo <kristoffer@gaisler.com>
2618L: netdev@vger.kernel.org
2619S: Maintained
2620F: drivers/net/greth*
2621
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002622HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002623M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002624L: lm-sensors@lm-sensors.org
2625W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002627F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002628
Andi Kleen7bc98b92009-12-16 12:19:57 +01002629HWPOISON MEMORY FAILURE HANDLING
2630M: Andi Kleen <andi@firstfloor.org>
2631L: linux-mm@kvack.org
2632L: linux-kernel@vger.kernel.org
2633T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2634S: Maintained
2635F: mm/memory-failure.c
2636F: mm/hwpoison-inject.c
2637
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002638HYPERVISOR VIRTUAL CONSOLE DRIVER
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002639L: linuxppc-dev@lists.ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002640S: Odd Fixes
2641F: drivers/char/hvc_*
2642
Konrad Rzeszutek Wilkc4d14092010-02-26 03:53:00 +00002643iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
2644M: Peter Jones <pjones@redhat.com>
2645M: Konrad Rzeszutek Wilk <konrad@kernel.org>
2646S: Maintained
2647F: drivers/firmware/iscsi_ibft*
2648
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002649GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002650M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002651L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002652T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002655
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002656GSPCA GL860 SUBDRIVER
2657M: Olivier Lorin <o.lorin@laposte.net>
2658L: linux-media@vger.kernel.org
2659T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2660S: Maintained
2661F: drivers/media/video/gspca/gl860/
2662
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002663GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002665L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002666T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002669
2670GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002671M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002672L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002673T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002675F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002676
Brian Johnson261982f2009-07-19 15:58:56 -03002677GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002678M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002679L: linux-media@vger.kernel.org
2680T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2681S: Maintained
2682F: drivers/media/video/gspca/sn9c20x.c
2683
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002684GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002685M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002686L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002687T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002689F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002690
2691GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002692M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002693W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002694L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002695T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002697F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002698
Jean Delvare5b543962005-08-15 19:51:02 +02002699HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02002700M: Jean Delvare <khali@linux-fr.org>
2701M: Guenter Roeck <guenter.roeck@ericsson.com>
Jean Delvare5b543962005-08-15 19:51:02 +02002702L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002703W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02002704T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07002705T: quilt kernel.org/pub/linux/kernel/people/groeck/linux-staging/
2706T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02002707S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01002708F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002710F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002711
Michael Buesch844dd052006-06-26 00:24:59 -07002712HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002713M: Matt Mackall <mpm@selenic.com>
2714M: Herbert Xu <herbert@gondor.apana.org.au>
2715S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002716F: Documentation/hw_random.txt
2717F: drivers/char/hw_random/
2718F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002721M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002722L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002724F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002726HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002727M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002728L: iss_storagedev@hp.com
2729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: Documentation/blockdev/cpqarray.txt
2731F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002732
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002733HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
2734M: Stephen M. Cameron <scameron@beardog.cce.hp.com>
2735L: iss_storagedev@hp.com
2736S: Supported
2737F: Documentation/scsi/hpsa.txt
2738F: drivers/scsi/hpsa*.[ch]
2739F: include/linux/cciss*.h
2740
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002741HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002742M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002743L: iss_storagedev@hp.com
2744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002745F: Documentation/blockdev/cciss.txt
2746F: drivers/block/cciss*
2747F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002750M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002752F: Documentation/filesystems/hfs.txt
2753F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
2755HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002756M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757L: linux-nvidia@lists.surfsouth.com
2758W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002760F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002762HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Pavel Machek <pavel@ucw.cz>
2764M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002765L: linux-pm@lists.linux-foundation.org
2766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002767F: arch/x86/power/
2768F: drivers/base/power/
2769F: kernel/power/
2770F: include/linux/suspend.h
2771F: include/linux/freezer.h
2772F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002773F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002774
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002775HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002776M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002777L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002778T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002780F: drivers/hid/
2781F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002782
Ingo Molnar38bed542007-02-22 09:09:34 +01002783HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002786F: Documentation/timers/
2787F: kernel/hrtimer.c
2788F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792L: linux-hams@vger.kernel.org
2793W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002795F: drivers/net/hamradio/dmascc.c
2796F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002798HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002799M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002800W: http://www.highpoint-tech.com
2801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002802F: Documentation/scsi/hptiop.txt
2803F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002806M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807L: linux-hippi@sunsite.dk
2808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002809F: include/linux/hippidevice.h
2810F: include/linux/if_hippi.h
2811F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Jouni Malinenff1d2762005-05-12 22:54:16 -04002813HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002814M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002815L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002816L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002817W: http://hostap.epitest.fi/
2818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002820
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002821HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002822M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -05002823L: platform-driver-x86@vger.kernel.org
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002824S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002825F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002826
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002827HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002831
Joe Perches7d2c86b2009-04-07 20:59:01 -07002832HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002833M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002835F: Documentation/timers/hpet.txt
2836F: drivers/char/hpet.c
2837F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002838
Jiri Kosinae07b5d72010-03-18 10:59:57 +01002839HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07002840M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002842F: arch/x86/kernel/hpet.c
2843F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Joe Perches7d2c86b2009-04-07 20:59:01 -07002851HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002853W: http://www.pharscape.org
2854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002856
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002857HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002859L: linux-input@vger.kernel.org
2860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002861F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002866F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002868I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002870L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002873
Jean Delvare5b543962005-08-15 19:51:02 +02002874I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002875M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2876M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002877L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002878W: http://i2c.wiki.kernel.org/
2879T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01002880T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002882F: Documentation/i2c/
2883F: drivers/i2c/
2884F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01002885F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Till Harbaume8c76ee2007-05-01 23:26:35 +02002887I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002888M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002889L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002890W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002895M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002897F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002900M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002901T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902S: Maintained
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002905M: Tony Luck <tony.luck@intel.com>
2906M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907L: linux-ia64@vger.kernel.org
2908W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002909T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002914M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915W: http://www.uni-mainz.de/~langm000/linux.html
2916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002917F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002920M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Santiago Leon9d348af2010-09-03 18:29:53 +00002924IBM Power Virtual Ethernet Device Driver
2925M: Santiago Leon <santil@linux.vnet.ibm.com>
2926L: netdev@vger.kernel.org
2927S: Supported
2928F: drivers/net/ibmveth.*
2929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930IBM ServeRAID RAID DRIVER
2931P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002932M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002935F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002937IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002940Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07002941T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002943F: Documentation/ide/
2944F: drivers/ide/
2945F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002947IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002949L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002951F: Documentation/cdrom/ide-cd
2952F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Andy Henroid27471fd2008-10-09 11:45:22 -07002954IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002956L: linux-pm@lists.linux-foundation.org
2957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002958F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002959
Joe Perches7d2c86b2009-04-07 20:59:01 -07002960IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002961M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002963W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002964T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Stefan Richter958a29c2009-12-26 01:36:12 +01002965S: Obsolete
Stefan Richter544df552009-10-03 10:17:29 +02002966F: Documentation/debugging-via-ohci1394.txt
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Sergey Lapin02cf2282009-06-08 12:18:50 +00002969IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2971M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002972L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002973W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002974T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002975S: Maintained
2976F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002977F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002978
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002979INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002980M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002982F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002985L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09002986S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002987F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Roland Dreier <rolandd@cisco.com>
2991M: Sean Hefty <sean.hefty@intel.com>
2992M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002993L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994W: http://www.openib.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002995Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07002996T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002998F: Documentation/infiniband/
2999F: drivers/infiniband/
3000F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Robert Lovec9f04f52005-07-15 12:21:07 -04003002INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: John McCutchan <john@johnmccutchan.com>
3004M: Robert Love <rlove@rlove.org>
3005M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003007F: Documentation/filesystems/inotify.txt
3008F: fs/notify/inotify/
3009F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003010
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003011INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003012M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3013M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003014L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003015Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003016T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003018F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003019
Henrik Rydberg3267a872010-06-24 19:10:40 -07003020INPUT MULTITOUCH (MT) PROTOCOL
3021M: Henrik Rydberg <rydberg@euromail.se>
3022L: linux-input@vger.kernel.org
3023S: Maintained
3024F: Documentation/input/multi-touch-protocol.txt
3025K: \b(ABS|SYN)_MT_
3026
Len Brown26717172010-03-08 14:07:30 -05003027INTEL IDLE DRIVER
3028M: Len Brown <lenb@kernel.org>
3029L: linux-pm@lists.linux-foundation.org
3030T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3031S: Supported
3032F: drivers/idle/intel_idle.c
3033
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003034INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003035M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003036L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: Documentation/fb/intelfb.txt
3039F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003042M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003043L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003045F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303047INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003048M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003049L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303050W: http://www.lesswatts.org/projects/acpi/
3051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003052F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003055M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003057F: arch/x86/kernel/microcode_core.c
3058F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003060INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003061M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003063F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003064
David Woodhouse6c8909b2008-10-18 16:12:17 +01003065INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003066M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003067L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003068T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003069S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003070F: drivers/pci/intel-iommu.c
3071F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003072
Dan Williamsb3e5f262007-08-07 10:26:35 -07003073INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003074M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003076F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003077
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003078INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3082F: arch/arm/mach-ixp4xx/include/mach/npe.h
3083F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3084F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3085F: drivers/net/arm/ixp4xx_eth.c
3086F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003087
Michael Buesch844dd052006-06-26 00:24:59 -07003088INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003089M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003092
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003093INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003095L: netdev@vger.kernel.org
3096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003098
Jeff Kirsher0d164402010-10-05 01:15:17 +00003099INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003100M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3101M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3102M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003103M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3104M: Don Skidmore <donald.c.skidmore@intel.com>
3105M: Greg Rose <gregory.v.rose@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003106M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003107M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003109L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003110W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003112F: Documentation/networking/e100.txt
3113F: Documentation/networking/e1000.txt
3114F: Documentation/networking/e1000e.txt
3115F: Documentation/networking/igb.txt
3116F: Documentation/networking/igbvf.txt
3117F: Documentation/networking/ixgb.txt
3118F: Documentation/networking/ixgbe.txt
3119F: Documentation/networking/ixgbevf.txt
Joe Perches679655d2009-04-07 20:44:32 -07003120F: drivers/net/e100.c
3121F: drivers/net/e1000/
3122F: drivers/net/e1000e/
3123F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003124F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07003125F: drivers/net/ixgb/
3126F: drivers/net/ixgbe/
Jeff Kirsher0d164402010-10-05 01:15:17 +00003127F: drivers/net/ixgbevf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
James Ketrenos826d2ab2005-11-07 18:56:59 -06003129INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003130L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003131S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003132F: Documentation/networking/README.ipw2100
3133F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003134
3135INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003136L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003137S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003138F: Documentation/networking/README.ipw2200
3139F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003140
Shane Wang4bd96a72010-03-10 14:36:10 +08003141INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3142M: Joseph Cihula <joseph.cihula@intel.com>
3143M: Shane Wang <shane.wang@intel.com>
3144L: tboot-devel@lists.sourceforge.net
3145W: http://tboot.sourceforge.net
3146T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3147S: Supported
3148F: Documentation/intel_txt.txt
3149F: include/linux/tboot.h
3150F: arch/x86/kernel/tboot.c
3151
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003152INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003153M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003154M: linux-wimax@intel.com
3155L: wimax@linuxwimax.org
3156S: Supported
3157W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003158F: Documentation/wimax/README.i2400m
3159F: drivers/net/wimax/i2400m/
3160F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003161
Zhu Yib481de92007-09-25 17:54:57 -07003162INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07003163M: Reinette Chatre <reinette.chatre@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003164M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003165M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003166L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003167W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003168T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003170F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003171
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003172INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3173M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003174M: Intel Linux Wireless <ilw@linux.intel.com>
3175L: linux-wireless@vger.kernel.org
3176S: Supported
3177W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3178F: drivers/net/wireless/iwmc3200wifi/
3179
Ralf Baechlecb109a02007-08-30 23:56:30 -07003180IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182L: linux-mips@linux-mips.org
3183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003184F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Ralf Baechlecb109a02007-08-30 23:56:30 -07003186IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003187M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003188L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003190F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003191
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003192IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003193M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003195F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Francois Romieu1202d6f2007-09-17 17:13:55 -07003197IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003198M: Francois Romieu <romieu@fr.zoreil.com>
3199M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003200L: netdev@vger.kernel.org
3201S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003202F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003203
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003204IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003206L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07003207T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003209F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003210
Corey Minyard4409ebe2006-04-20 02:43:12 -07003211IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003213L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003214W: http://openipmi.sourceforge.net/
3215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003216F: Documentation/IPMI.txt
3217F: drivers/char/ipmi/
3218F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003219
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003220IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003221M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003222L: linux-scsi@vger.kernel.org
3223W: http://www.adaptec.com/
3224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003225F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226
3227IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Wensong Zhang <wensong@linux-vs.org>
3229M: Simon Horman <horms@verge.net.au>
3230M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003231L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003232L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003234F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003235F: include/net/ip_vs.h
3236F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003237F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Randy Dunlape7839f22008-10-12 16:11:45 -07003239IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Jiri Kosina <jkosina@suse.cz>
3241M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003242S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003243T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003244F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003245
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003246IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003247M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003248L: netdev@vger.kernel.org
3249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003250F: include/linux/ipx.h
3251F: include/net/ipx.h
3252F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003255M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003256L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003258S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003259T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003260F: Documentation/networking/irda.txt
3261F: drivers/net/irda/
3262F: include/net/irda/
3263F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003265ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003266M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003268F: Documentation/isapnp.txt
3269F: drivers/pnp/isapnp/
3270F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003271
Mike Christie14816b1e2007-11-28 16:22:06 -08003272ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003273M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003274L: open-iscsi@googlegroups.com
3275W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003276T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003278F: drivers/scsi/*iscsi*
3279F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003283L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003284L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003286T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003288F: Documentation/isdn/
3289F: drivers/isdn/
3290F: include/linux/isdn.h
3291F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
3293ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003295L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296W: http://www.melware.de
3297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003298F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Jean Delvared6248702010-03-05 22:17:20 +01003300IT87 HARDWARE MONITORING DRIVER
3301M: Jean Delvare <khali@linux-fr.org>
3302L: lm-sensors@lm-sensors.org
3303S: Maintained
3304F: Documentation/hwmon/it87
3305F: drivers/hwmon/it87.c
3306
Hans Verkuil91821ff2007-12-02 09:35:33 -03003307IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003308M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003309L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003310L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003311T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003312W: http://www.ivtvdriver.org
3313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: Documentation/video4linux/*.ivtv
3315F: drivers/media/video/ivtv/
3316F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003317
Guenter Roeck4453d732010-08-09 17:21:08 -07003318JC42.4 TEMPERATURE SENSOR DRIVER
3319M: Guenter Roeck <linux@roeck-us.net>
3320L: lm-sensors@lm-sensors.org
3321S: Maintained
3322F: drivers/hwmon/jc42.c
3323F: Documentation/hwmon/jc42
3324
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003325JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003326M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003327L: jfs-discussion@lists.sourceforge.net
3328W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003329T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003331F: Documentation/filesystems/jfs.txt
3332F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003333
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003334JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003336L: netdev@vger.kernel.org
3337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003338F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003341M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003342L: linux-mtd@lists.infradead.org
3343W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003345F: fs/jffs2/
3346F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Josh Triplettde456d32006-07-30 03:04:00 -07003348JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003349M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003350M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003351L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003353F: fs/jbd*/
3354F: include/linux/ext*jbd*.h
3355F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003356
Rudolf Marek4660cb32006-10-08 22:01:26 +02003357K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003358M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003359L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003361F: Documentation/hwmon/k8temp
3362F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
3364KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07003365M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003366L: linux-kbuild@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003367Q: http://patchwork.kernel.org/project/linux-kbuild/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003369F: Documentation/kbuild/kconfig-language.txt
3370F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Vivek Goyalea6c2082006-05-20 14:59:55 -07003372KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003373M: Vivek Goyal <vgoyal@redhat.com>
3374M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003375L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003376W: http://lse.sourceforge.net/kdump/
3377S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003378F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003381M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382L: autofs@linux.kernel.org
3383S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003384F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
3386KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003387M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388L: autofs@linux.kernel.org
3389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003390F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Michal Marek70fb7ba2010-01-29 14:22:43 +01003392KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003393M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003394T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3395T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003396L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003398F: Documentation/kbuild/
3399F: Makefile
3400F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003401F: scripts/basic/
3402F: scripts/mk*
3403F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003406L: kernel-janitors@vger.kernel.org
Joe Perchesee709b02009-10-26 16:49:43 -07003407W: http://janitor.kernelnewbies.org/
3408S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003410KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: "J. Bruce Fields" <bfields@fieldses.org>
3412M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003413L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003415S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003416F: fs/nfsd/
3417F: include/linux/nfsd/
3418F: fs/lockd/
3419F: fs/nfs_common/
3420F: net/sunrpc/
3421F: include/linux/lockd/
3422F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Avi Kivity426d62e2006-12-13 00:34:03 -08003424KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003426M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003427L: kvm@vger.kernel.org
3428W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003430F: Documentation/*/kvm.txt
3431F: arch/*/kvm/
3432F: arch/*/include/asm/kvm*
3433F: include/linux/kvm*
3434F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003435
Joerg Roedelad8003d2008-09-10 20:01:07 +02003436KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003438L: kvm@vger.kernel.org
3439W: http://kvm.qumranet.com
3440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003441F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003442F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003443
Hollis Blanchard513014b2008-04-16 23:28:08 -05003444KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003445M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003446L: kvm-ppc@vger.kernel.org
3447W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003449F: arch/powerpc/include/asm/kvm*
3450F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003451
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003452KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003454L: kvm-ia64@vger.kernel.org
3455W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003457F: Documentation/ia64/kvm.txt
3458F: arch/ia64/include/asm/kvm*
3459F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003460
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003461KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: Carsten Otte <cotte@de.ibm.com>
3463M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003464M: linux390@de.ibm.com
3465L: linux-s390@vger.kernel.org
3466W: http://www.ibm.com/developerworks/linux/linux390/
3467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003468F: Documentation/s390/kvm.txt
3469F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003470F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003471F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003472
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003473KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07003475W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07003476L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003478F: include/linux/kexec.h
3479F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003480
David Howellse9714612010-03-29 23:42:09 +01003481KEYS/KEYRINGS:
3482M: David Howells <dhowells@redhat.com>
3483L: keyrings@linux-nfs.org
3484S: Maintained
3485F: Documentation/keys.txt
3486F: include/linux/key.h
3487F: include/linux/key-type.h
3488F: include/keys/
3489F: security/keys/
3490
Jason Wessel5b778da2010-05-20 21:04:28 -05003491KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003492M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003493W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003494L: kgdb-bugreport@lists.sourceforge.net
3495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/DocBook/kgdb.tmpl
3497F: drivers/misc/kgdbts.c
3498F: drivers/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003499F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003500F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003501F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003502
Pekka Enberg456db8c2008-04-28 22:47:29 +03003503KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003504M: Vegard Nossum <vegardno@ifi.uio.no>
Joe Perches410d7a92009-11-17 14:06:15 -08003505M: Pekka Enberg <penberg@cs.helsinki.fi>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003506S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003507F: Documentation/kmemcheck.txt
3508F: arch/x86/include/asm/kmemcheck.h
3509F: arch/x86/mm/kmemcheck/
3510F: include/linux/kmemcheck.h
3511F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003512
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003513KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003514M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003515S: Maintained
3516F: Documentation/kmemleak.txt
3517F: include/linux/kmemleak.h
3518F: mm/kmemleak.c
3519F: mm/kmemleak-test.c
3520
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003521KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003522M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3523M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3524M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003525M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003527F: Documentation/kprobes.txt
3528F: include/linux/kprobes.h
3529F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003530
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003531KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003532M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003533W: http://miguelojeda.es/auxdisplay.htm
3534W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003536F: Documentation/auxdisplay/ks0108
3537F: drivers/auxdisplay/ks0108.c
3538F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003542S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003543F: Documentation/networking/lapb-module.txt
3544F: include/*/lapb.h
3545F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
3547LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549L: linux-scsi@vger.kernel.org
3550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003551F: Documentation/scsi/53c700.txt
3552F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Richard Purdie263de9b2006-05-15 09:44:16 -07003554LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003555M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: drivers/leds/
3558F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562L: legousb-devel@lists.sourceforge.net
3563W: http://legousb.sourceforge.net/
3564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Rusty Russell568a17f2007-10-25 14:12:24 +10003567LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003568M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003569L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10003570W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06003571S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003572F: Documentation/lguest/
3573F: arch/x86/lguest/
3574F: drivers/lguest/
3575F: include/linux/lguest*.h
3576F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580W: http://www.ibm.com/linux/ltc/projects/ppc
3581S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003582F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003584LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003585M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3586M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003588L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003589Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003590T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003592F: Documentation/powerpc/
3593F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
3595LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003596M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003598L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003600F: arch/powerpc/platforms/powermac/
3601F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
Grant Likely77a76362008-07-12 12:11:43 -06003603LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003604M: Grant Likely <grant.likely@secretlab.ca>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003605L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003606T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003608F: arch/powerpc/platforms/512x/
3609F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003612M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3613M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003615L: linuxppc-dev@lists.ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003616T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003618F: arch/powerpc/platforms/40x/
3619F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
Grant Likely260c02a2007-10-02 12:15:34 +10003621LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003622M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003623W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003624L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003625T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003627F: arch/powerpc/*/*virtex*
3628F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Tom Rinie93adf12005-07-26 12:49:53 -07003630LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Vitaly Bordug <vitb@kernel.crashing.org>
3632M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003633W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003634L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003635S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07003636F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003640W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003641L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003642S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003643F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Olof Johanssonab06ff32006-09-06 14:44:54 -05003645LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003646M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003647L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00003648S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003649F: arch/powerpc/platforms/pasemi/
3650F: drivers/*/*pasemi*
3651F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003654M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003655L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003656T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657S: Supported
3658
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003659LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003660M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003662F: include/linux/llc.h
3663F: include/net/llc*
3664F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003665
Pavel Machek455fbdd2008-11-12 13:27:02 -08003666LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003667M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: Documentation/hwmon/lis3lv02d
3670F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003671
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003672LM73 HARDWARE MONITOR DRIVER
3673M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3674L: lm-sensors@lm-sensors.org
3675S: Maintained
3676F: drivers/hwmon/lm73.c
3677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003679M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003680L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003682F: Documentation/hwmon/lm83
3683F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
3685LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003687L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: Documentation/hwmon/lm90
3690F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003692LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003693M: Peter Zijlstra <peterz@infradead.org>
3694M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003695T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003697F: Documentation/lockdep*.txt
3698F: Documentation/lockstat.txt
3699F: include/linux/lockdep.h
3700F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003701
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003702LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003704L: linux-ntfs-dev@lists.sourceforge.net
3705W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003707F: Documentation/ldm.txt
3708F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
Joern Engelef6ada32009-11-20 22:17:12 +01003710LogFS
3711M: Joern Engel <joern@logfs.org>
3712L: logfs@logfs.org
3713W: logfs.org
3714S: Maintained
3715F: fs/logfs/
3716
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003717LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003718M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003719M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003720L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003721L: linux-scsi@vger.kernel.org
3722W: http://www.lsilogic.com/support
3723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003724F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003727M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728L: linux-scsi@vger.kernel.org
3729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003730F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Mike Frysinger81365c32008-10-29 14:01:12 -07003732LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08003733M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
3734M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07003735M: Mike Frysinger <vapier@gentoo.org>
3736M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07003737L: ltp-list@lists.sourceforge.net (subscribers-only)
3738W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07003739T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07003740S: Maintained
3741
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003742M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003743M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003744L: linux-m32r@ml.linux-m32r.org
3745L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3746W: http://www.linux-m32r.org/
3747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003748F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003751M: Geert Uytterhoeven <geert@linux-m68k.org>
3752M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753L: linux-m68k@lists.linux-m68k.org
3754W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003755T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003758F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003761M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003763L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003765F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
3767M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769W: http://www.tazenda.demon.co.uk/phil/linux-hp
3770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Jiri Benc64a327a2007-05-05 11:47:08 -07003773MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003774M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003775L: linux-wireless@vger.kernel.org
3776W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003777T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003779F: Documentation/networking/mac80211-injection.txt
3780F: include/net/mac80211.h
3781F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003782
Stefano Brivio1036d862007-12-23 04:46:27 +01003783MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Stefano Brivio <stefano.brivio@polimi.it>
3785M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003786L: linux-wireless@vger.kernel.org
3787W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003788T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003790F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003791
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003792MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003794L: netdev@vger.kernel.org
3795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003796F: drivers/net/macvlan.c
3797F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003798
Michael Kerriskfaf16682005-07-31 22:34:47 -07003799MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003801W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003802L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003803S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003804
Stefano Brivio74cda162007-11-19 20:27:46 +01003805MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003806M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003807L: libertas-dev@lists.infradead.org
3808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003810
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003811MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003812M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003813L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: drivers/net/mv643xx_eth.*
3816F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003818MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01003819M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003820L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02003821S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003822F: drivers/net/wireless/mwl8k.c
3823
Pierre Ossman2a695672009-03-16 19:52:26 +01003824MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003825M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04003826S: Odd Fixes
3827F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01003828
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003829MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Mirko Lindner <mlindner@syskonnect.de>
3831M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003832W: http://www.syskonnect.com
3833S: Supported
3834
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003836L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07003837S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003838F: drivers/video/matrox/matroxfb_*
3839F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003841MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003842M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003843L: lm-sensors@lm-sensors.org
3844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003845F: Documentation/hwmon/max6650
3846F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003847
Joe Perches127c49a2009-04-08 08:34:04 -07003848MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003849M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003850P: LinuxTV.org Project
3851L: linux-media@vger.kernel.org
3852W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003853Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07003854T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3855S: Maintained
3856F: Documentation/dvb/
3857F: Documentation/video4linux/
3858F: drivers/media/
3859F: include/media/
3860F: include/linux/dvb/
3861F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003862
3863MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003865L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003866W: http://megaraid.lsilogic.com
3867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003868F: Documentation/scsi/megaraid.txt
3869F: drivers/scsi/megaraid.*
3870F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003871
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003872MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874W: http://www.linux-mm.org
3875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003876F: include/linux/mm.h
3877F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003878
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003879MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Balbir Singh <balbir@linux.vnet.ibm.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08003881M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07003882M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003883L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003890W: http://www.linux-mtd.infradead.org/
3891Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08003892T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003894F: drivers/mtd/
3895F: include/linux/mtd/
3896F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Michal Simekc6375b02009-03-27 14:25:52 +01003898MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003900L: microblaze-uclinux@itee.uq.edu.au
3901W: http://www.monstr.eu/fdt/
3902T: git git://git.monstr.eu/linux-2.6-microblaze.git
3903S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003904F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
3906MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003907M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
3911MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003912M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003913W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003915T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003917F: Documentation/mips/
3918F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
3920MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003921M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003923F: Documentation/ia64/mca.txt
3924F: Documentation/mca.txt
3925F: drivers/mca/
3926F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003929M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003931F: include/linux/module.h
3932F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
3934MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003935M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936W: http://popies.net/meye/
3937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003938F: Documentation/video4linux/meye.txt
3939F: drivers/media/video/meye.*
3940F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Pavel Pisac58ff042007-05-16 01:10:41 +02003942MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003944L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003946F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003947
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: drivers/input/mouse/
3952F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Jiri Slabyb9705b62008-04-30 00:53:48 -07003954MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003957F: Documentation/serial/moxa-smartio
3958F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003959
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003960MSI LAPTOP SUPPORT
Lee, Chun-Yi58e226c2010-09-10 08:04:19 +00003961M: Lee, Chun-Yi <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003962L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003965
Anisse Astier0f1006b2009-12-17 11:28:49 +01003966MSI WMI SUPPORT
3967M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05003968L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01003969S: Supported
3970F: drivers/platform/x86/msi-wmi.c
3971
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003972MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003974T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003977
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003978MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04003979M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07003980L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04003981T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
3982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003983F: drivers/mmc/
3984F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003985
David Brownell15a05802007-08-08 09:12:54 -07003986MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003987M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003988S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003989F: drivers/mmc/host/mmc_spi.c
3990F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003991
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003993M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003995F: Documentation/sound/oss/MultiSound
3996F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Jiri Slabyd7354102006-12-08 02:38:35 -08003998MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02003999S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004000F: drivers/char/isicom.c
4001F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004002
Felipe Balbi550a7372008-07-24 12:27:36 +03004003MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004004M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004005L: linux-usb@vger.kernel.org
Felipe Balbi8a700f32009-12-15 11:08:45 +02004006T: git git://gitorious.org/usb/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004008F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004009
Brice Goglin2d3cf582008-05-17 12:45:36 +02004010MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Andrew Gallatin <gallatin@myri.com>
4012M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004013L: netdev@vger.kernel.org
4014W: http://www.myri.com/scs/download-Myri10GE.html
4015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004016F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004017
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004024M: Petr Vandrovec <petr@vandrovec.name>
4025S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004026F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
4028NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004029M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030L: linux-scsi@vger.kernel.org
4031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004032F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004034NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004035M: Faisal Latif <faisal.latif@intel.com>
4036M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004037L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004038W: http://www.neteffect.com
4039S: Supported
4040F: drivers/infiniband/hw/nes/
4041
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004042NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004043M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07004044L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004046F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004047
Jon Masonb2f5a052010-07-15 08:47:27 +00004048NETERION 10GbE DRIVERS (s2io/vxge)
4049M: Ramkrishna Vepa <ramkrishna.vepa@exar.com>
4050M: Sivakumar Subramani <sivakumar.subramani@exar.com>
4051M: Sreenivasa Honnur <sreenivasa.honnur@exar.com>
4052M: Jon Mason <jon.mason@exar.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07004053L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004054W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4055W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004056S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004057F: Documentation/networking/s2io.txt
4058F: drivers/net/s2io*
Jon Masonb2f5a052010-07-15 08:47:27 +00004059F: Documentation/networking/vxge.txt
4060F: drivers/net/vxge/
Jiri Slaby4a584482007-08-30 23:56:39 -07004061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062NETFILTER/IPTABLES/IPCHAINS
4063P: Rusty Russell
4064P: Marc Boucher
4065P: James Morris
4066P: Harald Welte
4067P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004069L: netfilter-devel@vger.kernel.org
4070L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004071L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072W: http://www.netfilter.org/
4073W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08004074T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004076F: include/linux/netfilter*
4077F: include/linux/netfilter/
4078F: include/net/netfilter/
4079F: net/*/netfilter.c
4080F: net/*/netfilter/
4081F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Paul Moore4cc67732006-09-25 15:57:13 -07004083NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07004084M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004085W: http://netlabel.sf.net
4086L: netdev@vger.kernel.org
4087S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004088F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004089F: include/net/netlabel.h
4090F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004093M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004095W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004097F: include/linux/netrom.h
4098F: include/net/netrom.h
4099F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004101NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004102M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004104F: Documentation/blockdev/nbd.txt
4105F: drivers/block/nbd.c
4106F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Neil Horman6e436502009-10-05 03:56:55 +00004108NETWORK DROP MONITOR
4109M: Neil Horman <nhorman@tuxdriver.com>
4110L: netdev@vger.kernel.org
4111S: Maintained
4112W: https://fedorahosted.org/dropwatch/
4113F: net/core/drop_monitor.c
4114
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004116M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004117L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004118W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004119W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004120T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08004121T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004123F: net/
4124F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004125F: include/linux/in.h
4126F: include/linux/net.h
4127F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
4129NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: "David S. Miller" <davem@davemloft.net>
4131M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
4132M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
4133M: James Morris <jmorris@namei.org>
4134M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4135M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004136L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004137T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004139F: net/ipv4/
4140F: net/ipv6/
4141F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
James Morris10e2ff12007-08-25 14:41:28 -07004143NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07004144M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07004145L: netdev@vger.kernel.org
4146S: Maintained
4147
John W. Linville29f8f632006-01-18 14:52:48 -08004148NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004150L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004151Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004152T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004153S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004154F: net/mac80211/
4155F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004156F: net/wireless/
4157F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004158F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004159F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004160F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004161
Joe Perches788873a2009-04-16 09:38:45 +00004162NETWORKING DRIVERS
4163L: netdev@vger.kernel.org
4164W: http://www.linuxfoundation.org/en/Net
4165T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004166T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004167S: Odd Fixes
4168F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004169F: include/linux/if_*
4170F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004171
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004172NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004173M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004174L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004175W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004178
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004179NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004181L: linux-nfs@vger.kernel.org
4182W: http://client.linux-nfs.org
4183T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004185F: fs/lockd/
4186F: fs/nfs/
4187F: fs/nfs_common/
4188F: net/sunrpc/
4189F: include/linux/lockd/
4190F: include/linux/nfs*
4191F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
4193NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004194M: Jan-Pascal van Best <janpascal@vanbest.org>
4195M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004196L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004200NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004201M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004202L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004203W: http://www.nilfs.org/en/
4204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004205F: Documentation/filesystems/nilfs2.txt
4206F: fs/nilfs2/
4207F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004208
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004210M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004213F: Documentation/scsi/NinjaSCSI.txt
4214F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
4216NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: GOTO Masanori <gotom@debian.or.jp>
4218M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004221F: Documentation/scsi/NinjaSCSI.txt
4222F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004225M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004227W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004228T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004230F: Documentation/filesystems/ntfs.txt
4231F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004233NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004234M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004235L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004237F: drivers/video/riva/
4238F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Tony Lindgrenf5525782009-05-28 13:23:53 -07004240OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004241M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004242L: linux-omap@vger.kernel.org
4243W: http://www.muru.com/linux/omap/
4244W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004245Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004246T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4247S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004248F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004249
4250OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004252L: linux-omap@vger.kernel.org
4253S: Maintained
4254F: arch/arm/*omap*/*clock*
4255
4256OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004258L: linux-omap@vger.kernel.org
4259S: Maintained
4260F: arch/arm/*omap*/*pm*
4261
4262OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004264L: alsa-devel@alsa-project.org (subscribers-only)
4265L: linux-omap@vger.kernel.org
4266S: Maintained
4267F: sound/soc/omap/
4268
4269OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen3043c102010-01-07 13:06:51 +02004270M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004271L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004272L: linux-omap@vger.kernel.org
4273S: Maintained
4274F: drivers/video/omap/
4275
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004276OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004277M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4278L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004279L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004280S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004281F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004282F: Documentation/arm/OMAP/DSS
4283
Tony Lindgrenf5525782009-05-28 13:23:53 -07004284OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004285M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004286L: linux-omap@vger.kernel.org
4287S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004288F: drivers/mmc/host/omap.c
4289
4290OMAP HS MMC SUPPORT
4291M: Madhusudhan Chikkature <madhu.cr@ti.com>
4292L: linux-omap@vger.kernel.org
4293S: Maintained
4294F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004295
4296OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004297M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004298S: Maintained
4299F: drivers/char/hw_random/omap-rng.c
4300
4301OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004302M: Felipe Balbi <balbi@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004303M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004304L: linux-usb@vger.kernel.org
4305L: linux-omap@vger.kernel.org
4306S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004307F: drivers/usb/*/*omap*
4308F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004309
Bob Copeland0ad122d2008-07-25 19:45:18 -07004310OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004311M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004312L: linux-karma-devel@lists.sourceforge.net
4313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004314F: Documentation/filesystems/omfs.txt
4315F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004316
Harald Weltec1986ee2005-11-13 16:06:29 -08004317OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004320F: drivers/char/pcmcia/cm4000_cs.c
4321F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004322
Harald Welte77c44ab2005-11-13 16:06:26 -08004323OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004326F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004327
Jonathan Corbet77d51402007-03-22 19:44:17 -03004328OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004330L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004333F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004334
Thomas Gleixner431bca72007-05-02 09:31:35 +02004335ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004336M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004337L: linux-mtd@lists.infradead.org
4338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004339F: drivers/mtd/onenand/
4340F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004341
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344L: osst-users@lists.sourceforge.net
4345L: linux-scsi@vger.kernel.org
4346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004347F: drivers/scsi/osst*
4348F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004350OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004351M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004352L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004354F: Documentation/i2c/busses/i2c-ocores
4355F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004356
Grant Likely860c44c2009-10-26 16:49:49 -07004357OPEN FIRMWARE AND FLATTENED DEVICE TREE
4358M: Grant Likely <grant.likely@secretlab.ca>
4359L: devicetree-discuss@lists.ozlabs.org
4360W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004361T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004362S: Maintained
4363F: drivers/of
4364F: include/linux/of*.h
4365K: of_get_property
4366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369L: oprofile-list@lists.sf.net
4370S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004371F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004372F: arch/*/oprofile/
4373F: drivers/oprofile/
4374F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004376ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004377M: Mark Fasheh <mfasheh@suse.com>
4378M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004379L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4380W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004381T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004382S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004383F: Documentation/filesystems/ocfs2.txt
4384F: Documentation/filesystems/dlmfs.txt
4385F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004386
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07004388L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004389L: orinoco-users@lists.sourceforge.net
4390L: orinoco-devel@lists.sourceforge.net
David Kilroy3a59bab2010-08-21 12:13:45 +01004391W: http://linuxwireless.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07004392W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01004393S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004394F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004396OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Boaz Harrosh <bharrosh@panasas.com>
4398M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004399L: osd-dev@open-osd.org
4400W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004401T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004402S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004403F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004404F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004405F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004406
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004407P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004408M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004409L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004410W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004412F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004413
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004414PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004415M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004416L: netdev@vger.kernel.org
4417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004418F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004419
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004420PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004421M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004422L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004425
Harald Welte709ee532008-09-23 17:46:57 +02004426PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004428L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004430F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004431
David Howells4fa97182008-10-13 10:42:44 +01004432PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: David Howells <dhowells@redhat.com>
4434M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004435L: linux-am33-list@redhat.com (moderated for non-subscribers)
4436W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004438F: Documentation/mn10300/
4439F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004440
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004442L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004443S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004444F: drivers/parport/
4445F: include/linux/parport*.h
4446F: drivers/char/ppdev.c
4447F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004449PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Jeremy Fitzhardinge <jeremy@xensource.com>
4451M: Chris Wright <chrisw@sous-sol.org>
4452M: Alok Kataria <akataria@vmware.com>
4453M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004454L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004456F: Documentation/ia64/paravirt_ops.txt
4457F: arch/*/kernel/paravirt*
4458F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004462L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463W: http://www.torque.net/linux-pp.html
4464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004465F: Documentation/blockdev/paride.txt
4466F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
4468PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004469M: Kyle McMartin <kyle@mcmartin.ca>
4470M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004471M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004472L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004474Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004475T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004477F: arch/parisc/
4478F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Jim Cromie1662d322006-10-06 00:43:59 -07004480PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004482L: lm-sensors@lm-sensors.org
4483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: Documentation/hwmon/pc87360
4485F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004486
4487PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004488M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004490F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004491
Jean Delvare1ad107f2010-08-14 21:09:00 +02004492PC87427 HARDWARE MONITORING DRIVER
4493M: Jean Delvare <khali@linux-fr.org>
4494L: lm-sensors@lm-sensors.org
4495S: Maintained
4496F: Documentation/hwmon/pc87427
4497F: drivers/hwmon/pc87427.c
4498
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004499PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004500M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004501S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004502F: drivers/leds/leds-pca9532.c
4503F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004504
Wolfram Sanga1867d32009-09-18 22:45:51 +02004505PCA9564/PCA9665 I2C BUS DRIVER
4506M: Wolfram Sang <w.sang@pengutronix.de>
4507L: linux-i2c@vger.kernel.org
4508S: Maintained
4509F: drivers/i2c/algos/i2c-algo-pca.c
4510F: drivers/i2c/busses/i2c-pca-*
4511F: include/linux/i2c-algo-pca.h
4512F: include/linux/i2c-pca-platform.h
4513
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004514PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004515M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004516L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004518F: Documentation/PCI/pci-error-recovery.txt
4519F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004520
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004522M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004523L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004524Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004525T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004527F: Documentation/PCI/
4528F: drivers/pci/
4529F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004531PCI HOTPLUG
4532M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004533L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004534S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004535F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004538P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004539L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004540W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004541T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004543F: Documentation/pcmcia/
4544F: drivers/pcmcia/
4545F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
4547PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004549L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004551F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004553PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004554M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: include/linux/delayacct.h
4557F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004558
Ingo Molnar57c0c152009-09-21 12:20:38 +02004559PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4561M: Paul Mackerras <paulus@samba.org>
4562M: Ingo Molnar <mingo@elte.hu>
Ingo Molnarcfb581b2010-03-08 15:20:50 +01004563M: Arnaldo Carvalho de Melo <acme@redhat.com>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004564S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004565F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004566F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004567F: arch/*/kernel/perf_event*.c
4568F: arch/*/kernel/*/perf_event*.c
4569F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004570F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004571F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004572F: arch/*/kernel/perf_callchain.c
4573F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004574
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004575PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004577L: linux-abi-devel@lists.sourceforge.net
4578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004580
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00004581PHONET PROTOCOL
4582M: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
4583S: Supported
4584F: Documentation/networking/phonet.txt
4585F: include/linux/phonet.h
4586F: include/net/phonet/
4587F: net/phonet/
4588
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591L: linux-mtd@lists.infradead.org
4592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004593F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Peter Osterlund249a6772005-09-27 21:45:30 -07004595PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: drivers/block/pktcdvd.c
4599F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004600
Anil Ravindranath89a36812009-08-25 17:35:18 -07004601PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004602M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004603L: linux-scsi@vger.kernel.org
4604W: http://www.pmc-sierra.com/
4605S: Supported
4606F: drivers/scsi/pmcraid.*
4607
jack wangdbf9bfe2009-10-14 16:19:21 +08004608PMC SIERRA PM8001 DRIVER
4609M: jack_wang@usish.com
4610M: lindar_liu@usish.com
4611L: linux-scsi@vger.kernel.org
4612S: Supported
4613F: drivers/scsi/pm8001/
4614
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004618F: fs/timerfd.c
4619F: include/linux/timer*
4620F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Anton Vorontsov3be86142007-07-15 04:43:36 +04004622POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004623M: Anton Vorontsov <cbou@mail.ru>
4624M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004625T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004627F: include/linux/power_supply.h
4628F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: Adam Belay <abelay@mit.edu>
4632M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004634F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Vitaly Wool999445d2007-01-04 13:07:03 +01004636PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004638L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004640F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004641
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004643M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644L: linux-ppp@vger.kernel.org
4645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004646F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
4648PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004649M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004651F: net/atm/pppoatm.c
4652F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004655M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004657F: drivers/net/pppoe.c
4658F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
James Chapmana6d23702007-06-27 15:53:17 -07004660PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004661M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004662S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07004663F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07004664F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004665
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004666PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004668W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4669L: linuxpps@ml.enneenne.com (subscribers-only)
4670S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004671F: Documentation/pps/
4672F: drivers/pps/
4673F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677L: kpreempt-tech@lists.sourceforge.net
4678W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004680F: Documentation/preempt-locking.txt
4681F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
4683PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004685L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04004686W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04004687S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07004688F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004690PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004692L: linux-ide@vger.kernel.org
4693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004694F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004695
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004696PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004697M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004698L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004699L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004701F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004702
Geoff Levandf58a9d12006-11-23 00:46:51 +01004703PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004704M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004705L: linuxppc-dev@lists.ozlabs.org
4706L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004708F: arch/powerpc/boot/ps3*
4709F: arch/powerpc/include/asm/lv1call.h
4710F: arch/powerpc/include/asm/ps3*.h
4711F: arch/powerpc/platforms/ps3/
4712F: drivers/*/ps3*
4713F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004714F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004715F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004716F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004717
Jim Pariscffb4add2009-01-06 11:32:10 +00004718PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004720L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00004721S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07004722F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00004723
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004724PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004725M: Roland McGrath <roland@redhat.com>
4726M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004727S: Maintained
4728F: include/asm-generic/syscall.h
4729F: include/linux/ptrace.h
4730F: include/linux/regset.h
4731F: include/linux/tracehook.h
4732F: kernel/ptrace.c
4733
Michael Krufky83202042006-07-03 00:24:18 -07004734PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004735M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004736L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004737L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004738W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004739T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004741F: Documentation/video4linux/README.pvrusb2
4742F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004743
Eric Miao30ec2612008-06-12 15:21:41 -07004744PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Eric Miao <eric.y.miao@gmail.com>
4746M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004747L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004749F: arch/arm/mach-pxa/
4750F: drivers/pcmcia/pxa2xx*
4751F: drivers/spi/pxa2xx*
4752F: drivers/usb/gadget/pxa2*
4753F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004754F: sound/arm/pxa*
4755F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004757PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Eric Miao <eric.y.miao@gmail.com>
4759M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004760L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004761T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004762S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004763
Eric Miao5fa82eb2009-03-20 12:52:24 +08004764PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004767T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004768S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004769
Eric Miaoe8e6cb32010-01-05 15:28:26 +08004770MMP2 SUPPORT (aka ARMADA610)
4771M: Haojian Zhuang <haojian.zhuang@marvell.com>
4772M: Eric Miao <eric.y.miao@gmail.com>
4773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4774T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4775S: Maintained
4776
Pierre Ossman272f1332007-05-14 21:25:26 +02004777PXA MMCI DRIVER
4778S: Orphan
4779
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004780PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004781M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004782L: rtc-linux@googlegroups.com
4783S: Maintained
4784
Jes Sorensen5e9772b2010-06-30 15:37:38 +02004785QLOGIC QLA1280 SCSI DRIVER
4786M: Michael Reed <mdr@sgi.com>
4787L: linux-scsi@vger.kernel.org
4788S: Maintained
4789F: drivers/scsi/qla1280.[ch]
4790
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004793M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794L: linux-scsi@vger.kernel.org
4795S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004796F: Documentation/scsi/LICENSE.qla2xxx
4797F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Ravi Anand883c98f2010-04-28 11:45:49 +05304799QLOGIC QLA4XXX iSCSI DRIVER
4800M: Ravi Anand <ravi.anand@qlogic.com>
4801M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
4802M: iscsi-driver@qlogic.com
4803L: linux-scsi@vger.kernel.org
4804S: Supported
4805F: drivers/scsi/qla4xxx/
4806
Ron Mercer5a4faa872006-07-25 00:40:21 -07004807QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004808M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07004809M: linux-driver@qlogic.com
4810L: netdev@vger.kernel.org
4811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004812F: Documentation/networking/LICENSE.qla3xxx
4813F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004814
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004815QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
4816M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07004817M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004818M: linux-driver@qlogic.com
4819L: netdev@vger.kernel.org
4820S: Supported
4821F: drivers/net/qlcnic/
4822
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004823QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004824M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004825M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004826L: netdev@vger.kernel.org
4827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004828F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004829
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832W: http://www.alarsen.net/linux/qnx4fs/
4833S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004834F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004835F: include/linux/qnx4_fs.h
4836F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837
4838RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004839M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004840L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004842F: drivers/video/aty/radeon*
4843F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844
4845RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004846M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004847L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
Randy Dunlape7839f22008-10-12 16:11:45 -07004851RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004852P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01004853M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01004854M: Gertjan van Wingerde <gwingerde@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004855L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01004856L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004857W: http://rt2x00.serialmonkey.com/
4858S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004859T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004860F: drivers/net/wireless/rt2x00/
4861
Nick Piggin9db55792008-02-08 04:19:49 -08004862RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10004863M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08004864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004865F: Documentation/blockdev/ramdisk.txt
4866F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004867
Matt Mackall9e95ce22005-04-16 15:25:56 -07004868RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004871F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004872
Matt Porter394b7012005-11-07 01:00:15 -08004873RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004876F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004877
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004878RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004879L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04004880S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004881F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004882
4883RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Josh Triplett <josh@freedesktop.org>
4885M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004886S: Supported
Paul E. McKenney6cb6cbe2010-08-25 08:58:50 -07004887T: git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07004888F: Documentation/RCU/torture.txt
4889F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004890
Florian Fainellic1f766b2008-02-06 22:39:44 +01004891RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004892M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004893S: Maintained
4894
Florian Fainellidb17f392007-12-19 11:30:30 +01004895RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004897L: netdev@vger.kernel.org
4898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004899F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004900
Andy Grovera09ed662009-02-24 15:30:41 +00004901RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004903L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004905F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004906
Josh Triplett595182b2006-10-04 02:17:21 -07004907READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004908M: Dipankar Sarma <dipankar@in.ibm.com>
4909M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004910W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004911S: Supported
Paul E. McKenney6cb6cbe2010-08-25 08:58:50 -07004912T: git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004913F: Documentation/RCU/
4914F: include/linux/rcu*
4915F: include/linux/srcu*
4916F: kernel/rcu*
4917F: kernel/srcu*
4918X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07004919
Wolfram Sangb7bbbf32010-09-09 16:38:04 -07004920REAL TIME CLOCK DRIVER (LEGACY)
Joe Perches8b58be82009-07-29 15:04:30 -07004921M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922S: Maintained
Wolfram Sangb7bbbf32010-09-09 16:38:04 -07004923F: drivers/char/rtc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004925REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004927L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08004928Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004930F: Documentation/rtc.txt
4931F: drivers/rtc/
4932F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004933
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004935L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004937F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Ivo van Doorne08976452008-04-12 19:23:55 +02004939RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004940M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004941L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004942S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08004943F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07004944F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004945
Maxim Levitsky67e054e2010-02-22 20:39:42 +02004946RICOH SMARTMEDIA/XD DRIVER
4947M: Maxim Levitsky <maximlevitsky@gmail.com>
4948S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07004949F: drivers/mtd/nand/r852.c
4950F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02004951
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004952RISCOM8 DRIVER
4953S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004954F: Documentation/serial/riscom8.txt
4955F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957ROCKETPORT DRIVER
4958P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959W: http://www.comtrol.com
4960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004961F: Documentation/serial/rocket.txt
4962F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004967W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: include/linux/rose.h
4970F: include/net/rose.h
4971F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972
Larry Finger59840482008-11-12 17:13:09 -06004973RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004974M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004975L: linux-wireless@vger.kernel.org
4976W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004977T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004978S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004979F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004980
Larry Finger59840482008-11-12 17:13:09 -06004981RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4983M: Hin-Tak Leung <htl10@users.sourceforge.net>
4984M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004985L: linux-wireless@vger.kernel.org
4986W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004987T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004990
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004991S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004992M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004993L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004996
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997S390
Joe Perches8b58be82009-07-29 15:04:30 -07004998M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4999M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005001L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005002W: http://www.ibm.com/developerworks/linux/linux390/
5003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005004F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005005F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005006F: fs/partitions/ibm.c
5007F: Documentation/s390/
5008F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005009
5010S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: Ursula Braun <ursula.braun@de.ibm.com>
5012M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005013M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005014L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005015W: http://www.ibm.com/developerworks/linux/linux390/
5016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005017F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005018
Felix Beckfeed9b62009-03-26 15:24:23 +01005019S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005020M: Felix Beck <felix.beck@de.ibm.com>
5021M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005022M: linux390@de.ibm.com
5023L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005024W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005025S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005026F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005027
Heiko Carstens5238da42006-02-11 17:56:01 -08005028S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005029M: Christof Schmitt <christof.schmitt@de.ibm.com>
Christof Schmitt07bbd0f2010-04-01 13:04:07 +02005030M: Swen Schillig <swen@vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005031M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005032L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005033W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005035F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
Ursula Braundd96df22007-09-19 13:09:02 +02005037S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005038M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005039M: linux390@de.ibm.com
5040L: linux-s390@vger.kernel.org
5041W: http://www.ibm.com/developerworks/linux/linux390/
5042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005043F: drivers/s390/net/*iucv*
5044F: include/net/iucv/
5045F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005046
Ben Dooks4dde7f72008-06-30 22:40:38 +01005047S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005048M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005049L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005051F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005052
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005055L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005056T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057W: http://www.mihu.de/linux/saa7146
5058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005059F: drivers/media/common/saa7146*
5060F: drivers/media/video/*7146*
5061F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
Mark Brown4a109cc2010-09-24 10:50:46 +01005063SAMSUNG AUDIO (ASoC) DRIVERS
5064M: Jassi Brar <jassi.brar@samsung.com>
5065L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5066S: Supported
5067F: sound/soc/s3c24xx
5068
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005069TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005070M: Huang Shijie <shijie8@gmail.com>
5071M: Kang Yong <kangyong@telegent.com>
5072M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005073S: Supported
5074F: drivers/media/video/tlg2300
5075
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
5081SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07005082M: Ingo Molnar <mingo@elte.hu>
5083M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: kernel/sched*
5086F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
Chen Liqin6bcf6732009-06-13 15:24:33 +08005088SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005089M: Chen Liqin <liqin.chen@sunplusct.com>
5090M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005091W: http://www.sunplusct.com
5092S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005093F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005094
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097L: linux-scsi@vger.kernel.org
5098W: http://www.kernel.dk
5099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005100F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
5102SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005103M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104L: linux-scsi@vger.kernel.org
5105W: http://www.torque.net/sg
5106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: drivers/scsi/sg.c
5108F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
5110SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00005111M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005113T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5114T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5115T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/scsi/
5118F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
5120SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005121M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122L: linux-scsi@vger.kernel.org
5123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005124F: Documentation/scsi/st.txt
5125F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
5127SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005128M: Vlad Yasevich <vladislav.yasevich@hp.com>
5129M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005130L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005131W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005133F: Documentation/networking/sctp.txt
5134F: include/linux/sctp.h
5135F: include/net/sctp/
5136F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
5138SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005139M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005140S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005141F: Documentation/i2c/busses/scx200_acb
5142F: arch/x86/kernel/scx200_32.c
5143F: drivers/watchdog/scx200_wdt.c
5144F: drivers/i2c/busses/scx200*
5145F: drivers/mtd/maps/scx200_docflash.c
5146F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005147
5148SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005151F: drivers/char/scx200_gpio.c
5152F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005153
5154SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005155M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005157F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Sascha Sommer6a369132008-07-15 14:21:29 +02005159SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005160M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005161L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005163F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005164
Randy Dunlape7839f22008-10-12 16:11:45 -07005165SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04005166M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005167L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005168T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5169S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005170F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005171
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005172SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005174L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005175L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005177F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178
Ben Dooks0d1bb412009-06-14 13:52:37 +01005179SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005180M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005181L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005182S: Maintained
5183F: drivers/mmc/host/sdhci-s3c.c
5184
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005185SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5186M: Viresh Kumar <viresh.kumar@st.com>
5187L: linux-mmc@vger.kernel.org
5188S: Maintained
5189F: drivers/mmc/host/sdhci-spear.c
5190
James Morris8711cca2008-12-04 03:19:45 +11005191SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005192M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005193L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005194T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005195W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005196S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005197F: security/
James Morris8711cca2008-12-04 03:19:45 +11005198
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005200M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201S: Supported
5202
5203SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005204M: Stephen Smalley <sds@tycho.nsa.gov>
5205M: James Morris <jmorris@namei.org>
5206M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005207L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005208W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005209T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005211F: include/linux/selinux*
5212F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
John Johansenc1c124e2010-07-29 14:48:09 -07005214APPARMOR SECURITY MODULE
5215M: John Johansen <john.johansen@canonical.com>
5216L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5217W: apparmor.wiki.kernel.org
5218T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5219S: Supported
5220F: security/apparmor/
5221
Jiri Slabycef2cf02007-05-08 00:31:45 -07005222SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005223M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005225F: drivers/misc/phantom.c
5226F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005227
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005228SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005229M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005231T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005233F: drivers/ata/
5234F: include/linux/ata.h
5235F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305237SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Joe Perches3387f652009-11-11 14:26:11 -08005238M: Jayamohan Kallickal <jayamohank@serverengines.com>
5239L: linux-scsi@vger.kernel.org
5240W: http://www.serverengines.com
5241S: Supported
5242F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305243
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005244SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005245M: Sathya Perla <sathyap@serverengines.com>
5246M: Subbu Seetharaman <subbus@serverengines.com>
Ajit Khapardef66d7442010-02-19 14:00:03 +00005247M: Sarveshwar Bandi <sarveshwarb@serverengines.com>
5248M: Ajit Khaparde <ajitk@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005249L: netdev@vger.kernel.org
5250W: http://www.serverengines.com
5251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005252F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005253
Ben Hutchings8ceee662008-04-27 12:55:59 +01005254SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005255M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5256M: Steve Hodgson <shodgson@solarflare.com>
5257M: Ben Hutchings <bhutchings@solarflare.com>
5258L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005260F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005262SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005263M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005265F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005266
5267SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005269L: linux-ia64@vger.kernel.org
5270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005271F: Documentation/ia64/serial.txt
5272F: drivers/serial/ioc?_serial.c
5273F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277L: linux-visws-devel@lists.sf.net
5278W: http://linux-visws.sf.net
5279S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005280F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Jack Steiner75312612008-08-15 00:40:42 -07005282SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005283M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005285F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005286
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005287SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07005288M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005289W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07005290L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005292F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5293F: arch/arm/mach-lh7a40x/
5294F: drivers/serial/serial_lh7a40x.c
5295F: drivers/usb/gadget/lh7a40*
5296F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005297
Len Brown6349d992009-08-14 15:07:14 -04005298SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005299M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005300L: sfi-devel@simplefirmware.org
5301W: http://simplefirmware.org/
5302T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005303S: Supported
Len Brown6349d992009-08-14 15:07:14 -04005304F: arch/x86/kernel/*sfi*
5305F: drivers/sfi/
5306F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308SIMTEC EB110ATX (Chalice CATS)
5309P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311W: http://www.simtec.co.uk/products/EB110ATX/
5312S: Supported
5313
5314SIMTEC EB2410ITX (BAST)
5315P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005316M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317W: http://www.simtec.co.uk/products/EB2410ITX/
5318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005319F: arch/arm/mach-s3c2410/
5320F: drivers/*/*s3c2410*
5321F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005323TI DAVINCI MACHINE SUPPORT
5324P: Kevin Hilman
5325M: davinci-linux-open-source@linux.davincidsp.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005326Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005327S: Supported
5328F: arch/arm/mach-davinci
5329
Francois Romieu92aab3c2005-07-30 13:11:18 +02005330SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005331M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005332L: netdev@vger.kernel.org
5333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005334F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005335
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005337M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005339L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005341F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005343SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005345L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/i2c/busses/i2c-sis96x
5348F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005349
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005354F: Documentation/fb/sisfb.txt
5355F: drivers/video/sis/
5356F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360W: http://www.winischhofer.at/linuxsisusbvga.shtml
5361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005364SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005365M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005366L: netdev@vger.kernel.org
5367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005368F: drivers/net/skge.*
5369F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005370
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005371SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005372M: Christoph Lameter <cl@linux-foundation.org>
5373M: Pekka Enberg <penberg@cs.helsinki.fi>
5374M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005375L: linux-mm@kvack.org
5376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: include/linux/sl?b*.h
5378F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005381M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005382S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005383F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005385SMM665 HARDWARE MONITOR DRIVER
5386M: Guenter Roeck <linux@roeck-us.net>
5387L: lm-sensors@lm-sensors.org
5388S: Maintained
5389F: Documentation/hwmon/smm665
5390F: drivers/hwmon/smm665.c
5391
Steve Glendinning9df73052010-08-14 21:08:54 +02005392SMSC EMC2103 HARDWARE MONITOR DRIVER
5393M: Steve Glendinning <steve.glendinning@smsc.com>
5394L: lm-sensors@lm-sensors.org
5395S: Supported
5396F: Documentation/hwmon/emc2103
5397F: drivers/hwmon/emc2103.c
5398
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005399SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005401L: lm-sensors@lm-sensors.org
5402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005403F: Documentation/hwmon/smsc47b397
5404F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005405
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005406SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005407M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005408L: netdev@vger.kernel.org
5409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005410F: include/linux/smsc911x.h
5411F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005412
Steve Glendinning2cb37722008-12-11 20:54:30 -08005413SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005414M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005415L: netdev@vger.kernel.org
5416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005417F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005418
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005419SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005420M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005421L: linux-altix@sgi.com
5422L: linux-ia64@vger.kernel.org
5423W: http://www.sgi.com/altix
5424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005426
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005427SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005429L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005430T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005432F: include/media/v4l2*
5433F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005435SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005436M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005438F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005439
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005441M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005444F: drivers/md/
5445F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005448M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005449L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005451F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Michael Buesch61e115a2007-09-18 15:12:50 -04005453SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005454M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005455L: netdev@vger.kernel.org
5456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005457F: drivers/ssb/
5458F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005461M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005462L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005463W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005465F: Documentation/laptops/sony-laptop.txt
5466F: drivers/char/sonypi.c
5467F: drivers/platform/x86/sony-laptop.c
5468F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
Alex Dubovbaf85322008-02-09 10:20:54 -08005470SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005472W: http://tifmxx.berlios.de/
5473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005474F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005475
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Jaroslav Kysela <perex@perex.cz>
5478M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005479L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005480W: http://www.alsa-project.org/
5481T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5482T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005484F: Documentation/sound/
5485F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005486F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Mark Brownbd903bd2008-11-19 19:16:05 +00005488SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07005489M: Liam Girdwood <lrg@slimlogic.co.uk>
5490M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005491T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005492L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005493W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005495F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005496F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005497
Sam Ravnborg473321f2009-01-04 15:47:49 -08005498SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005499M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005501Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07005502T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5503T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005505F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07005506F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507
David S. Miller6404fcc2010-03-16 01:00:17 -07005508SPARC SERIAL DRIVERS
5509M: "David S. Miller" <davem@davemloft.net>
5510L: sparclinux@vger.kernel.org
5511T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5512T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
5513S: Maintained
5514F: drivers/serial/suncore.c
5515F: drivers/serial/suncore.h
5516F: drivers/serial/sunhv.c
5517F: drivers/serial/sunsab.c
5518F: drivers/serial/sunsab.h
5519F: drivers/serial/sunsu.c
5520F: drivers/serial/sunzilog.c
5521F: drivers/serial/sunzilog.h
5522
viresh kumarfc0c1952010-04-01 12:31:21 +01005523SPEAR PLATFORM SUPPORT
5524M: Viresh Kumar <viresh.kumar@st.com>
5525W: http://www.st.com/spear
5526S: Maintained
5527F: arch/arm/plat-spear/
5528
5529SPEAR3XX MACHINE SUPPORT
5530M: Viresh Kumar <viresh.kumar@st.com>
5531W: http://www.st.com/spear
5532S: Maintained
5533F: arch/arm/mach-spear3xx/
5534
5535SPEAR6XX MACHINE SUPPORT
5536M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
5537W: http://www.st.com/spear
5538S: Maintained
5539F: arch/arm/mach-spear6xx/
5540
5541SPEAR CLOCK FRAMEWORK SUPPORT
5542M: Viresh Kumar <viresh.kumar@st.com>
5543W: http://www.st.com/spear
5544S: Maintained
5545F: arch/arm/mach-spear*/clock.c
5546F: arch/arm/mach-spear*/include/mach/clkdev.h
5547F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07005548F: arch/arm/plat-spear/include/plat/clkdev.h
5549F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01005550
5551SPEAR PAD MULTIPLEXING SUPPORT
5552M: Viresh Kumar <viresh.kumar@st.com>
5553W: http://www.st.com/spear
5554S: Maintained
5555F: arch/arm/plat-spear/include/plat/padmux.h
5556F: arch/arm/plat-spear/padmux.c
5557F: arch/arm/mach-spear*/spear*xx.c
5558F: arch/arm/mach-spear*/include/mach/generic.h
5559F: arch/arm/mach-spear3xx/spear3*0.c
5560F: arch/arm/mach-spear3xx/spear3*0_evb.c
5561F: arch/arm/mach-spear6xx/spear600.c
5562F: arch/arm/mach-spear6xx/spear600_evb.c
5563
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005565M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005567F: Documentation/serial/specialix.txt
5568F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005570SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005571M: David Brownell <dbrownell@users.sourceforge.net>
Grant Likelyd33c8612009-11-25 07:32:25 -07005572M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005573L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08005574Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06005575T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005577F: Documentation/spi/
5578F: drivers/spi/
5579F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005580
Jim Lewis2752e402006-09-29 02:01:19 -07005581SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07005582M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
5583M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07005584L: netdev@vger.kernel.org
5585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005586F: Documentation/networking/spider_net.txt
5587F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005588
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005589SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005590M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005591L: linuxppc-dev@lists.ozlabs.org
5592L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005593W: http://www.ibm.com/developerworks/power/cell/
5594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005595F: Documentation/filesystems/spufs.txt
5596F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005597
Phillip Lougherfc555842009-01-05 08:46:29 +00005598SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005599M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00005600L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5601W: http://squashfs.org.uk
5602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: Documentation/filesystems/squashfs.txt
5604F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005605
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005609F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
Linus Torvalds26e9a392008-10-17 09:50:12 -07005611STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07005612M: Greg Kroah-Hartman <greg@kroah.com>
5613M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005614L: stable@kernel.org
5615S: Maintained
5616
Linus Torvalds26e9a392008-10-17 09:50:12 -07005617STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005618M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07005619T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005620L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005622F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005623
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07005626S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005627F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005630M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631W: http://www.stradis.com/
5632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005633F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005635SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07005636M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005637W: http://sammy.net/sun3/
5638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005639F: arch/m68k/kernel/*sun3*
5640F: arch/m68k/sun3*/
5641F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005642
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005643SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07005644M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005645L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005647Q: http://patchwork.kernel.org/project/linux-sh/list/
Joe Perches54e58812009-04-07 21:08:10 -07005648T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005649S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005650F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005651F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005652F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005654SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Len Brown <len.brown@intel.com>
5656M: Pavel Machek <pavel@ucw.cz>
5657M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005658L: linux-pm@lists.linux-foundation.org
5659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005660F: Documentation/power/
5661F: arch/x86/kernel/acpi/
5662F: drivers/base/power/
5663F: kernel/power/
5664F: include/linux/suspend.h
5665F: include/linux/freezer.h
5666F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
5668SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005669M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670L: linux-video@atrey.karlin.mff.cuni.cz
5671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005672F: Documentation/svga.txt
5673F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
5675SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: Documentation/filesystems/sysv-fs.txt
5679F: fs/sysv/
5680F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Alan Cox4e688522008-04-30 00:52:11 -07005682TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005685F: Documentation/accounting/taskstats*
5686F: include/linux/taskstats*
5687F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005688
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005689TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005690M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005691L: netdev@vger.kernel.org
5692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: include/linux/pkt_cls.h
5694F: include/net/pkt_cls.h
5695F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005696
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005697TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5699M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005700W: http://tcp-lp-mod.sourceforge.net/
5701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005703
Erik Gilling84b94142010-06-09 15:35:53 -07005704TEGRA SUPPORT
5705M: Colin Cross <ccross@android.com>
5706M: Erik Gilling <konkers@android.com>
5707M: Olof Johansson <olof@lixom.net>
5708L: linux-tegra@vger.kernel.org
5709T: git git://android.git.kernel.org/kernel/tegra.git
5710S: Supported
5711F: arch/arm/mach-tegra
5712
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005713TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Alexander Indenbaum <baum@tehutinetworks.net>
5715M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005716L: netdev@vger.kernel.org
5717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005718F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005719
Alan Cox4e688522008-04-30 00:52:11 -07005720Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005721M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005722S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005724
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005725TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005726M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005728F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005729
5730THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005731M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005732L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05005733L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005734W: http://ibm-acpi.sourceforge.net
5735W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005736T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005738F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005739
Alex Dubov4020f2d2006-10-04 02:15:37 -07005740TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005743F: drivers/misc/tifm*
5744F: drivers/mmc/host/tifm_sd.c
5745F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005746
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005747TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005748M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005749L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5750S: Maintained
5751F: sound/soc/codecs/twl4030*
5752
Per Lidene86eaa32006-01-12 16:45:18 +01005753TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005754M: Jon Maloy <jon.maloy@ericsson.com>
5755M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005756L: tipc-discussion@lists.sourceforge.net
5757W: http://tipc.sourceforge.net/
5758W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005759T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005761F: include/linux/tipc*.h
5762F: include/net/tipc/
5763F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005764
Chris Metcalf867e3592010-05-28 23:09:12 -04005765TILE ARCHITECTURE
5766M: Chris Metcalf <cmetcalf@tilera.com>
5767W: http://www.tilera.com/scm/
5768S: Supported
5769F: arch/tile/
5770
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005773L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774W: http://sourceforge.net/projects/tlan/
5775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005776F: Documentation/networking/tlan.txt
5777F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005779TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005780M: Kentaro Takeda <takedakn@nttdata.co.jp>
5781M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005782L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5783L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5784L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5785W: http://tomoyo.sourceforge.jp/
Tetsuo Handae6f6a4c2010-07-27 17:17:06 +09005786T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005789
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005790TOPSTAR LAPTOP EXTRAS DRIVER
5791M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05005792L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005793S: Maintained
5794F: drivers/platform/x86/topstar-laptop.c
5795
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005797L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02005798S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005799F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
5801TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005802M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803L: tlinux-users@tce.toshiba-dme.co.jp
5804W: http://www.buzzard.org.uk/toshiba/
5805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005806F: drivers/char/toshiba.c
5807F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
Pierre Ossmand719f902009-03-24 21:06:09 +01005809TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005810M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005811S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005812F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005813
Hugh Dickins98f32602009-05-21 20:33:58 +01005814TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07005815M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01005816L: linux-mm@kvack.org
5817S: Maintained
5818F: include/linux/shmem_fs.h
5819F: mm/shmem.c
5820
Alan Cox4e688522008-04-30 00:52:11 -07005821TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005822M: Debora Velarde <debora@linux.vnet.ibm.com>
5823M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005824W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005826W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005827L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005829F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005830
Joe Perchesd6f005a2009-10-26 16:49:40 -07005831TRACING
5832M: Steven Rostedt <rostedt@goodmis.org>
5833M: Frederic Weisbecker <fweisbec@gmail.com>
5834M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02005835T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07005836S: Maintained
5837F: Documentation/trace/ftrace.txt
5838F: arch/*/*/*/ftrace.h
5839F: arch/*/kernel/ftrace.c
5840F: include/*/ftrace.h
5841F: include/linux/trace*.h
5842F: include/trace/
5843F: kernel/trace/
5844
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005846M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005847T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848S: Maintained
5849
Alan Cox4e688522008-04-30 00:52:11 -07005850TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005851M: Greg Kroah-Hartman <gregkh@suse.de>
5852S: Maintained
5853T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005854F: drivers/char/tty_*
5855F: drivers/serial/serial_core.c
5856F: include/linux/serial_core.h
5857F: include/linux/serial.h
5858F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005859
Grant Grundler740db6d2008-02-17 11:53:49 -07005860TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005861M: Grant Grundler <grundler@parisc-linux.org>
5862M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005863L: netdev@vger.kernel.org
5864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005865F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
5867TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005868M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869L: vtun@office.satix.net
5870W: http://vtun.sourceforge.net/tun
5871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005872F: Documentation/networking/tuntap.txt
5873F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005875TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005876M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005878F: drivers/tc/
5879F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005880
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005882M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883L: linux-scsi@vger.kernel.org
5884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005885F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005887UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005888M: Artem Bityutskiy <dedekind1@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005889M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005890L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005891T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005892W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005894F: Documentation/filesystems/ubifs.txt
5895F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005896
Alan Coxcc2020e2008-05-19 14:21:51 +01005897UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005898M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005899W: http://www.uclinux.org/
5900L: uclinux-dev@uclinux.org (subscribers-only)
5901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005902F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005903
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005904UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005905M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005906W: http://uclinux-h8.sourceforge.jp/
5907S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07005908F: arch/h8300/
5909F: drivers/ide/ide-h8300.c
5910F: drivers/net/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01005911
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005913M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914W: http://linux-udf.sourceforge.net
5915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005916F: Documentation/filesystems/udf.txt
5917F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918
Alan Coxcc2020e2008-05-19 14:21:51 +01005919UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005920M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: Documentation/filesystems/ufs.txt
5923F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005924
David Vrabel18332a82008-09-17 16:34:44 +01005925ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005926M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005927L: linux-usb@vger.kernel.org
5928S: Supported
David Vrabel355ffe62009-12-22 13:13:28 +00005929F: drivers/uwb/
5930X: drivers/uwb/wlp/
5931X: drivers/uwb/i1480/i1480u-wlp/
5932X: drivers/uwb/i1480/i1480-wlp.h
Joe Perches679655d2009-04-07 20:44:32 -07005933F: include/linux/uwb.h
5934F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005935
Tony Finchd8379ab2009-11-27 15:50:30 +00005936UNIFDEF
5937M: Tony Finch <dot@dotat.at>
5938W: http://dotat.at/prog/unifdef
5939S: Maintained
5940F: scripts/unifdef.c
5941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944W: http://www.kernel.dk
5945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005946F: Documentation/cdrom/
5947F: drivers/cdrom/cdrom.c
5948F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005950UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005951M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005952W: http://www.linux-mtd.infradead.org/
5953L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005954T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005955S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005956F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005957F: include/linux/mtd/ubi.h
5958F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005962L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: Documentation/usb/acm.txt
5965F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
5967USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005969L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005971F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08005974M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005975L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005977F: drivers/net/usb/cdc_*.c
5978F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005980USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005981M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005982L: linux-usb@vger.kernel.org
5983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005984F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005985
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005986USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005988L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005989W: http://www.linux-usb.org/usbnet
5990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005992
Alan Coxcc2020e2008-05-19 14:21:51 +01005993USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005995L: rio500-users@lists.sourceforge.net
5996W: http://rio500.sourceforge.net
5997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005998F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005999
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006002L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006003S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006004F: Documentation/usb/ehci.txt
6005F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
Luca Risolia7ce08c92006-01-11 02:06:59 +00006007USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006009L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006010L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006011T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006012W: http://www.linux-projects.org
6013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006014F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006015
David Brownell69ae9e32006-11-14 02:03:31 -08006016USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006018L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006019W: http://www.linux-usb.org/gadget
6020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006021F: drivers/usb/gadget/
6022F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006023
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006024USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07006025M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006026L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006027T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006029F: Documentation/usb/hiddev.txt
6030F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
Olav Kongas959eea22005-11-03 17:38:14 +02006032USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006033M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006034L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006036F: drivers/usb/host/isp116x*
6037F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006038
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006040M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006041L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006043F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
6045USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006046M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006047L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006048L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049S: Maintained
6050W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006051F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
6053USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006054M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006055L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006056S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006057F: Documentation/usb/ohci.txt
6058F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059
Matthias Urlichsba460e42005-07-14 00:33:47 -07006060USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006061M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006062L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006068L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069W: http://alpha.dyndns.org/ov511/
6070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006071F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072
6073USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006074M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006075L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006076L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077W: http://pegasus2.sourceforge.net/
6078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006079F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006081USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07006082M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006083L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006085F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086
6087USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006088M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006089L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006090L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091W: http://pegasus2.sourceforge.net/
6092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006093F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094
6095USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006096M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006097L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098W: http://www.chello.nl/~j.vreeken/se401/
6099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006100F: Documentation/video4linux/se401.txt
6101F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
Alan Cox4e688522008-04-30 00:52:11 -07006103USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006104M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006105L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006108
6109USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006110M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006111L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006112S: Maintained
6113W: http://geocities.com/i0xox0i
6114W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006115F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006116
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006118M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006121F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
6123USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Peter Berger <pberger@brimson.com>
6125M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006126L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
6130USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006131M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006132L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006134F: Documentation/usb/usb-serial.txt
6135F: drivers/usb/serial/generic.c
6136F: drivers/usb/serial/usb-serial.c
6137F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006141L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006143F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
6145USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006146M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006147L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148W: http://www.kroah.com/linux/
6149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006150F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151
6152USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006153M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006154L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155W: http://www.connecttech.com
6156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006157F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006159USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006160M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006161L: netdev@vger.kernel.org
6162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006163F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006164
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006165USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006166M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006167L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006168L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006169T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170W: http://www.linux-projects.org
6171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: Documentation/video4linux/sn9c102.txt
6173F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174
6175USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006176M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006177L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006179T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006181F: Documentation/usb/
6182F: drivers/net/usb/
6183F: drivers/usb/
6184F: include/linux/usb.h
6185F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186
6187USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006188M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006189L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192
David Brownell69ae9e32006-11-14 02:03:31 -08006193USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006195L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006196W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006198F: drivers/net/usb/usbnet.c
6199F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006201USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07006202M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03006203L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006204L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006205T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006206W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006211M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006212L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006213L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006214T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215W: http://www.linux-projects.org
6216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006217F: Documentation/video4linux/w9968cf.txt
6218F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006220USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006221M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006222L: linux-wireless@vger.kernel.org
6223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006224F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006225
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006226USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006227M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006228L: linux-usb@vger.kernel.org
6229S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006230F: drivers/usb/host/xhci*
6231F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006232
Luca Risolia60f78052006-02-06 16:29:35 +00006233USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006234M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006235L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006236L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006237T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006238W: http://www.linux-projects.org
6239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006240F: Documentation/video4linux/zc0301.txt
6241F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006242
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04006244L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04006246S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006247F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006249USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006250M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006251L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006252L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006254W: http://royale.zerezo.com/zr364xx/
6255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006256F: Documentation/video4linux/zr364xx.txt
6257F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006258
Randy Dunlape7839f22008-10-12 16:11:45 -07006259USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006260M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261L: user-mode-linux-devel@lists.sourceforge.net
6262L: user-mode-linux-user@lists.sourceforge.net
6263W: http://user-mode-linux.sourceforge.net
6264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006265F: Documentation/uml/
6266F: arch/um/
6267F: fs/hostfs/
6268F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006269
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006270USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07006271M: "Hans J. Koch" <hjk@linutronix.de>
6272M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: Documentation/DocBook/uio-howto.tmpl
6275F: drivers/uio/
6276F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006277
Karel Zakf899b0a2008-05-23 13:04:21 -07006278UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006279M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006280L: util-linux-ng@vger.kernel.org
6281W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006282T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006283S: Maintained
6284
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006285UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006286M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006287L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006288W: http://dev.gentoo.org/~spock/projects/uvesafb/
6289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006290F: Documentation/fb/uvesafb.txt
6291F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006292
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006293VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006294M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: Documentation/filesystems/vfat.txt
6297F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298
Amit Shah9a824462010-03-23 18:23:09 +05306299VIRTIO CONSOLE DRIVER
6300M: Amit Shah <amit.shah@redhat.com>
6301L: virtualization@lists.linux-foundation.org
6302S: Maintained
6303F: drivers/char/virtio_console.c
6304F: include/linux/virtio_console.h
6305
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00006306VIRTIO HOST (VHOST)
6307M: "Michael S. Tsirkin" <mst@redhat.com>
6308L: kvm@vger.kernel.org
6309L: virtualization@lists.osdl.org
6310L: netdev@vger.kernel.org
6311S: Maintained
6312F: drivers/vhost/
6313F: include/linux/vhost.h
6314
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006316M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006318F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319
Jean Delvare32c0a522005-09-22 21:47:58 +02006320VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006322L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006324F: Documentation/i2c/busses/i2c-viapro
6325F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006326
Harald Weltef0bf7f62009-06-17 20:22:39 +02006327VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006328M: Joseph Chan <JosephChan@via.com.tw>
6329M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02006330S: Maintained
6331F: drivers/mmc/host/via-sdmmc.c
6332
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006333VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Joseph Chan <JosephChan@via.com.tw>
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006335M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006336L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006337S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006338F: include/linux/via-core.h
6339F: include/linux/via-gpio.h
6340F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07006341F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006342
Francois Romieu01f20732007-01-26 00:57:17 -08006343VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08006345L: netdev@vger.kernel.org
6346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006347F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
Patrick McHardybe7f8272007-10-23 20:26:36 -07006349VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07006351L: netdev@vger.kernel.org
6352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: drivers/net/macvlan.c
6354F: include/linux/if_*vlan.h
6355F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006356
Florian Fainelli55e331c2009-06-16 15:33:53 -07006357VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006358M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07006359L: openwrt-devel@lists.openwrt.org
6360S: Maintained
6361F: drivers/vlynq/vlynq.c
6362F: include/linux/vlynq.h
6363
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006364VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08006365M: Shreyas Bhatewara <sbhatewara@vmware.com>
6366M: "VMware, Inc." <pv-drivers@vmware.com>
6367L: netdev@vger.kernel.org
6368S: Maintained
6369F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006370
Alok Kataria851b1642009-10-13 14:51:05 -07006371VMware PVSCSI driver
6372M: Alok Kataria <akataria@vmware.com>
6373M: VMware PV-Drivers <pv-drivers@vmware.com>
6374L: linux-scsi@vger.kernel.org
6375S: Maintained
6376F: drivers/scsi/vmw_pvscsi.c
6377F: drivers/scsi/vmw_pvscsi.h
6378
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006379VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006380M: Liam Girdwood <lrg@slimlogic.co.uk>
6381M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006382W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006383W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006384T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006386F: drivers/regulator/
6387F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006388
Juerg Haefligerab413192006-09-24 20:54:04 +02006389VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006390M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02006391L: lm-sensors@lm-sensors.org
6392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006393F: Documentation/hwmon/vt1211
6394F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006395
Roger Lucas1de9e372005-11-26 20:20:05 +01006396VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01006398L: lm-sensors@lm-sensors.org
6399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006400F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006401
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006405F: Documentation/w1/
6406F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407
Charles Spirakis13927072006-07-05 18:05:15 +02006408W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006409M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02006410L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006412F: Documentation/hwmon/w83791d
6413F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006414
Rudolf Marek61db0112006-12-12 18:18:30 +01006415W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006416M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01006417L: lm-sensors@lm-sensors.org
6418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006419F: Documentation/hwmon/w83793
6420F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006421
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006425F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006427WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006428M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00006429L: linux-watchdog@vger.kernel.org
6430W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07006431T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006433F: Documentation/watchdog/
6434F: drivers/watchdog/
6435F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006436
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006438M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439L: linux-scsi@vger.kernel.org
6440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006441F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442
David Härdemane258b802009-09-21 17:04:53 -07006443WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006444M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006445S: Maintained
6446F: drivers/input/misc/winbond-cir.c
6447
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006448WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006450M: linux-wimax@intel.com
6451L: wimax@linuxwimax.org
6452S: Supported
6453W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07006454F: Documentation/wimax/README.wimax
6455F: include/linux/wimax.h
6456F: include/linux/wimax/debug.h
6457F: include/net/wimax.h
6458F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006459
David Vrabel18332a82008-09-17 16:34:44 +01006460WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006461M: David Vrabel <david.vrabel@csr.com>
David Vrabel355ffe62009-12-22 13:13:28 +00006462L: netdev@vger.kernel.org
David Vrabel18332a82008-09-17 16:34:44 +01006463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006464F: include/linux/wlp.h
6465F: drivers/uwb/wlp/
David Vrabel355ffe62009-12-22 13:13:28 +00006466F: drivers/uwb/i1480/i1480u-wlp/
6467F: drivers/uwb/i1480/i1480-wlp.h
David Vrabel18332a82008-09-17 16:34:44 +01006468
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006469WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006470M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006472F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006473
Kalle Valo834da342009-07-21 14:26:08 +03006474WL1251 WIRELESS DRIVER
Kalle Valo31c726f2010-08-22 22:46:15 +03006475M: Kalle Valo <kvalo@adurom.com>
Kalle Valo834da342009-07-21 14:26:08 +03006476L: linux-wireless@vger.kernel.org
6477W: http://wireless.kernel.org
6478T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6479S: Maintained
Kalle Valocc2858c2010-10-10 11:28:33 +03006480F: drivers/net/wireless/wl1251/*
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006481
6482WL1271 WIRELESS DRIVER
6483M: Luciano Coelho <luciano.coelho@nokia.com>
6484L: linux-wireless@vger.kernel.org
6485W: http://wireless.kernel.org
Luciano Coelho381bd102010-09-28 09:54:27 +03006486T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006487S: Maintained
6488F: drivers/net/wireless/wl12xx/wl1271*
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +02006489F: include/linux/wl12xx.h
Kalle Valo834da342009-07-21 14:26:08 +03006490
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006493L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006494W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006496F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Mark Brownfebf1df2008-04-02 00:51:09 -04006498WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006499M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6500M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006501L: linux-input@vger.kernel.org
6502T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6503W: http://opensource.wolfsonmicro.com/node/7
6504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006505F: drivers/input/touchscreen/*wm97*
6506F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006507
Mark Brown055bcbc2010-08-13 14:18:12 +01006508WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006509M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01006510M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07006511M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Browncf8eda32010-10-05 19:31:40 -07006512T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01006513T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07006514W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01006515S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006516F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006517F: drivers/leds/leds-wm83*.c
6518F: drivers/mfd/wm8*.c
6519F: drivers/power/wm83*.c
6520F: drivers/rtc/rtc-wm83*.c
6521F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006522F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006523F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006524F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006525F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006526F: include/linux/mfd/wm8400*
Mark Brown055bcbc2010-08-13 14:18:12 +01006527F: include/sound/wm????.h
6528F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01006529
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006531M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006533S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006534F: Documentation/networking/x25*
6535F: include/net/x25*
6536F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006538X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006539M: Thomas Gleixner <tglx@linutronix.de>
6540M: Ingo Molnar <mingo@redhat.com>
6541M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006542M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006543T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006545F: Documentation/x86/
6546F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006547
Matthew Garrettd0944852010-02-11 10:40:13 -05006548X86 PLATFORM DRIVERS
6549M: Matthew Garrett <mjg@redhat.com>
6550L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07006551T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05006552S: Maintained
6553F: drivers/platform/x86
6554
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006555XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07006556M: Jeremy Fitzhardinge <jeremy@xensource.com>
6557M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006558L: virtualization@lists.osdl.org
6559L: xen-devel@lists.xensource.com
6560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006561F: arch/x86/xen/
6562F: drivers/*/xen-*front.c
6563F: drivers/xen/
6564F: arch/x86/include/asm/xen/
6565F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006566
Linus Torvalds1da177e2005-04-16 15:20:36 -07006567XFS FILESYSTEM
6568P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05006569M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006571L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006573T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006575F: Documentation/filesystems/xfs.txt
6576F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006578XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006579M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006580W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006582F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006583
Peter Korsgaard238b8722006-12-06 20:35:17 -08006584XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08006586L: linux-serial@vger.kernel.org
6587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006588F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006589
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592L: linux-hams@vger.kernel.org
6593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006594F: drivers/net/hamradio/yam*
6595F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596
Henkaf64a5e2005-10-12 15:02:56 +02006597YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006598M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02006599L: usbb2k-api-dev@nongnu.org
6600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006601F: Documentation/input/yealink.txt
6602F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006603
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006605M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606W: http://yaina.de/jreuter/
6607W: http://www.qsl.net/dl1bke/
6608L: linux-hams@vger.kernel.org
6609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006610F: Documentation/networking/z8530drv.txt
6611F: drivers/net/hamradio/*scc.c
6612F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006614ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006615M: Daniel Drake <dsd@gentoo.org>
6616M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006617W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006618L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006619L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006621F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006622
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006625L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006627T: Mercurial http://linuxtv.org/hg/v4l-dvb
6628S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006629F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006631ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006632M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006634F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006635
Dmitry Kozlov00959ad2010-08-21 23:05:39 -07006636GRE DEMULTIPLEXER DRIVER
6637M: Dmitry Kozlov <xeb@mail.ru>
6638L: netdev@vger.kernel.org
6639S: Maintained
6640F: net/ipv4/gre.c
6641F: include/net/gre.h
6642
6643PPTP DRIVER
6644M: Dmitry Kozlov <xeb@mail.ru>
6645L: netdev@vger.kernel.org
6646S: Maintained
6647F: drivers/net/pptp.c
6648W: http://sourceforge.net/projects/accel-pptp
6649
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07006651M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07006652L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006653Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07006654T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006656F: *
6657F: */