blob: 72b979d5076b4ffc656e2f8ad62960cc3d6897c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700120F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
127F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700133F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700159F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -0800166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -0700173F: drivers/net/*8390*
174F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001769P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700177M: Eric Van Hensbergen <ericvh@gmail.com>
178M: Ron Minnich <rminnich@sandia.gov>
179M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100180L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500181W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800182Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800183T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700185F: Documentation/filesystems/9p.txt
186F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188A2232 SERIAL BOARD DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189L: linux-m68k@lists.linux-m68k.org
Joe Perchesc8974012011-04-14 15:22:05 -0700190S: Orphan
191F: drivers/staging/generic_serial/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700193AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700194M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700195L: linux-scsi@vger.kernel.org
196W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700198F: Documentation/scsi/aacraid.txt
199F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700201ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100202M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200203L: lm-sensors@lm-sensors.org
204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700205F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200206
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700208M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700209L: lm-sensors@lm-sensors.org
210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700211F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700214M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215L: linux-acenic@sunsite.dk
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Peter Feuerere86435e2009-06-21 18:53:03 +0200219ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700220M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500221L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700222W: http://piie.net/?section=acerhdf
223S: Maintained
224F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200225
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000226ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100227M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500228L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000229S: 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
Len Brown8b59a452007-01-08 19:03:28 -0500244ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Zhang Rui <rui.zhang@intel.com>
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/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Shaohua Li8e0af512009-07-27 18:11:02 -0400251ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700252M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400253L: linux-acpi@vger.kernel.org
254W: http://www.lesswatts.org/projects/acpi/
255S: Supported
256F: drivers/acpi/acpi_pad.c
257
Len Brown8b59a452007-01-08 19:03:28 -0500258ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700259M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500260L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300261W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700263F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700264
Len Brown359acec2007-02-10 01:59:24 -0500265ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700266M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500267L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300268W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500271
Carlos Corbachobff431e2008-02-05 02:17:04 +0000272ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500273L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100274S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000276
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100277AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700278M: Kyle McMartin <kyle@mcmartin.ca>
279M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200280W: http://wiki.parisc-linux.org/AD1889
281L: linux-parisc@vger.kernel.org
282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700283F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100284
Michael Hennerich527a1a82010-10-28 11:31:28 +0000285AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
286M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100287L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700288W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000289S: Supported
290F: drivers/misc/ad525x_dpot.c
291
292AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
293M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100294L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700295W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000296S: Supported
297F: drivers/regulator/ad5398.c
298
299AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
300M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100301L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700302W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000303S: Supported
304F: drivers/input/misc/ad714x.c
305
306AD7877 TOUCHSCREEN DRIVER
307M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100308L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700309W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000310S: Supported
311F: drivers/input/touchscreen/ad7877.c
312
313AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
314M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100315L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700316W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000317S: Supported
318F: drivers/input/touchscreen/ad7879.c
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700321M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200322L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: Documentation/hwmon/adm1025
325F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700328M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100329L: lm-sensors@lm-sensors.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332
Michael Wucc0b88c2007-08-31 01:15:25 -0400333ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400334L: linux-wireless@vger.kernel.org
335W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400336S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700337F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400338
Michael Hennerich527a1a82010-10-28 11:31:28 +0000339ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
340M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100341L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700342W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000343S: Supported
344F: drivers/mfd/adp5520.c
345F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700346F: drivers/leds/leds-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347F: drivers/gpio/adp5520-gpio.c
348F: drivers/input/keyboard/adp5520-keys.c
349
350ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
351M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100352L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700353W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354S: Supported
355F: drivers/input/keyboard/adp5588-keys.c
356F: drivers/gpio/adp5588-gpio.c
357
358ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/video/backlight/adp8860_bl.c
364
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100365ADS1015 HARDWARE MONITOR DRIVER
366M: Dirk Eibach <eibach@gdsys.de>
367L: lm-sensors@lm-sensors.org
368S: Maintained
369F: Documentation/hwmon/ads1015
370F: drivers/hwmon/ads1015.c
371F: include/linux/i2c/ads1015.h
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700374M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700376F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jean Delvareb058b852009-12-09 20:36:08 +0100378ADT7475 HARDWARE MONITOR DRIVER
379M: Jean Delvare <khali@linux-fr.org>
380L: lm-sensors@lm-sensors.org
381S: Maintained
382F: Documentation/hwmon/adt7475
383F: drivers/hwmon/adt7475.c
384
Michael Hennerich527a1a82010-10-28 11:31:28 +0000385ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
386M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100387L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700388W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000389S: Supported
390F: drivers/input/misc/adxl34x.c
391
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400392ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700393M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400394L: linux-scsi@vger.kernel.org
395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700396F: Documentation/scsi/advansys.txt
397F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700400M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700402F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200405L: linux-fsdevel@vger.kernel.org
406S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700407F: Documentation/filesystems/affs.txt
408F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700410AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700411M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700412L: linux-afs@lists.infradead.org
413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700414F: fs/afs/
415F: include/net/af_rxrpc.h
416F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700419M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700420T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700422F: drivers/char/agp/
423F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700426M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427L: linux-scsi@vger.kernel.org
428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700429F: drivers/scsi/aha152x*
430F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Hannes Reinecke64624d42007-10-19 10:32:29 +0200432AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700433M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200434L: linux-scsi@vger.kernel.org
435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700436F: drivers/scsi/aic7xxx/
437F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200438
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700439AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700441L: linux-aio@kvack.org
442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700443F: fs/aio.c
444F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700448L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449W: http://www.linux-usb.org/SpeedTouch/
450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700451F: drivers/usb/atm/speedtch.c
452F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Pierre Ossman272f1332007-05-14 21:25:26 +0200454ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200458
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000459ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700460M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100461L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700463F: Documentation/i2c/busses/i2c-ali1563
464F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700467M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500469M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700470L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700471F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Tobias Klauseradf92512011-02-09 10:58:29 +0100473ALTERA UART/JTAG UART SERIAL DRIVERS
474M: Tobias Klauser <tklauser@distanz.ch>
475L: linux-serial@vger.kernel.org
476L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
477S: Maintained
478F: drivers/tty/serial/altera_uart.c
479F: drivers/tty/serial/altera_jtaguart.c
480F: include/linux/altera_uart.h
481F: include/linux/altera_jtaguart.h
482
Andreas Herrmann512d1022011-05-25 20:43:31 +0200483AMD FAM15H PROCESSOR POWER MONITORING DRIVER
484M: Andreas Herrmann <andreas.herrmann3@amd.com>
485L: lm-sensors@lm-sensors.org
486S: Maintained
487F: Documentation/hwmon/fam15h_power
488F: drivers/hwmon/fam15h_power.c
489
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700490AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700492L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700494F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700495
Jordan Crousef90b8112006-01-06 00:12:14 -0800496AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800497P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700498L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800499W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700501F: drivers/char/hw_random/geode-rng.c
502F: drivers/crypto/geode*
503F: drivers/video/geode/
504F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800505
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200506AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700507M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200508L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700509T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700511F: arch/x86/kernel/amd_iommu*.c
512F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200513
Peter Orubae7f5b302008-07-28 18:44:11 +0200514AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700515M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700516L: amd64-microcode@amd64.org
517S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700518F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200519
Stelian Pop284f42b2006-12-12 18:18:31 +0100520AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700521M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100522S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200523F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100524
Tom Tuckerf94b5332006-09-22 15:22:48 -0700525AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700526M: Tom Tucker <tom@opengridcomputing.com>
527M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700528L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700531
Michael Hennerich527a1a82010-10-28 11:31:28 +0000532ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100533L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000534L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700535W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000536S: Supported
537F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000538F: sound/soc/codecs/ssm*
539
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400540ANALOG DEVICES INC ASOC DRIVERS
541L: uclinux-dist-devel@blackfin.uclinux.org
542L: alsa-devel@alsa-project.org (moderated for non-subscribers)
543W: http://blackfin.uclinux.org/
544S: Supported
545F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400546
Johannes Berg42269062006-07-25 16:15:50 +0200547AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000549L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700550L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200555M: Jiri Kosina <jkosina@suse.cz>
556S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700557F: arch/x86/kernel/apm_32.c
558F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200559F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700561APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700562M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700563L: linux-input@vger.kernel.org
564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700565F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700566
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700567APPLE SMC DRIVER
Henrik Rydbergd6185402010-04-14 16:14:11 +0200568M: Henrik Rydberg <rydberg@euromail.se>
569L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700571F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700576F: drivers/net/appletalk/
577F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Viresh Kumara4801672011-02-22 15:46:07 +0530579ARASAN COMPACT FLASH PATA CONTROLLER
580M: Viresh Kumar <viresh.kumar@st.com>
581L: linux-ide@vger.kernel.org
582S: Maintained
583F: include/linux/pata_arasan_cf_data.h
584F: drivers/ata/pata_arasan_cf.c
585
Jaya Kumar1154ea72005-06-21 17:17:04 -0700586ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700587M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700589F: drivers/video/arcfb.c
590F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700595F: arch/arm/lib/floppydma.S
596F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Will Deacon6f965212011-07-01 14:38:53 +0100598ARM PMU PROFILING AND DEBUGGING
599M: Will Deacon <will.deacon@arm.com>
600S: Maintained
601F: arch/arm/kernel/perf_event*
602F: arch/arm/oprofile/common.c
603F: arch/arm/kernel/pmu.c
604F: arch/arm/include/asm/pmu.h
605F: arch/arm/kernel/hw_breakpoint.c
606F: arch/arm/include/asm/hw_breakpoint.h
607
Russell Kingd4275352009-04-16 14:05:27 +0100608ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700610L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100611W: http://www.arm.linux.org.uk/
612S: Maintained
613F: arch/arm/
614
Russell Kingcefbf4e2009-11-22 17:40:28 +0000615ARM PRIMECELL AACI PL041 DRIVER
616M: Russell King <linux@arm.linux.org.uk>
617S: Maintained
618F: sound/arm/aaci.*
619
620ARM PRIMECELL CLCD PL110 DRIVER
621M: Russell King <linux@arm.linux.org.uk>
622S: Maintained
623F: drivers/video/amba-clcd.*
624
625ARM PRIMECELL KMI PL050 DRIVER
626M: Russell King <linux@arm.linux.org.uk>
627S: Maintained
628F: drivers/input/serio/ambakmi.*
629F: include/linux/amba/kmi.h
630
Russell King2761f5c2007-05-24 06:56:08 +0200631ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200632S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700633F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200634
Russell Kingcefbf4e2009-11-22 17:40:28 +0000635ARM PRIMECELL BUS SUPPORT
636M: Russell King <linux@arm.linux.org.uk>
637S: Maintained
638F: drivers/amba/
639F: include/linux/amba/bus.h
640
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800641ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700642M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700643L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700645F: arch/arm/mach-ixp23xx/
646F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800647
648ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700649M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700650L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800651S: Maintained
652
Sergey Lapin9c784f92008-08-03 02:29:48 +0100653ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700654M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700655L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100656S: Maintained
657
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800658ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700659M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700660L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800661S: Maintained
662
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800663ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700664M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800665M: Nicolas Ferre <nicolas.ferre@atmel.com>
666M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200668W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800669W: http://www.linux4sam.org
670S: Supported
671F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100672
Leo Chen57a473f2009-08-12 22:08:48 +0100673ARM/BCMRING ARM ARCHITECTURE
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000674M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100675M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700676L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800677S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100678F: arch/arm/mach-bcmring
679
680ARM/BCMRING MTD NAND DRIVER
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000681M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100682M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100683L: linux-mtd@lists.infradead.org
684S: Maintained
685F: drivers/mtd/nand/bcm_umi_nand.c
686F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100687F: drivers/mtd/nand/nand_bcm_umi.h
688
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300689ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
690M: Anton Vorontsov <avorontsov@mvista.com>
691S: Maintained
692F: arch/arm/mach-cns3xxx/
693T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
694
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800695ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100696M: Hartley Sweeten <hsweeten@visionengravers.com>
697M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800699S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100700F: arch/arm/mach-ep93xx/
701F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702
703ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700704M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800706S: Maintained
707
Russell Kingd4275352009-04-16 14:05:27 +0100708ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700709M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700710L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100711F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700712F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100713
Mike Rapoportd48134e2008-08-20 09:03:26 +0100714ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700715M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700716L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100717S: Maintained
718
Hubert Feurstein94150092009-10-07 08:36:07 +0100719ARM/CONTEC MICRO9 MACHINE SUPPORT
720M: Hubert Feurstein <hubert.feurstein@contec.at>
721S: Maintained
722F: arch/arm/mach-ep93xx/micro9.c
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700725M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726S: Maintained
727
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200728ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100729M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100731T: git git://git.berlios.de/gemini-board
732S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300733F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200734
Russell Kingd4275352009-04-16 14:05:27 +0100735ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700736M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700737L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100738W: http://www.arm.linux.org.uk/
739S: Maintained
740F: arch/arm/mach-ebsa110/
741F: drivers/net/arm/am79c961a.*
742
Russell Kinga9da4f72008-07-12 21:42:04 +0100743ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700744M: Daniel Ribeiro <drwyrm@gmail.com>
745M: Stefan Schmidt <stefan@openezx.org>
746M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200747L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100748W: http://www.openezx.org/
749S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200750T: topgit git://git.openezx.org/openezx.git
751F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100752
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200753ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100754M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100756S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700757T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300758F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200759
Russell Kingd4275352009-04-16 14:05:27 +0100760ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700761M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100763W: http://www.arm.linux.org.uk/
764S: Maintained
765F: arch/arm/include/asm/hardware/dec21285.h
766F: arch/arm/mach-footbridge/
767
Sascha Hauer86183a52008-07-24 23:50:35 +0200768ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700769M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700770L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200771S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700772T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100773F: arch/arm/mach-mx*/
774F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200775
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800776ARM/FREESCALE IMX51
777M: Amit Kucheria <amit.kucheria@canonical.com>
778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
779S: Maintained
780F: arch/arm/mach-mx5/
781
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800782ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700783M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800785S: Maintained
786
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100787ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700788M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700789L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100790S: Maintained
791
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200792ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700793M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200794S: Maintained
795F: arch/arm/mach-pxa/hx4700.c
796F: arch/arm/mach-pxa/include/mach/hx4700.h
797
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100798ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200800W: www.jlime.com
801S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700802T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
803F: arch/arm/mach-sa1100/jornada720.c
804F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100805
Marek Vasut403d2972010-05-22 00:29:39 +0200806ARM/INCOME PXA270 SUPPORT
807M: Marek Vasut <marek.vasut@gmail.com>
808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
809S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700810F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200811
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800812ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700813M: Lennert Buytenhek <kernel@wantstofly.org>
814M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700816S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100817
818ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700820L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700821S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800822
823ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Lennert Buytenhek <kernel@wantstofly.org>
825M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700826L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700827S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800828
829ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700830M: Lennert Buytenhek <kernel@wantstofly.org>
831M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700833S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800834
835ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800838S: Maintained
839
840ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800843S: Maintained
844
845ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700847L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848S: Maintained
849
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200850ARM/INTEL IXP4XX ARM ARCHITECTURE
851M: Imre Kaloz <kaloz@openwrt.org>
852M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200854S: Maintained
855F: arch/arm/mach-ixp4xx/
856
Joe Perches838553c2010-10-26 14:22:59 -0700857ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100858M: Jonathan Cameron <jic23@cam.ac.uk>
859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
860S: Maintained
861F: arch/arm/mach-pxa/stargate2.c
862F: drivers/pcmcia/pxa2xx_stargate2.c
863
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800864ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700865M: Lennert Buytenhek <kernel@wantstofly.org>
866M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700868S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869
870ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873S: Maintained
874
875ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700876M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700877L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878S: Maintained
879
Philipp Zabel3b8861712008-07-09 21:27:15 +0100880ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700881M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100882S: Maintained
883
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400884ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400885M: Lennert Buytenhek <kernel@wantstofly.org>
886M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400888S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400889F: arch/arm/mach-loki/
890F: arch/arm/mach-kirkwood/
891F: arch/arm/mach-mv78xx0/
892F: arch/arm/mach-orion5x/
893F: arch/arm/plat-orion/
894
Alexander Clouterd69ac132011-04-14 15:22:02 -0700895ARM/Orion SoC/Technologic Systems TS-78xx platform support
896M: Alexander Clouter <alex@digriz.org.uk>
897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
898W: http://www.digriz.org.uk/ts78xx/kernel
899S: Maintained
900F: arch/arm/mach-orion5x/ts78xx-*
901
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200902ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700903M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200905F: arch/arm/mach-pxa/mioa701.c
906S: Maintained
907
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100908ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100910S: Maintained
911
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100912ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700913M: Alessandro Rubini <rubini@unipv.it>
Linus Walleij87572882010-12-22 09:18:29 +0100914M: Linus Walleij <linus.walleij@stericsson.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700915M: STEricsson <STEricsson_nomadik_linux@list.st.com>
916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917S: Maintained
918F: arch/arm/mach-nomadik/
919F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100920F: drivers/i2c/busses/i2c-nomadik.c
921T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100922
Andy Green9d762952009-05-19 06:41:42 -0300923ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700924M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300925L: openmoko-kernel@lists.openmoko.org (subscribers-only)
926W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
927S: Supported
928
Daniel Walker0c19d212009-12-07 16:53:51 -0800929ARM/QUALCOMM MSM MACHINE SUPPORT
930M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800931M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800932M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800933L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800934F: arch/arm/mach-msm/
935F: drivers/video/msm/
936F: drivers/mmc/host/msm_sdcc.c
937F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800938F: drivers/tty/serial/msm_serial.h
939F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700940F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700941F: drivers/*/pm8???-*
942F: include/linux/mfd/pm8xxx/
Daniel Walker6c965ff2010-12-09 15:45:27 -0800943T: git git://codeaurora.org/quic/kernel/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800944S: Maintained
945
Dirk Opfer8459c152005-11-06 14:27:52 +0000946ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700947M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
948M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000949S: Maintained
950
Marek Vasut5d783a22009-07-16 13:26:48 +0200951ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700952M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200953L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100954W: http://hackndev.com
955S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700956F: arch/arm/mach-pxa/include/mach/palmtx.h
957F: arch/arm/mach-pxa/palmtx.c
958F: arch/arm/mach-pxa/include/mach/palmt5.h
959F: arch/arm/mach-pxa/palmt5.c
960F: arch/arm/mach-pxa/include/mach/palmld.h
961F: arch/arm/mach-pxa/palmld.c
962F: arch/arm/mach-pxa/include/mach/palmte2.h
963F: arch/arm/mach-pxa/palmte2.c
964F: arch/arm/mach-pxa/include/mach/palmtc.h
965F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100966
Joe Perchesb57fe922009-12-14 18:00:52 -0800967ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700968M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200969L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200970W: http://hackndev.com
971S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800972F: arch/arm/mach-pxa/include/mach/palmtreo.h
973F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200974
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100975ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700976M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200977L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700978W: http://hackndev.com
979S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700980F: arch/arm/mach-pxa/include/mach/palmz72.h
981F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700984M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
986S: Maintained
987
988ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700989M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700990L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991W: http://www.arm.linux.org.uk/
992S: Maintained
993
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800994ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700995M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700996L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800997S: Maintained
998
Russell Kingd4275352009-04-16 14:05:27 +0100999ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001000M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001001L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001002W: http://www.arm.linux.org.uk/
1003S: Maintained
1004F: arch/arm/common/time-acorn.c
1005F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1006F: arch/arm/include/asm/hardware/ioc.h
1007F: arch/arm/include/asm/hardware/iomd.h
1008F: arch/arm/include/asm/hardware/memc.h
1009F: arch/arm/mach-rpc/
1010F: drivers/net/arm/ether*
1011F: drivers/scsi/arm/
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001014M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015W: http://www.shark-linux.de/shark.html
1016S: Maintained
1017
Ben Dooksb21477f2009-06-13 10:46:34 +01001018ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001019M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001020M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001021L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001022W: http://www.fluff.org/ben/linux/
1023S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001024F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001025F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001026F: arch/arm/plat-s5p/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001027F: drivers/*/*s3c2410*
1028F: drivers/*/*/*s3c2410*
Ben Dooksb21477f2009-06-13 10:46:34 +01001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001031M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001032L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033W: http://www.fluff.org/ben/linux/
1034S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001035F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Joe Perches85743532010-10-26 14:23:00 -07001037ARM/S3C244x ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001038M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001039L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040W: http://www.fluff.org/ben/linux/
1041S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +01001042F: arch/arm/mach-s3c2440/
Ben Dooksb21477f2009-06-13 10:46:34 +01001043F: arch/arm/mach-s3c2443/
1044
Joe Perchesf9962312010-10-26 14:23:01 -07001045ARM/S3C64xx ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001047L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001048W: http://www.fluff.org/ben/linux/
1049S: Maintained
Joe Perchesf9962312010-10-26 14:23:01 -07001050F: arch/arm/mach-s3c64xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001052ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb02010-09-30 15:15:35 -07001053M: Kukjin Kim <kgene.kim@samsung.com>
1054L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1056S: Maintained
1057F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001058F: arch/arm/mach-exynos*/
Kukjin Kimf556cb02010-09-30 15:15:35 -07001059
Kyungmin Park10ffa962011-03-04 17:36:26 -08001060ARM/SAMSUNG MOBILE MACHINE SUPPORT
1061M: Kyungmin Park <kyungmin.park@samsung.com>
1062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063S: Maintained
1064F: arch/arm/mach-s5pv210/mach-aquila.c
1065F: arch/arm/mach-s5pv210/mach-goni.c
1066F: arch/arm/mach-exynos4/mach-universal_c210.c
1067F: arch/arm/mach-exynos4/mach-nuri.c
1068
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001069ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1070M: Kyungmin Park <kyungmin.park@samsung.com>
1071M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1072L: linux-arm-kernel@lists.infradead.org
1073L: linux-media@vger.kernel.org
1074S: Maintained
1075F: arch/arm/plat-s5p/dev-fimc*
1076F: arch/arm/plat-samsung/include/plat/*fimc*
1077F: drivers/media/video/s5p-fimc/
1078
Paul Mundtd48d38e2010-02-08 12:50:24 +09001079ARM/SHMOBILE ARM ARCHITECTURE
1080M: Paul Mundt <lethal@linux-sh.org>
1081M: Magnus Damm <magnus.damm@gmail.com>
1082L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001083W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001084Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001085T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001086S: Supported
1087F: arch/arm/mach-shmobile/
1088F: drivers/sh/
1089
Thomas Gleixner448352a2010-09-17 20:27:30 +02001090ARM/TELECHIPS ARM ARCHITECTURE
Hans J. Koch6a534c92011-04-14 15:22:16 -07001091M: "Hans J. Koch" <hjk@hansjkoch.de>
Thomas Gleixner448352a2010-09-17 20:27:30 +02001092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093S: Maintained
1094F: arch/arm/plat-tcc/
1095F: arch/arm/mach-tcc8k/
1096
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001097ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001098M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001100S: Maintained
1101
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001102ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001103M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001104L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105S: Maintained
1106
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001107ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001108M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001110S: Maintained
1111
wanzongshun98ad6e32009-02-13 06:04:32 +01001112ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001115W: http://www.mcuos.com
1116S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001117F: arch/arm/mach-w90x900/
1118F: arch/arm/mach-nuc93x/
1119F: drivers/input/keyboard/w90p910_keypad.c
1120F: drivers/input/touchscreen/w90p910_ts.c
1121F: drivers/watchdog/nuc900_wdt.c
1122F: drivers/net/arm/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001123F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001124F: drivers/rtc/rtc-nuc900.c
1125F: drivers/spi/spi_nuc900.c
1126F: drivers/usb/host/ehci-w90x900.c
1127F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001128
Linus Walleij54274d72010-04-04 10:58:03 +01001129ARM/U300 MACHINE SUPPORT
1130M: Linus Walleij <linus.walleij@stericsson.com>
1131L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132S: Supported
1133F: arch/arm/mach-u300/
1134F: drivers/i2c/busses/i2c-stu300.c
1135F: drivers/rtc/rtc-coh901331.c
1136F: drivers/watchdog/coh901327_wdt.c
1137F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001138F: drivers/mfd/ab3100*
1139F: drivers/rtc/rtc-ab3100.c
1140F: drivers/rtc/rtc-coh901331.c
1141T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001142
Linus Walleij87572882010-12-22 09:18:29 +01001143ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001144M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleij87572882010-12-22 09:18:29 +01001145M: Linus Walleij <linus.walleij@stericsson.com>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001146L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1147S: Maintained
1148F: arch/arm/mach-ux500/
Linus Walleij87572882010-12-22 09:18:29 +01001149F: drivers/dma/ste_dma40*
1150F: drivers/mfd/ab3550*
1151F: drivers/mfd/abx500*
1152F: drivers/mfd/ab8500*
1153F: drivers/mfd/stmpe*
1154F: drivers/rtc/rtc-ab8500.c
1155T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001156
Russell Kingd4275352009-04-16 14:05:27 +01001157ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001158M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001160W: http://www.arm.linux.org.uk/
1161S: Maintained
1162F: arch/arm/vfp/
1163
Marek Vasute66b6d82010-03-26 06:51:32 +01001164ARM/VOIPAC PXA270 SUPPORT
1165M: Marek Vasut <marek.vasut@gmail.com>
1166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167S: Maintained
1168F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001169F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001170
1171ARM/ZIPIT Z2 SUPPORT
1172M: Marek Vasut <marek.vasut@gmail.com>
1173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174S: Maintained
1175F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001176F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001177
George Josephd58de032010-03-05 22:17:25 +01001178ASC7621 HARDWARE MONITOR DRIVER
1179M: George Joseph <george.joseph@fairview5.com>
1180L: lm-sensors@lm-sensors.org
1181S: Maintained
1182F: Documentation/hwmon/asc7621
1183F: drivers/hwmon/asc7621.c
1184
Corentin Charyb229ece2011-02-26 10:20:40 +01001185ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001186M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001188L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001189W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001191F: drivers/platform/x86/asus*.c
1192F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001194ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001195M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001196L: lm-sensors@lm-sensors.org
1197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001198F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001199
Andrew Morton953a6472008-11-06 12:53:28 -08001200ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001202W: http://sourceforge.net/projects/xscaleiop
1203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001204F: Documentation/crypto/async-tx-api.txt
1205F: crypto/async_tx/
1206F: drivers/dma/
1207F: include/linux/dmaengine.h
1208F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001209
Wolfram Sanga1867d32009-09-18 22:45:51 +02001210AT24 EEPROM DRIVER
1211M: Wolfram Sang <w.sang@pengutronix.de>
1212L: linux-i2c@vger.kernel.org
1213S: Maintained
1214F: drivers/misc/eeprom/at24.c
1215F: include/linux/i2c/at24.h
1216
Randy Dunlape7839f22008-10-12 16:11:45 -07001217ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001218M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219W: http://www.coraid.com/support/linux
1220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001221F: Documentation/aoe/
1222F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Joe Perches9a10a872010-12-01 09:37:55 -08001224ATHEROS ATH GENERIC UTILITIES
1225M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1226L: linux-wireless@vger.kernel.org
1227S: Supported
1228F: drivers/net/wireless/ath/*
1229
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001230ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001231M: Jiri Slaby <jirislaby@gmail.com>
1232M: Nick Kossifidis <mickflemm@gmail.com>
1233M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1234M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001235L: linux-wireless@vger.kernel.org
1236L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001237W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001238S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001239F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001240
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001241ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001242M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1243M: Jouni Malinen <jmalinen@atheros.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001244M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1245M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001246L: linux-wireless@vger.kernel.org
1247L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001248W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001250F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001252CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1253M: Christian Lamparter <chunkeey@googlemail.com>
1254L: linux-wireless@vger.kernel.org
1255W: http://wireless.kernel.org/en/users/Drivers/carl9170
1256S: Maintained
1257F: drivers/net/wireless/ath/carl9170/
1258
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001259ATK0110 HWMON DRIVER
1260M: Luca Tettamanti <kronos.it@gmail.com>
1261L: lm-sensors@lm-sensors.org
1262S: Maintained
1263F: drivers/hwmon/asus_atk0110.c
1264
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001265ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001266M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001268F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001269
Chris Snook7ae115b2008-09-09 03:26:57 -04001270ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001271M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001272M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001273M: Jie Yang <jie.yang@atheros.com>
Chris Snooke443e382010-09-16 22:00:28 -07001274L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001275W: http://sourceforge.net/projects/atl1
1276W: http://atl1.sourceforge.net
1277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001278F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001281M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001282L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001283L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284W: http://linux-atm.sourceforge.net
1285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001286F: drivers/atm/
1287F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Pierre Ossman272f1332007-05-14 21:25:26 +02001289ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001291L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001292W: http://www.atmel.com/products/AT91/
1293W: http://www.at91.com/
1294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001295F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001296
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001297ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001299S: Maintained
1300F: drivers/mmc/host/atmel-mci.c
1301F: drivers/mmc/host/atmel-mci-regs.h
1302
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001303ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001304M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001305S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001306F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001307
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001308ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001309M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001310L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001312F: drivers/video/atmel_lcdfb.c
1313F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001314
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001315ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001316M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001318F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001319
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001320ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001321M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001323F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001324
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001325ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001326M: Nicolas Ferre <nicolas.ferre@atmel.com>
1327L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001328W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1329S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001330F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001333M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001334L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335W: http://www.thekelleys.org.uk/atmel
1336W: http://atmelwlandriver.sourceforge.net/
1337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Chris Wrighta92b7b82005-07-07 18:12:23 -07001340AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001341M: Al Viro <viro@zeniv.linux.org.uk>
1342M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001343L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001344W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001345T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001347F: include/linux/audit.h
1348F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001349
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001350AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001351M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001352W: http://miguelojeda.es/auxdisplay.htm
1353W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001355F: drivers/auxdisplay/
1356F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001357
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001358AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001359M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1360M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001361W: http://www.atmel.com/products/AVR32/
1362W: http://avr32linux.org/
1363W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001366
1367AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001368M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1369M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001371F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001374M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001376W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: include/linux/ax25.h
1379F: include/net/ax25.h
1380F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001382B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001383M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001384L: linux-wireless@vger.kernel.org
1385W: http://linuxwireless.org/en/users/Drivers/b43
1386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001387F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001388
1389B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Larry Finger <Larry.Finger@lwfinger.net>
1391M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001392L: linux-wireless@vger.kernel.org
1393W: http://linuxwireless.org/en/users/Drivers/b43
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001396
Richard Purdie300abeb2007-02-07 22:21:07 +00001397BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001400F: drivers/video/backlight/
1401F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001402
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001403BATMAN ADVANCED
1404M: Marek Lindner <lindner_marek@yahoo.de>
1405M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001406L: b.a.t.m.a.n@lists.open-mesh.org
1407W: http://www.open-mesh.org/
1408S: Maintained
1409F: net/batman-adv/
1410
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001411BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001413L: linux-hams@vger.kernel.org
1414W: http://www.baycom.org/~tom/ham/ham.html
1415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001416F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001417
1418BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001419S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001420F: Documentation/filesystems/befs.txt
1421F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001422
1423BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001424M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001426F: Documentation/filesystems/bfs.txt
1427F: fs/bfs/
1428F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001429
Bryan Wu1394f032007-05-06 14:50:22 -07001430BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001431M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001432L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001433W: http://blackfin.uclinux.org
1434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001435F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001436
Bryan Wue190d6b2007-07-17 14:43:44 +08001437BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001438L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001439W: http://blackfin.uclinux.org
1440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001442
Mike Frysinger566da5b2007-06-11 15:31:30 +08001443BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001444M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001445L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001446W: http://blackfin.uclinux.org
1447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001448F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001449
Mike Frysinger936ed492010-03-10 15:20:38 -08001450BLACKFIN SDH DRIVER
1451M: Cliff Cai <cliff.cai@analog.com>
1452L: uclinux-dist-devel@blackfin.uclinux.org
1453W: http://blackfin.uclinux.org
1454S: Supported
1455F: drivers/mmc/host/bfin_sdh.c
1456
Bryan Wu1394f032007-05-06 14:50:22 -07001457BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001458M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001459L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001460W: http://blackfin.uclinux.org
1461S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001462F: drivers/tty/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001463
Bryan Wu1e6d3202007-07-15 02:50:02 +08001464BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001465M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001466L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001467W: http://blackfin.uclinux.org
1468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001469F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001470
Bryan Wud24ecfc2007-05-01 23:26:32 +02001471BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001472M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001473L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001474W: http://blackfin.uclinux.org/
1475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001476F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001479M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001480T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001482F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Joern Engel2b54aae2008-02-06 01:38:02 -08001484BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001486L: linux-mtd@lists.infradead.org
1487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001488F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001489
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001490BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001491M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001492M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001493L: linux-bluetooth@vger.kernel.org
1494W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001495T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001500M: Marcel Holtmann <marcel@holtmann.org>
Joe Perches706e69d2011-03-22 16:34:26 -07001501M: "Gustavo F. Padovan" <padovan@profusion.mobi>
Pavel Machek781c2842008-03-20 15:41:02 -07001502L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001503W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001504T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001506F: net/bluetooth/
1507F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001510M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001511M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001512L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001513W: http://sourceforge.net/projects/bonding/
1514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001515F: drivers/net/bonding/
1516F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Gary Zambrano39105892006-06-22 17:26:20 -07001518BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001519M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001520L: netdev@vger.kernel.org
1521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001522F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001523
Michael Chan948c51e2006-06-04 02:51:39 -07001524BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001525M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001526L: netdev@vger.kernel.org
1527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/net/bnx2.*
1529F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001530
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001531BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001532M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001533L: netdev@vger.kernel.org
1534S: Supported
Dmitry Kravkov49efec12010-07-27 12:37:58 +00001535F: drivers/net/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001536
Michael Chan948c51e2006-06-04 02:51:39 -07001537BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Matt Carlson <mcarlson@broadcom.com>
1539M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001540L: netdev@vger.kernel.org
1541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001542F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001543
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001544BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1545M: Brett Rudley <brudley@broadcom.com>
1546M: Henry Ptasinski <henryp@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001547M: Dowan Kim <dowan@broadcom.com>
1548M: Roland Vossen <rvossen@broadcom.com>
1549M: Arend van Spriel <arend@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001550L: linux-wireless@vger.kernel.org
1551S: Supported
1552F: drivers/staging/brcm80211/
1553
Jing Huang7725ccf2009-09-23 17:46:15 -07001554BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001555M: Jing Huang <huangj@brocade.com>
1556L: linux-scsi@vger.kernel.org
1557S: Supported
1558F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001559
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001560BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1561M: Rasesh Mody <rmody@brocade.com>
1562M: Debashis Dutt <ddutt@brocade.com>
1563L: netdev@vger.kernel.org
1564S: Supported
1565F: drivers/net/bna/
1566
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001567BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001569L: linux-scsi@vger.kernel.org
1570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001571F: block/bsg.c
1572F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001573
Clemens Ladischaf399172011-01-10 16:32:54 +01001574BT87X AUDIO DRIVER
1575M: Clemens Ladisch <clemens@ladisch.de>
1576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1577T: git git://git.alsa-project.org/alsa-kernel.git
1578S: Maintained
1579F: Documentation/sound/alsa/Bt87x.txt
1580F: sound/pci/bt87x.c
1581
Michael Bueschff1d5c22008-07-25 01:46:10 -07001582BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001584W: http://bu3sch.de/btgpio.php
1585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001587
Joe Percheseb1eb042009-01-21 10:49:16 -05001588BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001590L: linux-btrfs@vger.kernel.org
1591W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001592Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001593T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: Documentation/filesystems/btrfs.txt
1596F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001600L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001601W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001602T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001604F: Documentation/video4linux/bttv/
1605F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Clemens Ladischaf399172011-01-10 16:32:54 +01001607C-MEDIA CMI8788 DRIVER
1608M: Clemens Ladisch <clemens@ladisch.de>
1609L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1610T: git git://git.alsa-project.org/alsa-kernel.git
1611S: Maintained
1612F: sound/pci/oxygen/
1613
David Howellsa5432f52009-04-20 15:46:45 +01001614CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001616L: linux-cachefs@redhat.com
1617S: Supported
1618F: Documentation/filesystems/caching/cachefiles.txt
1619F: fs/cachefiles/
1620
Jonathan Corbet77d51402007-03-22 19:44:17 -03001621CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001622M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001623L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001624T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001626F: Documentation/video4linux/cafe_ccic
1627F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001628
Joe Perches201b6ba2010-09-07 20:33:24 +00001629CAIF NETWORK LAYER
1630M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1631L: netdev@vger.kernel.org
1632S: Supported
1633F: Documentation/networking/caif/
1634F: drivers/net/caif/
1635F: include/linux/caif/
1636F: include/net/caif/
1637F: net/caif/
1638
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001639CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Muli Ben-Yehuda <muli@il.ibm.com>
1641M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001642L: discuss@x86-64.org
1643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001644F: arch/x86/kernel/pci-calgary_64.c
1645F: arch/x86/kernel/tce_64.c
1646F: arch/x86/include/asm/calgary.h
1647F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001648
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001649CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001650M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001651M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001652M: Urs Thuermann <urs.thuermann@volkswagen.de>
Mike Frysinger7cacd432011-06-24 17:42:14 -07001653L: socketcan-core@lists.berlios.de (subscribers-only)
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001654L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001655W: http://developer.berlios.de/projects/socketcan/
1656S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001657F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001658F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001659F: include/linux/can/core.h
1660F: include/linux/can/bcm.h
1661F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001662
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001663CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001664M: Wolfgang Grandegger <wg@grandegger.com>
Mike Frysinger7cacd432011-06-24 17:42:14 -07001665L: socketcan-core@lists.berlios.de (subscribers-only)
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001666L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001667W: http://developer.berlios.de/projects/socketcan/
1668S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001669F: drivers/net/can/
1670F: include/linux/can/dev.h
1671F: include/linux/can/error.h
1672F: include/linux/can/netlink.h
1673F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001674
Arnd Bergmannb8154542008-05-16 11:10:59 +02001675CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001677L: linuxppc-dev@lists.ozlabs.org
1678L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001679W: http://www.ibm.com/developerworks/power/cell/
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001682F: arch/powerpc/include/asm/spu*.h
1683F: arch/powerpc/oprofile/*cell*
1684F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001685
Sage Weil9030aaf2009-10-06 11:31:15 -07001686CEPH DISTRIBUTED FILE SYSTEM CLIENT
1687M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001688L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001689W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001690T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001691S: Supported
1692F: Documentation/filesystems/ceph.txt
1693F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001694F: net/ceph
1695F: include/linux/ceph
Sage Weil9030aaf2009-10-06 11:31:15 -07001696
David Vrabel18332a82008-09-17 16:34:44 +01001697CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001698L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001699S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001700F: Documentation/usb/WUSB-Design-overview.txt
1701F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001702F: drivers/usb/host/hwa-hc.c
1703F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001704F: drivers/usb/wusbcore/
1705F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001706
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001707CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001708M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001709W: http://miguelojeda.es/auxdisplay.htm
1710W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001712F: drivers/auxdisplay/cfag12864b.c
1713F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001714
1715CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001716M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001717W: http://miguelojeda.es/auxdisplay.htm
1718W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001720F: drivers/auxdisplay/cfag12864bfb.c
1721F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001722
Johannes Berg704232c2007-04-23 12:20:05 -07001723CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001724M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001725L: linux-wireless@vger.kernel.org
1726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001727F: include/linux/nl80211.h
1728F: include/net/cfg80211.h
1729F: net/wireless/*
1730X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001731
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001732CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001735F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001736
Harry Weif8407f22011-02-25 14:44:15 -08001737CHINESE DOCUMENTATION
1738M: Harry Wei <harryxiyou@gmail.com>
1739L: xiyoulinuxkernelgroup@googlegroups.com
1740L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1741S: Maintained
1742F: Documentation/zh_CN/
1743
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001744CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001745M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001746M: Vasanthy Kolluri <vkolluri@cisco.com>
1747M: Roopa Prabhu <roprabhu@cisco.com>
Vasanthy Kolluri94d57c42010-09-30 13:36:05 +00001748M: David Wang <dwang2@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001750F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001751
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001752CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001753M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001754L: netdev@vger.kernel.org
1755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001756F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001757
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001758CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001759M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001760L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001762F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001763
Timur Tabid9e9d822008-04-24 08:45:26 +10001764CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001765M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001766L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001768F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001769
Russell Kingd4275352009-04-16 14:05:27 +01001770CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001771M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001772F: include/linux/clk.h
1773
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001774CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Abhijeet Joglekar <abjoglek@cisco.com>
1776M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001777L: linux-scsi@vger.kernel.org
1778S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001779F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001780
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001781CMPC ACPI DRIVER
1782M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1783M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001784L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001785S: Supported
1786F: drivers/platform/x86/classmate-laptop.c
1787
Nicolas Palix74425ee2010-06-06 17:15:01 +02001788COCCINELLE/Semantic Patches (SmPL)
1789M: Julia Lawall <julia@diku.dk>
1790M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palixaf78f212010-10-08 21:27:36 +02001791M: Nicolas Palix <npalix.work@gmail.com>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001792L: cocci@diku.dk (moderated for non-subscribers)
1793W: http://coccinelle.lip6.fr/
1794S: Supported
1795F: scripts/coccinelle/
1796F: scripts/coccicheck
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001799M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800M: coda@cs.cmu.edu
1801L: codalist@coda.cs.cmu.edu
1802W: http://www.coda.cs.cmu.edu/
1803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001804F: Documentation/filesystems/coda.txt
1805F: fs/coda/
1806F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001808COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001809M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001810L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001811L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001812W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001813Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001814T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001816F: Documentation/filesystems/cifs.txt
1817F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001820M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001821L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001823F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001826M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001827L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001829F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001832M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001833L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001835F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001837COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001838M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001839L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843COMPUTONE INTELLIPORT MULTIPORT CARD
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844W: http://www.wittsend.com/computone.html
Joe Perchesc8974012011-04-14 15:22:05 -07001845S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001846F: Documentation/serial/computone.txt
Joe Perchesc8974012011-04-14 15:22:05 -07001847F: drivers/staging/tty/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Simon Arlott949be0f2007-03-06 02:47:46 -08001849CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001850M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001851L: accessrunner-general@lists.sourceforge.net
1852W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001854F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001855
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001856CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08001857M: Joel Becker <jlbec@evilplan.org>
1858T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001860F: fs/configfs/
1861F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001862
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001863CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001864M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001865L: netdev@vger.kernel.org
1866S: Maintained
1867F: drivers/connector/
1868
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001869CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Paul Menage <menage@google.com>
1871M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001872L: containers@lists.linux-foundation.org
1873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001874F: include/linux/cgroup*
1875F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001876F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001877
Rudolf Marekbebe4672007-05-08 17:22:02 +02001878CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02001879M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001880L: lm-sensors@lm-sensors.org
1881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001882F: Documentation/hwmon/coretemp
1883F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001886M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887W: http://www.fi.muni.cz/~kas/cosa/
1888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001889F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Florian Fainelli4371ee32009-06-01 02:43:17 -07001891CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001892M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001893L: netdev@vger.kernel.org
1894S: Maintained
1895F: drivers/net/cpmac.c
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001899L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001901T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: drivers/cpufreq/
1904F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001907M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001909F: arch/x86/kernel/cpuid.c
1910F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Paul Jacksoned90fb42005-09-27 21:45:37 -07001912CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001913M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001914W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001915W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001917F: Documentation/cgroups/cpusets.txt
1918F: include/linux/cpuset.h
1919F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001922W: http://sourceforge.net/projects/cramfs/
1923S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001924F: Documentation/filesystems/cramfs.txt
1925F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001928M: Mikael Starvik <starvik@axis.com>
1929M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001930L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931W: http://developer.axis.com
1932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001934F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Herbert Xu <herbert@gondor.apana.org.au>
1938M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001940T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001942F: Documentation/crypto/
1943F: arch/*/crypto/
1944F: crypto/
1945F: drivers/crypto/
1946F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Neil Horman5b07bd52009-02-05 16:03:04 +11001948CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001950L: linux-crypto@vger.kernel.org
1951S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07001952F: crypto/ansi_cprng.c
1953F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11001954
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001955CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001956M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001958F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001959
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001960CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001961M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001962L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001963L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001964T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001965W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001966W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: Documentation/video4linux/cx18.txt
1969F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001970
Steve Wisee5ec3782008-05-20 14:06:33 -07001971CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001972M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001973L: netdev@vger.kernel.org
1974W: http://www.chelsio.com
1975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001977
1978CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001980L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001981W: http://www.openfabrics.org
1982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001984
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001985CXGB4 ETHERNET DRIVER (CXGB4)
1986M: Dimitris Michailidis <dm@chelsio.com>
1987L: netdev@vger.kernel.org
1988W: http://www.chelsio.com
1989S: Supported
1990F: drivers/net/cxgb4/
1991
1992CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
1993M: Steve Wise <swise@chelsio.com>
1994L: linux-rdma@vger.kernel.org
1995W: http://www.openfabrics.org
1996S: Supported
1997F: drivers/infiniband/hw/cxgb4/
1998
Casey Leedom5c20a5c2010-07-19 17:55:33 -07001999CXGB4VF ETHERNET DRIVER (CXGB4VF)
2000M: Casey Leedom <leedom@chelsio.com>
2001L: netdev@vger.kernel.org
2002W: http://www.chelsio.com
2003S: Supported
2004F: drivers/net/cxgb4vf/
2005
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002006STMMAC ETHERNET DRIVER
2007M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2008L: netdev@vger.kernel.org
2009W: http://www.stlinux.com
2010S: Supported
2011F: drivers/net/stmmac/
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016W: http://www.arm.linux.org.uk/
2017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002021M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002022W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002028S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002029F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002030F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002034S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002038M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039W: http://yaina.de/jreuter/
2040W: http://www.qsl.net/dl1bke/
2041L: linux-hams@vger.kernel.org
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: net/ax25/af_ax25.c
2044F: net/ax25/ax25_dev.c
2045F: net/ax25/ax25_ds_*
2046F: net/ax25/ax25_in.c
2047F: net/ax25/ax25_out.c
2048F: net/ax25/ax25_timer.c
2049F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002051DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002053S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002054F: Documentation/networking/dmfe.txt
2055F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002056
2057DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002058M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002059W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002060M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002065M: Oliver Neukum <oliver@neukum.name>
2066M: Ali Akcaagac <aliakc@web.de>
2067M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002069L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070L: http://lists.twibble.org/mailman/listinfo/dc395x/
2071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: Documentation/scsi/dc395x.txt
2073F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002075DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002076M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002077L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002078W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: include/linux/dccp.h
2081F: include/linux/tfrc.h
2082F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085W: http://linux-decnet.sourceforge.net
2086L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002087S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002088F: Documentation/networking/decnet.txt
2089F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002096DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002097M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002098L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002100F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002103M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104W: http://www.debian.org/~dz/i8k/
2105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002106F: drivers/char/i8k.c
2107F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Doug Warzecha90563ec2005-09-06 15:17:15 -07002109DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002110M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002112F: Documentation/dcdbas.txt
2113F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002114
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002115DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002116M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002117S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002118F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002121M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123S: Maintained
2124
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002125DEVICE-MAPPER (LVM)
2126P: Alasdair Kergon
2127L: dm-devel@redhat.com
2128W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002129Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: Documentation/device-mapper/
2132F: drivers/md/dm*
2133F: include/linux/device-mapper.h
2134F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138L: Eng.Linux@digi.com
2139W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002140S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002141F: Documentation/serial/digiepca.txt
Joe Perchesc8974012011-04-14 15:22:05 -07002142F: drivers/staging/tty/epca*
2143F: drivers/staging/tty/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Guenter Roeck335d7c52011-01-26 11:45:49 -08002145DIOLAN U2C-12 I2C DRIVER
2146M: Guenter Roeck <guenter.roeck@ericsson.com>
2147L: linux-i2c@vger.kernel.org
2148S: Maintained
2149F: drivers/i2c/busses/i2c-diolan-u2c.c
2150
Randy Dunlape7839f22008-10-12 16:11:45 -07002151DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002152M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: Documentation/filesystems/dnotify.txt
2155F: fs/notify/dnotify/
2156F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002159M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2161W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2162W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2163S: Maintained
2164
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002165DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002168F: Documentation/filesystems/quota.txt
2169F: fs/quota/
2170F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Randy Dunlape7839f22008-10-12 16:11:45 -07002172DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002173M: Christine Caulfield <ccaulfie@redhat.com>
2174M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002175L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002176W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002177T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002178S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002179F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002180
Dan Williamsb3e5f262007-08-07 10:26:35 -07002181DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002182M: Vinod Koul <vinod.koul@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002183M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002185F: drivers/dma/
2186F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302187T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2188T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002189
Juerg Haefligerb8250372007-06-09 10:11:16 -04002190DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002191M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002192L: lm-sensors@lm-sensors.org
2193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002194F: Documentation/hwmon/dme1737
2195F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002196
Martin Waitzba483d52005-06-17 13:20:59 -07002197DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002198M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002199S: Maintained
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002200F: scripts/kernel-doc
Martin Waitzba483d52005-06-17 13:20:59 -07002201
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002202DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002203M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002204L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002207
Joe Perches7d2c86b2009-04-07 20:59:01 -07002208DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002210L: linux-doc@vger.kernel.org
Randy Dunlap0dcb6d72011-07-06 11:19:56 -07002211T: quilt http://userweb.kernel.org/~rdunlap/kernel-doc-patches/current/
Jean Delvare795fb7e2008-09-20 12:33:08 +02002212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002213F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002216M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217L: blinux-list@redhat.com
2218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/char/dtlk.c
2220F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002222DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002223M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002224L: linux-scsi@vger.kernel.org
2225W: http://www.adaptec.com/
2226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: drivers/scsi/dpt*
2228F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002229
Philipp Reisnerb411b362009-09-25 16:07:19 -07002230DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002231P: Philipp Reisner
2232P: Lars Ellenberg
2233M: drbd-dev@lists.linbit.com
2234L: drbd-user@lists.linbit.com
2235W: http://www.drbd.org
2236T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2237T: git git://git.drbd.org/drbd-8.3.git
2238S: Supported
2239F: drivers/block/drbd/
2240F: lib/lru_cache.c
2241F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002242
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002243DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002244M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartmane658e9f2010-11-09 09:12:42 -08002245T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002247F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002248F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002249F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002250F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002251F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002252F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002253F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002256M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002257L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002258T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002260F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002261F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Chris Wilson8daf7472010-09-28 14:07:26 +01002263INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Keith Packard704df8d2011-05-11 07:58:08 -07002264M: Keith Packard <keithp@keithp.com>
Joe Perchescc840f72010-11-23 22:36:42 -08002265L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002266L: dri-devel@lists.freedesktop.org
Keith Packard704df8d2011-05-11 07:58:08 -07002267T: git git://git.kernel.org/pub/scm/linux/kernel/git/keithp/linux-2.6.git
Chris Wilson8daf7472010-09-28 14:07:26 +01002268S: Supported
2269F: drivers/gpu/drm/i915
2270F: include/drm/i915*
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002273M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002274L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002278DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002280S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002281F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002284M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002285L: linux-eata@i-connect.net
2286L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292L: linux-scsi@vger.kernel.org
2293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002297M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002298L: linux-eata@i-connect.net
2299L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002301F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002304M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002305L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://ebtables.sourceforge.net/
2307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: include/linux/netfilter_bridge/ebt_*.h
2309F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Michael Halcrow237fead2006-10-04 02:16:22 -07002311ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2313M: Dustin Kirkland <kirkland@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002314L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002315W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002317F: Documentation/filesystems/ecryptfs.txt
2318F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002319
Alan Coxda9bb1d2006-01-18 17:44:13 -08002320EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002321M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002322L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002323W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002324S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002325F: Documentation/edac.txt
2326F: drivers/edac/edac_*
2327F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002328
Borislav Petkovc476c232009-05-20 20:31:58 +02002329EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Doug Thompson <dougthompson@xmission.com>
2331M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002332L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2333W: bluesmoke.sourceforge.net
2334S: Supported
2335F: drivers/edac/amd64_edac*
2336
Dave Peterson0e438e32006-03-26 01:38:55 -08002337EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002338M: Mark Gross <mark.gross@intel.com>
2339M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002340L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002341W: bluesmoke.sourceforge.net
2342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002343F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002344
2345EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002347L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002348W: bluesmoke.sourceforge.net
2349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002350F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002351
Douglas Thompson6bc78402007-07-19 01:50:12 -07002352EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002353M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002354L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002355W: bluesmoke.sourceforge.net
2356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002357F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002358
2359EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002360M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002361L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002362W: bluesmoke.sourceforge.net
2363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002364F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002365
2366EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002367M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002368L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002369W: bluesmoke.sourceforge.net
2370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002371F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002372
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002373EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002374M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002375L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002376W: bluesmoke.sourceforge.net
2377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002378F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002379
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002380EDAC-I7300
2381M: Mauro Carvalho Chehab <mchehab@redhat.com>
2382L: linux-edac@vger.kernel.org
2383W: bluesmoke.sourceforge.net
2384S: Maintained
2385F: drivers/edac/i7300_edac.c
2386
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002387EDAC-I7CORE
2388M: Mauro Carvalho Chehab <mchehab@redhat.com>
2389L: linux-edac@vger.kernel.org
2390W: bluesmoke.sourceforge.net
2391S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002392F: drivers/edac/i7core_edac.c
2393F: drivers/edac/edac_mce.c
2394F: include/linux/edac_mce.h
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002395
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002396EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002397M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302398M: "Arvind R." <arvino55@gmail.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002399L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002400W: bluesmoke.sourceforge.net
2401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002402F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002403
2404EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002405M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002406L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002407W: bluesmoke.sourceforge.net
2408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002409F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002410
Dave Peterson0e438e32006-03-26 01:38:55 -08002411EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002412M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002413L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002414W: bluesmoke.sourceforge.net
2415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002416F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002417
Clemens Ladischaf399172011-01-10 16:32:54 +01002418EDIROL UA-101/UA-1000 DRIVER
2419M: Clemens Ladisch <clemens@ladisch.de>
2420L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2421T: git git://git.alsa-project.org/alsa-kernel.git
2422S: Maintained
2423F: sound/usb/misc/ua101.c
2424
Peter Jones85a00d92010-09-22 13:05:04 -07002425EFIFB FRAMEBUFFER DRIVER
2426L: linux-fbdev@vger.kernel.org
2427M: Peter Jones <pjones@redhat.com>
2428S: Maintained
2429F: drivers/video/efifb.c
2430
Josh Triplett0bee8d22006-07-30 03:03:58 -07002431EFS FILESYSTEM
2432W: http://aeschi.ch.eu.org/efs/
2433S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002434F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002435
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002436EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002437M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2438M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002439L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002441F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002442
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002443EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
2444M: Breno Leitao <leitao@linux.vnet.ibm.com>
2445L: netdev@vger.kernel.org
2446S: Maintained
2447F: drivers/net/ehea/
2448
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002449EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002450M: Paul Gortmaker <paul.gortmaker@windriver.com>
2451M: Matt Mackall <mpm@selenic.com>
2452M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002453L: linux-embedded@vger.kernel.org
2454S: Maintained
2455
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002456EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002457M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002458L: linux-scsi@vger.kernel.org
2459W: http://sourceforge.net/projects/lpfcxxxx
2460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002461F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002462
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002463ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002464M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002465S: Maintained
2466F: drivers/misc/cb710/
2467F: drivers/mmc/host/cb710-mmc.*
2468F: include/linux/cb710.h
2469
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002470ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2471M: Maxim Levitsky <maximlevitsky@gmail.com>
2472S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002473F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002476M: Christopher Hoover <ch@murgatroid.com>
2477M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002479F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002481EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002483S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002484T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002485F: drivers/video/s1d13xxxfb.c
2486F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002490L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002495M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002496L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002497L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002498W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002500F: include/linux/netfilter_bridge/
2501F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
2503ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002504M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002509M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002510L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002512F: Documentation/filesystems/ext2.txt
2513F: fs/ext2/
2514F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002517M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002518M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002519M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002520L: linux-ext4@vger.kernel.org
2521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002522F: Documentation/filesystems/ext3.txt
2523F: fs/ext3/
2524F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002525
2526EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002527M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002528M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002529L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002530W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002531Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002533F: Documentation/filesystems/ext4.txt
2534F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Jean Delvaree53004e2006-01-09 23:26:14 +01002536F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002537M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002538L: lm-sensors@lm-sensors.org
2539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002540F: Documentation/hwmon/f71805f
2541F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002542
Eric Paris88b2dbd2010-08-18 12:25:50 -04002543FANOTIFY
2544M: Eric Paris <eparis@redhat.com>
2545S: Maintained
2546F: fs/notify/fanotify/
2547F: include/linux/fanotify.h
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002550M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551W: http://www.farsite.co.uk/
2552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002553F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Akinobu Mitac5408b82007-04-23 14:41:20 -07002555FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002556M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002558F: Documentation/fault-injection/
2559F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002560
Robert Lovecae727d2010-02-16 12:16:00 -08002561FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2562M: Robert Love <robert.w.love@intel.com>
2563L: devel@open-fcoe.org
2564W: www.Open-FCoE.org
2565S: Supported
2566F: drivers/scsi/libfc/
2567F: drivers/scsi/fcoe/
2568F: include/scsi/fc/
2569F: include/scsi/libfc.h
2570F: include/scsi/libfcoe.h
2571
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002572FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002573M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002574L: linux-fsdevel@vger.kernel.org
2575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002576F: include/linux/fcntl.h
2577F: include/linux/fs.h
2578F: fs/fcntl.c
2579F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002580
2581FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002582M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002583L: linux-fsdevel@vger.kernel.org
2584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002585F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002586
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002587FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002588M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002589L: lm-sensors@lm-sensors.org
2590S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002591F: drivers/hwmon/f75375s.c
2592F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002593
Clemens Ladischa331b0c2011-05-25 09:48:48 +02002594FIREWIRE AUDIO DRIVERS
2595M: Clemens Ladisch <clemens@ladisch.de>
2596L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2597T: git git://git.alsa-project.org/alsa-kernel.git
2598S: Maintained
2599F: sound/firewire/
2600
Joe Perches7d2c86b2009-04-07 20:59:01 -07002601FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002603L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002604W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002605T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002607F: drivers/firewire/
2608F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002609F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002610
2611FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002612S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002613F: Documentation/firmware_class/
2614F: drivers/base/firmware*.c
2615F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002616
2617FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002618M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002619W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002622
2623FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002624M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002625L: netdev@vger.kernel.org
2626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002627F: drivers/net/wan/dlci.c
2628F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630FRAMEBUFFER LAYER
Paul Mundt56be1412011-03-23 08:29:07 +09002631M: Paul Mundt <lethal@linux-sh.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002632L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09002634Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Paul Mundtfc5fef52010-11-15 13:25:31 +09002635T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6.git
Paul Mundt56be1412011-03-23 08:29:07 +09002636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002637F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09002638F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09002639F: drivers/video/
2640F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07002641F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
Zhang Wei173acc72008-03-01 07:42:48 -07002643FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002644M: Li Yang <leoli@freescale.com>
2645M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002646L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002648F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002649
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002650FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002651M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002652L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002653L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002656
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002657FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002658M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002659L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002660L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002662F: arch/arm/plat-mxc/include/mach/imxfb.h
2663F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002664
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002665FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002666M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2667M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002668L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002669L: netdev@vger.kernel.org
2670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/net/fs_enet/
2672F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002673
Timur Tabid9e9d822008-04-24 08:45:26 +10002674FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002675M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002676L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002677S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002678F: arch/powerpc/sysdev/qe_lib/
2679F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002680
Joe Perchesb55ef922009-10-26 16:49:46 -07002681FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002682M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002683L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002684L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002685S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002686F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002687
Li Yangbeaf53b2007-05-25 13:54:02 +08002688FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002689M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002690L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002691L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002693F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002694
Timur Tabid9e9d822008-04-24 08:45:26 +10002695FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002696M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002697L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002698S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002699F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002700
2701FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002702M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002703L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002704L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002705S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002706F: sound/soc/fsl/fsl*
2707F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002708
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Pavel Machek71038f52009-01-15 13:51:02 -08002715FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Pavel Machek <pavel@ucw.cz>
2717M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002718L: linux-pm@lists.linux-foundation.org
2719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002720F: Documentation/power/freezing-of-tasks.txt
2721F: include/linux/freezer.h
2722F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002723
David Howellsa5432f52009-04-20 15:46:45 +01002724FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002726L: linux-cachefs@redhat.com
2727S: Supported
2728F: Documentation/filesystems/caching/
2729F: fs/fscache/
2730F: include/linux/fscache*.h
2731
David Howells5ab7ffe2007-04-10 15:10:45 +01002732FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002733M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Jonathan Woithe20b93732008-06-11 10:14:56 +09302737FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002738M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002739L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002741F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302742
Miklos Szeredi04578f12005-09-09 13:10:22 -07002743FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002744M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002745L: fuse-devel@lists.sourceforge.net
2746W: http://fuse.sourceforge.net/
2747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002748F: fs/fuse/
2749F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002754S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002755F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002758M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759L: linux-scsi@vger.kernel.org
2760W: http://www.icp-vortex.com/
2761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002762F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002764GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07002765M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002767F: drivers/i2c/busses/i2c-gpio.c
2768F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002769
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01002770GENERIC GPIO I2C MULTIPLEXER DRIVER
2771M: Peter Korsgaard <peter.korsgaard@barco.com>
2772L: linux-i2c@vger.kernel.org
2773S: Supported
2774F: drivers/i2c/muxes/gpio-i2cmux.c
2775F: include/linux/gpio-i2cmux.h
2776F: Documentation/i2c/muxes/gpio-i2cmux
2777
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002778GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/net/wan/c101.c
2783F: drivers/net/wan/hd6457*
2784F: drivers/net/wan/hdlc*
2785F: drivers/net/wan/n2.c
2786F: drivers/net/wan/pc300too.c
2787F: drivers/net/wan/pci200syn.c
2788F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002790GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002792L: linux-arch@vger.kernel.org
2793T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2794S: Maintained
2795F: include/asm-generic
2796
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002797GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002798M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002799L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002800S: Supported
2801F: drivers/uio/uio_pci_generic.c
2802
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002803GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002804M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002805L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002806W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002807T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2808T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002809S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002810F: Documentation/filesystems/gfs2*.txt
2811F: fs/gfs2/
2812F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002813
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002814GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002815M: Hansjoerg Lipp <hjlipp@web.de>
2816M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002817L: gigaset307x-common@lists.sourceforge.net
2818W: http://gigaset307x.sourceforge.net/
2819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: Documentation/isdn/README.gigaset
2821F: drivers/isdn/gigaset/
2822F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002823
Grant Likelya0dc00b2011-02-12 01:48:14 -07002824GPIO SUBSYSTEM
2825M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelya0dc00b2011-02-12 01:48:14 -07002826S: Maintained
2827T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07002828F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07002829F: drivers/gpio/
2830F: include/linux/gpio*
2831
Harry Wei71a6d0a2011-05-11 15:13:33 -07002832GRE DEMULTIPLEXER DRIVER
2833M: Dmitry Kozlov <xeb@mail.ru>
2834L: netdev@vger.kernel.org
2835S: Maintained
2836F: net/ipv4/gre.c
2837F: include/net/gre.h
2838
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002839GRETH 10/100/1G Ethernet MAC device driver
2840M: Kristoffer Glembo <kristoffer@gaisler.com>
2841L: netdev@vger.kernel.org
2842S: Maintained
2843F: drivers/net/greth*
2844
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002845GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002846M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002847L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002848T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002851
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002852GSPCA GL860 SUBDRIVER
2853M: Olivier Lorin <o.lorin@laposte.net>
2854L: linux-media@vger.kernel.org
2855T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2856S: Maintained
2857F: drivers/media/video/gspca/gl860/
2858
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002859GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002861L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002862T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002865
2866GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002868L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002869T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002872
Brian Johnson261982f2009-07-19 15:58:56 -03002873GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002874M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002875L: linux-media@vger.kernel.org
2876T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2877S: Maintained
2878F: drivers/media/video/gspca/sn9c20x.c
2879
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002880GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002882L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002883T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002885F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002886
2887GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002888M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002889W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002890L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002891T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002893F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002894
Harry Wei71a6d0a2011-05-11 15:13:33 -07002895HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
2896M: Frank Seidel <frank@f-seidel.de>
2897L: platform-driver-x86@vger.kernel.org
2898W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
2899S: Maintained
2900F: drivers/platform/x86/hdaps.c
2901
2902HWPOISON MEMORY FAILURE HANDLING
2903M: Andi Kleen <andi@firstfloor.org>
2904L: linux-mm@kvack.org
2905T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2906S: Maintained
2907F: mm/memory-failure.c
2908F: mm/hwpoison-inject.c
2909
2910HYPERVISOR VIRTUAL CONSOLE DRIVER
2911L: linuxppc-dev@lists.ozlabs.org
2912S: Odd Fixes
2913F: drivers/tty/hvc/
2914
Jean Delvare5b543962005-08-15 19:51:02 +02002915HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02002916M: Jean Delvare <khali@linux-fr.org>
2917M: Guenter Roeck <guenter.roeck@ericsson.com>
Jean Delvare5b543962005-08-15 19:51:02 +02002918L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002919W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02002920T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07002921T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02002922S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01002923F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002924F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002925F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002926
Michael Buesch844dd052006-06-26 00:24:59 -07002927HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002928M: Matt Mackall <mpm@selenic.com>
2929M: Herbert Xu <herbert@gondor.apana.org.au>
2930S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002931F: Documentation/hw_random.txt
2932F: drivers/char/hw_random/
2933F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002936M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002937L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002941HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002942M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002943L: iss_storagedev@hp.com
2944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002945F: Documentation/blockdev/cpqarray.txt
2946F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002947
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002948HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07002949M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002950L: iss_storagedev@hp.com
2951S: Supported
2952F: Documentation/scsi/hpsa.txt
2953F: drivers/scsi/hpsa*.[ch]
2954F: include/linux/cciss*.h
2955
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002956HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002958L: iss_storagedev@hp.com
2959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002960F: Documentation/blockdev/cciss.txt
2961F: drivers/block/cciss*
2962F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02002965L: linux-fsdevel@vger.kernel.org
2966S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002967F: Documentation/filesystems/hfs.txt
2968F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
2970HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972L: linux-nvidia@lists.surfsouth.com
2973W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002975F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002977HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: Pavel Machek <pavel@ucw.cz>
2979M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002980L: linux-pm@lists.linux-foundation.org
2981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002982F: arch/x86/power/
2983F: drivers/base/power/
2984F: kernel/power/
2985F: include/linux/suspend.h
2986F: include/linux/freezer.h
2987F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002988F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002989
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002990HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002992L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002993T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002995F: drivers/hid/
2996F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002997
Ingo Molnar38bed542007-02-22 09:09:34 +01002998HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002999M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01003000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: Documentation/timers/
3002F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003003F: kernel/time/clockevents.c
3004F: kernel/time/tick*.*
3005F: kernel/time/timer_*.c
Joe Perchese801dc52011-03-22 16:34:29 -07003006F: include/linux/clockevents.h
Joe Perches679655d2009-04-07 20:44:32 -07003007F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011L: linux-hams@vger.kernel.org
3012W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
3013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003014F: drivers/net/hamradio/dmascc.c
3015F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003017HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003018M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003019W: http://www.highpoint-tech.com
3020S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003021F: Documentation/scsi/hptiop.txt
3022F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003025M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026L: linux-hippi@sunsite.dk
3027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003028F: include/linux/hippidevice.h
3029F: include/linux/if_hippi.h
3030F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Jouni Malinenff1d2762005-05-12 22:54:16 -04003032HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003034L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003035L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003036W: http://hostap.epitest.fi/
3037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003039
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003040HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003041L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003042S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003043F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003045HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003046M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003048F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003049
Joe Perches7d2c86b2009-04-07 20:59:01 -07003050HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003051M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/timers/hpet.txt
3054F: drivers/char/hpet.c
3055F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003056
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003057HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003058M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003060F: arch/x86/kernel/hpet.c
3061F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003064M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003067F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Joe Perches7d2c86b2009-04-07 20:59:01 -07003069HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003071W: http://www.pharscape.org
3072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003074
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003075HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003076M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003077L: linux-input@vger.kernel.org
3078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003079F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003082M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003084F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003086I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003087M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003088L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003091
Jean Delvare5b543962005-08-15 19:51:02 +02003092I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3094M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003095L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003096W: http://i2c.wiki.kernel.org/
3097T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01003098T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: Documentation/i2c/
3101F: drivers/i2c/
3102F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003103F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Till Harbaume8c76ee2007-05-01 23:26:35 +02003105I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003106M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003107L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003108W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003110F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003113M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003119T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120S: Maintained
3121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003123M: Tony Luck <tony.luck@intel.com>
3124M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125L: linux-ia64@vger.kernel.org
3126W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003127T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133W: http://www.uni-mainz.de/~langm000/linux.html
3134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003140F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Santiago Leon9d348af2010-09-03 18:29:53 +00003142IBM Power Virtual Ethernet Device Driver
3143M: Santiago Leon <santil@linux.vnet.ibm.com>
3144L: netdev@vger.kernel.org
3145S: Supported
3146F: drivers/net/ibmveth.*
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148IBM ServeRAID RAID DRIVER
3149P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003153F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003155IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003158Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07003159T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003161F: Documentation/ide/
3162F: drivers/ide/
3163F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003165IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003167L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003169F: Documentation/cdrom/ide-cd
3170F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Andy Henroid27471fd2008-10-09 11:45:22 -07003172IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003173M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07003174L: linux-pm@lists.linux-foundation.org
3175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003176F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003177
Sergey Lapin02cf2282009-06-08 12:18:50 +00003178IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3180M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003181L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003182W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003183T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003184S: Maintained
3185F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003186F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003187
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003188IKANOS/ADI EAGLE ADSL USB DRIVER
3189M: Matthieu Castet <castet.matthieu@free.fr>
3190M: Stanislaw Gruszka <stf_xl@wp.pl>
3191S: Maintained
3192F: drivers/usb/atm/ueagle-atm.c
3193
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003194INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003197F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003200L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003201S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003202F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003205M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: Sean Hefty <sean.hefty@intel.com>
3207M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003208L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003209W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003210Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003211T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003213F: Documentation/infiniband/
3214F: drivers/infiniband/
3215F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Robert Lovec9f04f52005-07-15 12:21:07 -04003217INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: John McCutchan <john@johnmccutchan.com>
3219M: Robert Love <rlove@rlove.org>
3220M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003222F: Documentation/filesystems/inotify.txt
3223F: fs/notify/inotify/
3224F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003225
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3228M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003229L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003230Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003231T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003233F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003234
Henrik Rydberg3267a872010-06-24 19:10:40 -07003235INPUT MULTITOUCH (MT) PROTOCOL
3236M: Henrik Rydberg <rydberg@euromail.se>
3237L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003238T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003239S: Maintained
3240F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003241F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003242K: \b(ABS|SYN)_MT_
3243
Len Brown26717172010-03-08 14:07:30 -05003244INTEL IDLE DRIVER
3245M: Len Brown <lenb@kernel.org>
3246L: linux-pm@lists.linux-foundation.org
3247T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3248S: Supported
3249F: drivers/idle/intel_idle.c
3250
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003251INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003252M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003253L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003255F: Documentation/fb/intelfb.txt
3256F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003259M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003260L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003262F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303264INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003266L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303267W: http://www.lesswatts.org/projects/acpi/
3268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003269F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003274F: arch/x86/kernel/microcode_core.c
3275F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003277INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003278M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003280F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003281
David Woodhouse6c8909b2008-10-18 16:12:17 +01003282INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003283M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003284L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003285T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003287F: drivers/pci/intel-iommu.c
3288F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003289
Dan Williamsb3e5f262007-08-07 10:26:35 -07003290INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003293F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003294
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003295INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003298F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3299F: arch/arm/mach-ixp4xx/include/mach/npe.h
3300F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3301F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3302F: drivers/net/arm/ixp4xx_eth.c
3303F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003304
Michael Buesch844dd052006-06-26 00:24:59 -07003305INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003306M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003309
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003310INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003311M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003312L: netdev@vger.kernel.org
3313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003315
Jeff Kirsher0d164402010-10-05 01:15:17 +00003316INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003317M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3318M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3319M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003320M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3321M: Don Skidmore <donald.c.skidmore@intel.com>
3322M: Greg Rose <gregory.v.rose@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003323M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003324M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003325M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003326L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003327W: http://e1000.sourceforge.net/
Jeff Kirsherfa795e62010-12-10 00:09:08 -08003328T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-2.6.git
3329T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003331F: Documentation/networking/e100.txt
3332F: Documentation/networking/e1000.txt
3333F: Documentation/networking/e1000e.txt
3334F: Documentation/networking/igb.txt
3335F: Documentation/networking/igbvf.txt
3336F: Documentation/networking/ixgb.txt
3337F: Documentation/networking/ixgbe.txt
3338F: Documentation/networking/ixgbevf.txt
Joe Perches679655d2009-04-07 20:44:32 -07003339F: drivers/net/e100.c
3340F: drivers/net/e1000/
3341F: drivers/net/e1000e/
3342F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003343F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07003344F: drivers/net/ixgb/
3345F: drivers/net/ixgbe/
Jeff Kirsher0d164402010-10-05 01:15:17 +00003346F: drivers/net/ixgbevf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
James Ketrenos826d2ab2005-11-07 18:56:59 -06003348INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003349L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003350S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003351F: Documentation/networking/README.ipw2100
3352F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003353
3354INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003355L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003356S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003357F: Documentation/networking/README.ipw2200
3358F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003359
Shane Wang4bd96a72010-03-10 14:36:10 +08003360INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3361M: Joseph Cihula <joseph.cihula@intel.com>
3362M: Shane Wang <shane.wang@intel.com>
3363L: tboot-devel@lists.sourceforge.net
3364W: http://tboot.sourceforge.net
3365T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3366S: Supported
3367F: Documentation/intel_txt.txt
3368F: include/linux/tboot.h
3369F: arch/x86/kernel/tboot.c
3370
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003371INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003373M: linux-wimax@intel.com
3374L: wimax@linuxwimax.org
3375S: Supported
3376W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003377F: Documentation/wimax/README.i2400m
3378F: drivers/net/wimax/i2400m/
3379F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003380
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003381INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3382M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003383L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003384S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003385F: drivers/net/wireless/iwlegacy/
3386
Zhu Yib481de92007-09-25 17:54:57 -07003387INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003388M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003389M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003390L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003391W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003392T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003393S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003394F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003395
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003396INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3397M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003398M: Intel Linux Wireless <ilw@linux.intel.com>
3399L: linux-wireless@vger.kernel.org
3400S: Supported
3401W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3402F: drivers/net/wireless/iwmc3200wifi/
3403
Ralf Baechlecb109a02007-08-30 23:56:30 -07003404IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406L: linux-mips@linux-mips.org
3407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
Ralf Baechlecb109a02007-08-30 23:56:30 -07003410IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003412L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003413S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003414F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003415
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003416IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003417M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003419F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
Francois Romieu1202d6f2007-09-17 17:13:55 -07003421IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003422M: Francois Romieu <romieu@fr.zoreil.com>
3423M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003424L: netdev@vger.kernel.org
3425S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003426F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003427
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003428IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003430L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07003431T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003433F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003434
Corey Minyard4409ebe2006-04-20 02:43:12 -07003435IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003437L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003438W: http://openipmi.sourceforge.net/
3439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003440F: Documentation/IPMI.txt
3441F: drivers/char/ipmi/
3442F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003443
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003444IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003445M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003446L: linux-scsi@vger.kernel.org
3447W: http://www.adaptec.com/
3448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003449F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003450
3451IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Wensong Zhang <wensong@linux-vs.org>
3453M: Simon Horman <horms@verge.net.au>
3454M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003455L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003456L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003458F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07003459F: include/net/ip_vs.h
3460F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003461F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Randy Dunlape7839f22008-10-12 16:11:45 -07003463IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003464M: Jiri Kosina <jkosina@suse.cz>
3465M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003466S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003467T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08003468F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003469
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003470IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003472L: netdev@vger.kernel.org
3473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003474F: include/linux/ipx.h
3475F: include/net/ipx.h
3476F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003479M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003480L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01003481L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003483S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003484T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003485F: Documentation/networking/irda.txt
3486F: drivers/net/irda/
3487F: include/net/irda/
3488F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003490IRQ SUBSYSTEM
3491M: Thomas Gleixner <tglx@linutronix.de>
3492S: Maintained
3493T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core
3494F: kernel/irq/
3495
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003496ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003497M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003499F: Documentation/isapnp.txt
3500F: drivers/pnp/isapnp/
3501F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003502
Harry Wei71a6d0a2011-05-11 15:13:33 -07003503iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
3504M: Peter Jones <pjones@redhat.com>
3505M: Konrad Rzeszutek Wilk <konrad@kernel.org>
3506S: Maintained
3507F: drivers/firmware/iscsi_ibft*
3508
Mike Christie14816b12007-11-28 16:22:06 -08003509ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003510M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08003511L: open-iscsi@googlegroups.com
3512W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003513T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/scsi/*iscsi*
3516F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003520L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003521L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003523T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003525F: Documentation/isdn/
3526F: drivers/isdn/
3527F: include/linux/isdn.h
3528F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
3530ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003531M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003532L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533W: http://www.melware.de
3534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003535F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Jean Delvared6248702010-03-05 22:17:20 +01003537IT87 HARDWARE MONITORING DRIVER
3538M: Jean Delvare <khali@linux-fr.org>
3539L: lm-sensors@lm-sensors.org
3540S: Maintained
3541F: Documentation/hwmon/it87
3542F: drivers/hwmon/it87.c
3543
Hans Verkuil91821ff2007-12-02 09:35:33 -03003544IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003545M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003546L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003547L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003548T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003549W: http://www.ivtvdriver.org
3550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003551F: Documentation/video4linux/*.ivtv
3552F: drivers/media/video/ivtv/
3553F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003554
Guenter Roeck4453d732010-08-09 17:21:08 -07003555JC42.4 TEMPERATURE SENSOR DRIVER
3556M: Guenter Roeck <linux@roeck-us.net>
3557L: lm-sensors@lm-sensors.org
3558S: Maintained
3559F: drivers/hwmon/jc42.c
3560F: Documentation/hwmon/jc42
3561
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003562JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06003563M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003564L: jfs-discussion@lists.sourceforge.net
3565W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003566T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: Documentation/filesystems/jfs.txt
3569F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003570
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003571JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003572M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003573L: netdev@vger.kernel.org
3574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003575F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003579L: linux-mtd@lists.infradead.org
3580W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003582F: fs/jffs2/
3583F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Josh Triplettde456d32006-07-30 03:04:00 -07003585JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003586M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003587M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003588L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003589S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04003590F: fs/jbd/
3591F: include/linux/ext3_jbd.h
3592F: include/linux/jbd.h
3593
3594JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
3595M: "Theodore Ts'o" <tytso@mit.edu>
3596L: linux-ext4@vger.kernel.org
3597S: Maintained
3598F: fs/jbd2/
3599F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003600
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003601JSM Neo PCI based serial card
3602M: Breno Leitao <leitao@linux.vnet.ibm.com>
3603L: linux-serial@vger.kernel.org
3604S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003605F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003606
Clemens Ladischaf399172011-01-10 16:32:54 +01003607K10TEMP HARDWARE MONITORING DRIVER
3608M: Clemens Ladisch <clemens@ladisch.de>
3609L: lm-sensors@lm-sensors.org
3610S: Maintained
3611F: Documentation/hwmon/k10temp
3612F: drivers/hwmon/k10temp.c
3613
Rudolf Marek4660cb32006-10-08 22:01:26 +02003614K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003615M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003616L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003618F: Documentation/hwmon/k8temp
3619F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
3621KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02003622M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003623L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02003624S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/kbuild/kconfig-language.txt
3626F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Vivek Goyalea6c2082006-05-20 14:59:55 -07003628KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Vivek Goyal <vgoyal@redhat.com>
3630M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003631L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003632W: http://lse.sourceforge.net/kdump/
3633S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003634F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003637M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638L: autofs@linux.kernel.org
3639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
Michal Marek70fb7ba2010-01-29 14:22:43 +01003642KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003643M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003644T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3645T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003646L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: Documentation/kbuild/
3649F: Makefile
3650F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003651F: scripts/basic/
3652F: scripts/mk*
3653F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003656L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07003657W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07003658S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003660KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: "J. Bruce Fields" <bfields@fieldses.org>
3662M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003663L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003665S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003666F: fs/nfsd/
3667F: include/linux/nfsd/
3668F: fs/lockd/
3669F: fs/nfs_common/
3670F: net/sunrpc/
3671F: include/linux/lockd/
3672F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Avi Kivity426d62e2006-12-13 00:34:03 -08003674KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003675M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003676M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003677L: kvm@vger.kernel.org
3678W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003680F: Documentation/*/kvm.txt
3681F: arch/*/kvm/
3682F: arch/*/include/asm/kvm*
3683F: include/linux/kvm*
3684F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003685
Joerg Roedelad8003d2008-09-10 20:01:07 +02003686KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003687M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003688L: kvm@vger.kernel.org
3689W: http://kvm.qumranet.com
3690S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003691F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003692F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003693
Hollis Blanchard513014b2008-04-16 23:28:08 -05003694KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003695M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003696L: kvm-ppc@vger.kernel.org
3697W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003699F: arch/powerpc/include/asm/kvm*
3700F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003701
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003702KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003704L: kvm-ia64@vger.kernel.org
3705W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003707F: Documentation/ia64/kvm.txt
3708F: arch/ia64/include/asm/kvm*
3709F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003710
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003711KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Carsten Otte <cotte@de.ibm.com>
3713M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003714M: linux390@de.ibm.com
3715L: linux-s390@vger.kernel.org
3716W: http://www.ibm.com/developerworks/linux/linux390/
3717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003718F: Documentation/s390/kvm.txt
3719F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003720F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003721F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003722
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003723KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003724M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07003725W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07003726L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003728F: include/linux/kexec.h
3729F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003730
David Howellse9714612010-03-29 23:42:09 +01003731KEYS/KEYRINGS:
3732M: David Howells <dhowells@redhat.com>
3733L: keyrings@linux-nfs.org
3734S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07003735F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01003736F: include/linux/key.h
3737F: include/linux/key-type.h
3738F: include/keys/
3739F: security/keys/
3740
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003741KEYS-TRUSTED
3742M: David Safford <safford@watson.ibm.com>
3743M: Mimi Zohar <zohar@us.ibm.com>
3744L: linux-security-module@vger.kernel.org
3745L: keyrings@linux-nfs.org
3746S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003747F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003748F: include/keys/trusted-type.h
3749F: security/keys/trusted.c
3750F: security/keys/trusted.h
3751
3752KEYS-ENCRYPTED
3753M: Mimi Zohar <zohar@us.ibm.com>
3754M: David Safford <safford@watson.ibm.com>
3755L: linux-security-module@vger.kernel.org
3756L: keyrings@linux-nfs.org
3757S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07003758F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05003759F: include/keys/encrypted-type.h
3760F: security/keys/encrypted.c
3761F: security/keys/encrypted.h
3762
Jason Wessel5b778da2010-05-20 21:04:28 -05003763KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003765W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003766L: kgdb-bugreport@lists.sourceforge.net
3767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: Documentation/DocBook/kgdb.tmpl
3769F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003770F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003771F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003772F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003773F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003774
Pekka Enberg456db8c2008-04-28 22:47:29 +03003775KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02003777M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003778S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003779F: Documentation/kmemcheck.txt
3780F: arch/x86/include/asm/kmemcheck.h
3781F: arch/x86/mm/kmemcheck/
3782F: include/linux/kmemcheck.h
3783F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003784
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003785KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003786M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003787S: Maintained
3788F: Documentation/kmemleak.txt
3789F: include/linux/kmemleak.h
3790F: mm/kmemleak.c
3791F: mm/kmemleak-test.c
3792
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003793KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3795M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3796M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003797M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003799F: Documentation/kprobes.txt
3800F: include/linux/kprobes.h
3801F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003802
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003803KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003804M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003805W: http://miguelojeda.es/auxdisplay.htm
3806W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003808F: Documentation/auxdisplay/ks0108
3809F: drivers/auxdisplay/ks0108.c
3810F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003814S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003815F: Documentation/networking/lapb-module.txt
3816F: include/*/lapb.h
3817F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003820M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821L: linux-scsi@vger.kernel.org
3822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003823F: Documentation/scsi/53c700.txt
3824F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Richard Purdie263de9b2006-05-15 09:44:16 -07003826LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: drivers/leds/
3830F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003831
Jean Delvareb0461a42011-06-15 15:08:46 -07003832LEGACY EEPROM DRIVER
3833M: Jean Delvare <khali@linux-fr.org>
3834S: Maintained
3835F: Documentation/misc-devices/eeprom
3836F: drivers/misc/eeprom/eeprom.c
3837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003839M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840L: legousb-devel@lists.sourceforge.net
3841W: http://legousb.sourceforge.net/
3842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Rusty Russell568a17f2007-10-25 14:12:24 +10003845LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003846M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003847L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10003848W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06003849S: Odd Fixes
Rob Landley61516582011-05-06 09:27:36 -07003850F: Documentation/virtual/lguest/
Joe Perches679655d2009-04-07 20:44:32 -07003851F: arch/x86/lguest/
3852F: drivers/lguest/
3853F: include/linux/lguest*.h
3854F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858W: http://www.ibm.com/linux/ltc/projects/ppc
3859S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003860F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003862LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3864M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003866L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003867Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003868T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003870F: Documentation/powerpc/
3871F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003874M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003876L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003878F: arch/powerpc/platforms/powermac/
3879F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Grant Likely77a76362008-07-12 12:11:43 -06003881LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003882M: Grant Likely <grant.likely@secretlab.ca>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003883L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003884T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003886F: arch/powerpc/platforms/512x/
3887F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
3889LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3891M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003893L: linuxppc-dev@lists.ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003896F: arch/powerpc/platforms/40x/
3897F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Grant Likely260c02a2007-10-02 12:15:34 +10003899LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003900M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003901W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003902L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003903T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003905F: arch/powerpc/*/*virtex*
3906F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Tom Rinie93adf12005-07-26 12:49:53 -07003908LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Vitaly Bordug <vitb@kernel.crashing.org>
3910M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003911W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003912L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003913S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07003914F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07003915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003917M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003918W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003919L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003920S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003921F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Olof Johanssonab06ff32006-09-06 14:44:54 -05003923LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003925L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00003926S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003927F: arch/powerpc/platforms/pasemi/
3928F: drivers/*/*pasemi*
3929F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003932M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003933L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934S: Supported
3935
Harry Weia23ce6d2011-02-11 16:52:20 +01003936LIS3LV02D ACCELEROMETER DRIVER
3937M: Eric Piel <eric.piel@tremplin-utc.net>
3938S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01003939F: Documentation/misc-devices/lis3lv02d
3940F: drivers/misc/lis3lv02d/
Harry Weia23ce6d2011-02-11 16:52:20 +01003941
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003942LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003945F: include/linux/llc.h
3946F: include/net/llc*
3947F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003948
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003949LM73 HARDWARE MONITOR DRIVER
3950M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3951L: lm-sensors@lm-sensors.org
3952S: Maintained
3953F: drivers/hwmon/lm73.c
3954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003956M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003957L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003959F: Documentation/hwmon/lm83
3960F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
3962LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003963M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003964L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003966F: Documentation/hwmon/lm90
3967F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003969LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003970M: Peter Zijlstra <peterz@infradead.org>
3971M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003972T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: Documentation/lockdep*.txt
3975F: Documentation/lockstat.txt
3976F: include/linux/lockdep.h
3977F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003978
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003979LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003980M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003981L: linux-ntfs-dev@lists.sourceforge.net
3982W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003984F: Documentation/ldm.txt
3985F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Joern Engelef6ada32009-11-20 22:17:12 +01003987LogFS
3988M: Joern Engel <joern@logfs.org>
3989L: logfs@logfs.org
3990W: logfs.org
3991S: Maintained
3992F: fs/logfs/
3993
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003994LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003996M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003997L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003998L: linux-scsi@vger.kernel.org
3999W: http://www.lsilogic.com/support
4000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005L: linux-scsi@vger.kernel.org
4006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004007F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Guenter Roecke5f5c992010-06-25 11:59:54 -07004009LTC4261 HARDWARE MONITOR DRIVER
4010M: Guenter Roeck <linux@roeck-us.net>
4011L: lm-sensors@lm-sensors.org
4012S: Maintained
4013F: Documentation/hwmon/ltc4261
4014F: drivers/hwmon/ltc4261.c
4015
Mike Frysinger81365c32008-10-29 14:01:12 -07004016LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08004017M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
4018M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004019M: Mike Frysinger <vapier@gentoo.org>
4020M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004021L: ltp-list@lists.sourceforge.net (subscribers-only)
4022W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07004023T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004024S: Maintained
4025
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004026M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004027M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004028L: linux-m32r@ml.linux-m32r.org
4029L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4030W: http://www.linux-m32r.org/
4031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004032F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004033
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004035M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036L: linux-m68k@lists.linux-m68k.org
4037W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004038T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004040F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004041F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
4043M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004044M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004046L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004048F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052W: http://www.tazenda.demon.co.uk/phil/linux-hp
4053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004054F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Jiri Benc64a327a2007-05-05 11:47:08 -07004056MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004058L: linux-wireless@vger.kernel.org
4059W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004060T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004062F: Documentation/networking/mac80211-injection.txt
4063F: include/net/mac80211.h
4064F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004065
Stefano Brivio1036d862007-12-23 04:46:27 +01004066MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004067M: Stefano Brivio <stefano.brivio@polimi.it>
4068M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004069L: linux-wireless@vger.kernel.org
4070W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07004071T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004073F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004074
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004075MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004077L: netdev@vger.kernel.org
4078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: drivers/net/macvlan.c
4080F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004081
Michael Kerriskfaf16682005-07-31 22:34:47 -07004082MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004083M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004084W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004085L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004086S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004087
Stefano Brivio74cda162007-11-19 20:27:46 +01004088MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004089M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004090L: libertas-dev@lists.infradead.org
4091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004092F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004093
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004094MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004095M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004096L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004098F: drivers/net/mv643xx_eth.*
4099F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004101MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004102M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004103L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004104S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004105F: drivers/net/wireless/mwl8k.c
4106
Pierre Ossman2a695672009-03-16 19:52:26 +01004107MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004108M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004109S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004110F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004111
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004112MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Mirko Lindner <mlindner@syskonnect.de>
4114M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004115W: http://www.syskonnect.com
4116S: Supported
4117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004119L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004120S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004121F: drivers/video/matrox/matroxfb_*
4122F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004124MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004125M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004126L: lm-sensors@lm-sensors.org
4127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004128F: Documentation/hwmon/max6650
4129F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004130
Joe Perches127c49a2009-04-08 08:34:04 -07004131MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004133P: LinuxTV.org Project
4134L: linux-media@vger.kernel.org
4135W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004136Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07004137T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4138S: Maintained
4139F: Documentation/dvb/
4140F: Documentation/video4linux/
4141F: drivers/media/
4142F: include/media/
4143F: include/linux/dvb/
4144F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004145
4146MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004148L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004149W: http://megaraid.lsilogic.com
4150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004151F: Documentation/scsi/megaraid.txt
4152F: drivers/scsi/megaraid.*
4153F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004154
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004155MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157W: http://www.linux-mm.org
4158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004159F: include/linux/mm.h
4160F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004161
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004162MEMORY RESOURCE CONTROLLER
Balbir Singh185e5952011-06-15 15:08:30 -07004163M: Balbir Singh <bsingharora@gmail.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08004164M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004166L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004168F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004169F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004174W: http://www.linux-mtd.infradead.org/
4175Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004176T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: drivers/mtd/
4179F: include/linux/mtd/
4180F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Michal Simekc6375b02009-03-27 14:25:52 +01004182MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004183M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01004184L: microblaze-uclinux@itee.uq.edu.au
4185W: http://www.monstr.eu/fdt/
4186T: git git://git.monstr.eu/linux-2.6-microblaze.git
4187S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004188F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
4190MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07004191M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
4195MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01004197W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07004199T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00004200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/mips/
4202F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
4204MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004207F: Documentation/ia64/mca.txt
4208F: Documentation/mca.txt
4209F: drivers/mca/
4210F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
4212MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004213M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004215F: include/linux/module.h
4216F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
4218MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004220S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004221F: Documentation/video4linux/meye.txt
4222F: drivers/media/video/meye.*
4223F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Pavel Pisac58ff042007-05-16 01:10:41 +02004225MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004226M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004227L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004229F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004234F: drivers/input/mouse/
4235F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Jiri Slabyb9705b62008-04-30 00:53:48 -07004237MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004238M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004241F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004242
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004243MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004244M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004245L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004248
Anisse Astier0f1006b2009-12-17 11:28:49 +01004249MSI WMI SUPPORT
4250M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004251L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004252S: Supported
4253F: drivers/platform/x86/msi-wmi.c
4254
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004255MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004256M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004257T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004259F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004260
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004261MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004262M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004263L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004264T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: drivers/mmc/
4267F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004268
David Brownell15a05802007-08-08 09:12:54 -07004269MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004270S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004271F: drivers/mmc/host/mmc_spi.c
4272F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004275M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004277F: Documentation/sound/oss/MultiSound
4278F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
Jiri Slabyd7354102006-12-08 02:38:35 -08004280MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004281S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004282F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004283F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004284
Felipe Balbi550a7372008-07-24 12:27:36 +03004285MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004286M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004287L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004288T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004290F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004291
Brice Goglin2d3cf582008-05-17 12:45:36 +02004292MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004293M: Andrew Gallatin <gallatin@myri.com>
4294M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004295L: netdev@vger.kernel.org
4296W: http://www.myri.com/scs/download-Myri10GE.html
4297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004298F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004299
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07004301M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004303F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304
Daniel Mack23dc05a2011-05-18 11:28:38 +02004305NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4306M: Daniel Mack <zonque@gmail.com>
4307S: Maintained
4308L: alsa-devel@alsa-project.org
4309W: http://www.native-instruments.com
4310F: sound/usb/caiaq/
4311
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004313M: Petr Vandrovec <petr@vandrovec.name>
4314S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004315F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
4317NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319L: linux-scsi@vger.kernel.org
4320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004321F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004323NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004325L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004326W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004327S: Supported
4328F: drivers/infiniband/hw/nes/
4329
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004330NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004331M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07004332L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004334F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004335
Jon Masonb2f5a052010-07-15 08:47:27 +00004336NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004337M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004338L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004339W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4340W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004341S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004342F: Documentation/networking/s2io.txt
4343F: drivers/net/s2io*
Jon Masonb2f5a052010-07-15 08:47:27 +00004344F: Documentation/networking/vxge.txt
4345F: drivers/net/vxge/
Jiri Slaby4a584482007-08-30 23:56:39 -07004346
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347NETFILTER/IPTABLES/IPCHAINS
4348P: Rusty Russell
4349P: Marc Boucher
4350P: James Morris
4351P: Harald Welte
4352P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004354L: netfilter-devel@vger.kernel.org
4355L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004356L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357W: http://www.netfilter.org/
4358W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08004359T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004361F: include/linux/netfilter*
4362F: include/linux/netfilter/
4363F: include/net/netfilter/
4364F: net/*/netfilter.c
4365F: net/*/netfilter/
4366F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
Paul Moore4cc67732006-09-25 15:57:13 -07004368NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07004369M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004370W: http://netlabel.sf.net
4371L: netdev@vger.kernel.org
4372S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004373F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004374F: include/net/netlabel.h
4375F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004376
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004380W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004382F: include/linux/netrom.h
4383F: include/net/netrom.h
4384F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004386NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004387M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004389F: Documentation/blockdev/nbd.txt
4390F: drivers/block/nbd.c
4391F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Neil Horman6e436502009-10-05 03:56:55 +00004393NETWORK DROP MONITOR
4394M: Neil Horman <nhorman@tuxdriver.com>
4395L: netdev@vger.kernel.org
4396S: Maintained
4397W: https://fedorahosted.org/dropwatch/
4398F: net/core/drop_monitor.c
4399
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004402L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004403W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004404W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004405T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08004406T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004408F: net/
4409F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004410F: include/linux/in.h
4411F: include/linux/net.h
4412F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
4414NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004415M: "David S. Miller" <davem@davemloft.net>
4416M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
4417M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
4418M: James Morris <jmorris@namei.org>
4419M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4420M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004421L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004422T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: net/ipv4/
4425F: net/ipv6/
4426F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00004427F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
James Morris10e2ff12007-08-25 14:41:28 -07004429NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07004430M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07004431L: netdev@vger.kernel.org
4432S: Maintained
4433
John W. Linville29f8f632006-01-18 14:52:48 -08004434NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004436L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004437Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004438T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004439S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004440F: net/mac80211/
4441F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004442F: net/wireless/
4443F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004444F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004445F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004446F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004447
Joe Perches788873a2009-04-16 09:38:45 +00004448NETWORKING DRIVERS
4449L: netdev@vger.kernel.org
4450W: http://www.linuxfoundation.org/en/Net
4451T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004452T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004453S: Odd Fixes
4454F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004455F: include/linux/if_*
4456F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004457
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004458NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004459M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004460L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004461W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004463F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004464
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004465NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004466M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004467L: linux-nfs@vger.kernel.org
4468W: http://client.linux-nfs.org
4469T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004471F: fs/lockd/
4472F: fs/nfs/
4473F: fs/nfs_common/
4474F: net/sunrpc/
4475F: include/linux/lockd/
4476F: include/linux/nfs*
4477F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
4479NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Jan-Pascal van Best <janpascal@vanbest.org>
4481M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004482L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004486NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004488L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004489W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09004490T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004492F: Documentation/filesystems/nilfs2.txt
4493F: fs/nilfs2/
4494F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004495
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004500F: Documentation/scsi/NinjaSCSI.txt
4501F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: GOTO Masanori <gotom@debian.or.jp>
4505M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004508F: Documentation/scsi/NinjaSCSI.txt
4509F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004512M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004514W: http://www.tuxera.com/
Joe Perches54e58812009-04-07 21:08:10 -07004515T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004517F: Documentation/filesystems/ntfs.txt
4518F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004520NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004521M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004522L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004524F: drivers/video/riva/
4525F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Tony Lindgrenf5525782009-05-28 13:23:53 -07004527OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004528M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004529L: linux-omap@vger.kernel.org
4530W: http://www.muru.com/linux/omap/
4531W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004532Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004533T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4534S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004535F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004536
4537OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004539L: linux-omap@vger.kernel.org
4540S: Maintained
4541F: arch/arm/*omap*/*clock*
4542
4543OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08004544M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004545L: linux-omap@vger.kernel.org
4546S: Maintained
4547F: arch/arm/*omap*/*pm*
4548
Paul Walmsley692ab1f2011-03-09 18:44:28 -07004549OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
4550M: Rajendra Nayak <rnayak@ti.com>
4551M: Paul Walmsley <paul@pwsan.com>
4552L: linux-omap@vger.kernel.org
4553S: Maintained
4554F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
4555F: arch/arm/mach-omap2/powerdomain44xx.c
4556F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
4557F: arch/arm/mach-omap2/clockdomain44xx.c
4558
Tony Lindgrenf5525782009-05-28 13:23:53 -07004559OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004561L: alsa-devel@alsa-project.org (subscribers-only)
4562L: linux-omap@vger.kernel.org
4563S: Maintained
4564F: sound/soc/omap/
4565
4566OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004567M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004568L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004569L: linux-omap@vger.kernel.org
4570S: Maintained
4571F: drivers/video/omap/
4572
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004573OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02004574M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004575L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004576L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004577S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004578F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004579F: Documentation/arm/OMAP/DSS
4580
Tony Lindgrenf5525782009-05-28 13:23:53 -07004581OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004583L: linux-omap@vger.kernel.org
4584S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004585F: drivers/mmc/host/omap.c
4586
4587OMAP HS MMC SUPPORT
4588M: Madhusudhan Chikkature <madhu.cr@ti.com>
4589L: linux-omap@vger.kernel.org
4590S: Maintained
4591F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004592
4593OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004594M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004595S: Maintained
4596F: drivers/char/hw_random/omap-rng.c
4597
Paul Walmsleyf400c822010-12-06 19:08:54 -07004598OMAP HWMOD SUPPORT
4599M: Benoît Cousson <b-cousson@ti.com>
4600M: Paul Walmsley <paul@pwsan.com>
4601L: linux-omap@vger.kernel.org
4602S: Maintained
4603F: arch/arm/mach-omap2/omap_hwmod.c
4604F: arch/arm/plat-omap/include/plat/omap_hwmod.h
4605
4606OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4607M: Benoît Cousson <b-cousson@ti.com>
4608L: linux-omap@vger.kernel.org
4609S: Maintained
4610F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4611
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03004612OMAP IMAGE SIGNAL PROCESSOR (ISP)
4613M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4614L: linux-media@vger.kernel.org
4615S: Maintained
4616F: drivers/media/video/omap3isp/*
4617
Tony Lindgrenf5525782009-05-28 13:23:53 -07004618OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004619M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004620L: linux-usb@vger.kernel.org
4621L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004622T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07004623S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004624F: drivers/usb/*/*omap*
4625F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004626
Bob Copeland0ad122d2008-07-25 19:45:18 -07004627OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004629L: linux-karma-devel@lists.sourceforge.net
4630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004631F: Documentation/filesystems/omfs.txt
4632F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004633
Harald Weltec1986ee2005-11-13 16:06:29 -08004634OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004637F: drivers/char/pcmcia/cm4000_cs.c
4638F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004639
Harald Welte77c44ab2005-11-13 16:06:26 -08004640OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004643F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004644
Jonathan Corbet77d51402007-03-22 19:44:17 -03004645OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004646M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004647L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004648T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004650F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004651
Thomas Gleixner431bca72007-05-02 09:31:35 +02004652ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004654L: linux-mtd@lists.infradead.org
4655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004656F: drivers/mtd/onenand/
4657F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004660M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661L: osst-users@lists.sourceforge.net
4662L: linux-scsi@vger.kernel.org
4663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004664F: drivers/scsi/osst*
4665F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004667OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004668M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004669L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004671F: Documentation/i2c/busses/i2c-ocores
4672F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004673
Grant Likely860c44c2009-10-26 16:49:49 -07004674OPEN FIRMWARE AND FLATTENED DEVICE TREE
4675M: Grant Likely <grant.likely@secretlab.ca>
Paul Bolle78bba982011-02-12 12:33:59 +01004676L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07004677W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004678T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004679S: Maintained
4680F: drivers/of
4681F: include/linux/of*.h
4682K: of_get_property
4683
Clemens Ladischaf399172011-01-10 16:32:54 +01004684OPL4 DRIVER
4685M: Clemens Ladisch <clemens@ladisch.de>
4686L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4687T: git git://git.alsa-project.org/alsa-kernel.git
4688S: Maintained
4689F: sound/drivers/opl4/
4690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004692M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693L: oprofile-list@lists.sf.net
4694S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004695F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004696F: arch/*/oprofile/
4697F: drivers/oprofile/
4698F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004700ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004701M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08004702M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004703L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4704W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004705T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/filesystems/ocfs2.txt
4708F: Documentation/filesystems/dlmfs.txt
4709F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07004712L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004713L: orinoco-users@lists.sourceforge.net
4714L: orinoco-devel@lists.sourceforge.net
David Kilroy3a59bab2010-08-21 12:13:45 +01004715W: http://linuxwireless.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07004716W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01004717S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004718F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004720OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Boaz Harrosh <bharrosh@panasas.com>
4722M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004723L: osd-dev@open-osd.org
4724W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004725T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004726S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004727F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004728F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004729F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004730
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004731P54 WIRELESS DRIVER
Christian Lamparter084cb0fe72010-07-12 19:01:41 +02004732M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004733L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0fe72010-07-12 19:01:41 +02004734W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004736F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004737
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004738PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004739M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004740L: netdev@vger.kernel.org
4741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004742F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004743
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004744PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004746L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004749
Steffen Klassert48fc2672010-08-13 10:10:46 -04004750PADATA PARALLEL EXECUTION MECHANISM
4751M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04004752L: linux-crypto@vger.kernel.org
4753S: Maintained
4754F: kernel/padata.c
4755F: include/linux/padata.h
4756F: Documentation/padata.txt
4757
Harald Welte709ee532008-09-23 17:46:57 +02004758PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004760L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004762F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004763
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01004764PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: David Howells <dhowells@redhat.com>
4766M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004767L: linux-am33-list@redhat.com (moderated for non-subscribers)
4768W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004770F: Documentation/mn10300/
4771F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004772
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004774L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004775S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004776F: drivers/parport/
4777F: include/linux/parport*.h
4778F: drivers/char/ppdev.c
4779F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004781PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004782M: Jeremy Fitzhardinge <jeremy@xensource.com>
4783M: Chris Wright <chrisw@sous-sol.org>
4784M: Alok Kataria <akataria@vmware.com>
4785M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00004786L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004788F: Documentation/ia64/paravirt_ops.txt
4789F: arch/*/kernel/paravirt*
4790F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004794L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795W: http://www.torque.net/linux-pp.html
4796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: Documentation/blockdev/paride.txt
4798F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
4800PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004801M: Kyle McMartin <kyle@mcmartin.ca>
4802M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004803M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004804L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004806Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004807T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004809F: arch/parisc/
4810F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Jim Cromie1662d322006-10-06 00:43:59 -07004812PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004813M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004814L: lm-sensors@lm-sensors.org
4815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004816F: Documentation/hwmon/pc87360
4817F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004818
4819PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004820M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004822F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004823
Jean Delvare1ad107f2010-08-14 21:09:00 +02004824PC87427 HARDWARE MONITORING DRIVER
4825M: Jean Delvare <khali@linux-fr.org>
4826L: lm-sensors@lm-sensors.org
4827S: Maintained
4828F: Documentation/hwmon/pc87427
4829F: drivers/hwmon/pc87427.c
4830
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004831PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004832M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004833S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004834F: drivers/leds/leds-pca9532.c
4835F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004836
Guenter Roeck5ce914a2010-10-24 18:16:59 +02004837PCA9541 I2C BUS MASTER SELECTOR DRIVER
4838M: Guenter Roeck <guenter.roeck@ericsson.com>
4839L: linux-i2c@vger.kernel.org
4840S: Maintained
4841F: drivers/i2c/muxes/pca9541.c
4842
Wolfram Sanga1867d32009-09-18 22:45:51 +02004843PCA9564/PCA9665 I2C BUS DRIVER
4844M: Wolfram Sang <w.sang@pengutronix.de>
4845L: linux-i2c@vger.kernel.org
4846S: Maintained
4847F: drivers/i2c/algos/i2c-algo-pca.c
4848F: drivers/i2c/busses/i2c-pca-*
4849F: include/linux/i2c-algo-pca.h
4850F: include/linux/i2c-pca-platform.h
4851
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004852PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004853M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004854L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004856F: Documentation/PCI/pci-error-recovery.txt
4857F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004861L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004862Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004863T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004865F: Documentation/PCI/
4866F: drivers/pci/
4867F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004869PCI HOTPLUG
4870M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004871L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004872S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004873F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004874
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004876P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004877L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004878W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004879T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: Documentation/pcmcia/
4882F: drivers/pcmcia/
4883F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884
4885PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08004886M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004887L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Steffen Klassert48fc2672010-08-13 10:10:46 -04004891PCRYPT PARALLEL CRYPTO ENGINE
4892M: Steffen Klassert <steffen.klassert@secunet.com>
4893L: linux-crypto@vger.kernel.org
4894S: Maintained
4895F: crypto/pcrypt.c
4896F: include/crypto/pcrypt.h
4897
Tejun Heoe72df0b2010-12-10 17:02:49 +01004898PER-CPU MEMORY ALLOCATOR
4899M: Tejun Heo <tj@kernel.org>
4900M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01004901T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
4902S: Maintained
4903F: include/linux/percpu*.h
4904F: mm/percpu*.c
4905F: arch/*/include/asm/percpu.h
4906
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004907PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07004908M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004910F: include/linux/delayacct.h
4911F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004912
Ingo Molnar57c0c152009-09-21 12:20:38 +02004913PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004914M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4915M: Paul Mackerras <paulus@samba.org>
4916M: Ingo Molnar <mingo@elte.hu>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02004917M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004918S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004919F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004920F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004921F: arch/*/kernel/perf_event*.c
4922F: arch/*/kernel/*/perf_event*.c
4923F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004924F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004925F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004926F: arch/*/kernel/perf_callchain.c
4927F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004928
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004929PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004930M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004931L: linux-abi-devel@lists.sourceforge.net
4932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004934
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00004935PHONET PROTOCOL
4936M: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
4937S: Supported
4938F: Documentation/networking/phonet.txt
4939F: include/linux/phonet.h
4940F: include/net/phonet/
4941F: net/phonet/
4942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004944M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945L: linux-mtd@lists.infradead.org
4946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004947F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948
Peter Osterlund249a6772005-09-27 21:45:30 -07004949PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004950M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004952F: drivers/block/pktcdvd.c
4953F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004954
GuanXuetaob31d8272011-01-16 00:35:49 +08004955PKUNITY SOC DRIVERS
4956M: Guan Xuetao <gxt@mprc.pku.edu.cn>
4957W: http://mprc.pku.edu.cn/~guanxuetao/linux
4958S: Maintained
4959T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
4960F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08004961F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08004962F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08004963F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08004964
Anil Ravindranath89a36812009-08-25 17:35:18 -07004965PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004966M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004967L: linux-scsi@vger.kernel.org
4968W: http://www.pmc-sierra.com/
4969S: Supported
4970F: drivers/scsi/pmcraid.*
4971
jack wangdbf9bfe2009-10-14 16:19:21 +08004972PMC SIERRA PM8001 DRIVER
4973M: jack_wang@usish.com
4974M: lindar_liu@usish.com
4975L: linux-scsi@vger.kernel.org
4976S: Supported
4977F: drivers/scsi/pm8001/
4978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004982F: fs/timerfd.c
4983F: include/linux/timer*
4984F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Anton Vorontsov3be86142007-07-15 04:43:36 +04004986POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: Anton Vorontsov <cbou@mail.ru>
4988M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004989T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: include/linux/power_supply.h
4992F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07004996M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004998F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
Vitaly Wool999445d2007-01-04 13:07:03 +01005000PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005002L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005004F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005007M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008L: linux-ppp@vger.kernel.org
5009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005010F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005013M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: net/atm/pppoatm.c
5016F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005019M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005021F: drivers/net/pppoe.c
5022F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
James Chapmana6d23702007-06-27 15:53:17 -07005024PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005025M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005026S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005027F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005028F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005029
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005030PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005031M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005032W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5033L: linuxpps@ml.enneenne.com (subscribers-only)
5034S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005035F: Documentation/pps/
5036F: drivers/pps/
5037F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005038
Harry Wei71a6d0a2011-05-11 15:13:33 -07005039PPTP DRIVER
5040M: Dmitry Kozlov <xeb@mail.ru>
5041L: netdev@vger.kernel.org
5042S: Maintained
5043F: drivers/net/pptp.c
5044W: http://sourceforge.net/projects/accel-pptp
5045
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005047M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048L: kpreempt-tech@lists.sourceforge.net
5049W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005051F: Documentation/preempt-locking.txt
5052F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
5054PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005055M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005056L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005057W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005058S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005059F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005061PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005062M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005063L: linux-ide@vger.kernel.org
5064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005066
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005067PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005068M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005069L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005070L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005073
Geoff Levandf58a9d12006-11-23 00:46:51 +01005074PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005075M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005076L: linuxppc-dev@lists.ozlabs.org
5077L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: arch/powerpc/boot/ps3*
5080F: arch/powerpc/include/asm/lv1call.h
5081F: arch/powerpc/include/asm/ps3*.h
5082F: arch/powerpc/platforms/ps3/
5083F: drivers/*/ps3*
5084F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005085F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005086F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005087F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005088
Jim Pariscffb4add2009-01-06 11:32:10 +00005089PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005091L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005092S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005093F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005094
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005095PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: Roland McGrath <roland@redhat.com>
5097M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005098S: Maintained
5099F: include/asm-generic/syscall.h
5100F: include/linux/ptrace.h
5101F: include/linux/regset.h
5102F: include/linux/tracehook.h
5103F: kernel/ptrace.c
5104
Michael Krufky83202042006-07-03 00:24:18 -07005105PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005106M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005107L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005108L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005109W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07005110T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07005111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005112F: Documentation/video4linux/README.pvrusb2
5113F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005114
Eric Miao30ec2612008-06-12 15:21:41 -07005115PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: Eric Miao <eric.y.miao@gmail.com>
5117M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005118L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: arch/arm/mach-pxa/
5121F: drivers/pcmcia/pxa2xx*
5122F: drivers/spi/pxa2xx*
5123F: drivers/usb/gadget/pxa2*
5124F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005125F: sound/arm/pxa*
5126F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005128PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Eric Miao <eric.y.miao@gmail.com>
5130M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005131L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005132T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005133S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08005134
Eric Miao5fa82eb2009-03-20 12:52:24 +08005135PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005136M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07005138T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08005139S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08005140
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005141MMP2 SUPPORT (aka ARMADA610)
5142M: Haojian Zhuang <haojian.zhuang@marvell.com>
5143M: Eric Miao <eric.y.miao@gmail.com>
5144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5145T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
5146S: Maintained
5147
Pierre Ossman272f1332007-05-14 21:25:26 +02005148PXA MMCI DRIVER
5149S: Orphan
5150
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005151PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005152M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005153L: rtc-linux@googlegroups.com
5154S: Maintained
5155
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005156QLOGIC QLA1280 SCSI DRIVER
5157M: Michael Reed <mdr@sgi.com>
5158L: linux-scsi@vger.kernel.org
5159S: Maintained
5160F: drivers/scsi/qla1280.[ch]
5161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005164M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165L: linux-scsi@vger.kernel.org
5166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005167F: Documentation/scsi/LICENSE.qla2xxx
5168F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Ravi Anand883c98f2010-04-28 11:45:49 +05305170QLOGIC QLA4XXX iSCSI DRIVER
5171M: Ravi Anand <ravi.anand@qlogic.com>
5172M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5173M: iscsi-driver@qlogic.com
5174L: linux-scsi@vger.kernel.org
5175S: Supported
5176F: drivers/scsi/qla4xxx/
5177
Ron Mercer5a4faa82006-07-25 00:40:21 -07005178QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07005180M: linux-driver@qlogic.com
5181L: netdev@vger.kernel.org
5182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005183F: Documentation/networking/LICENSE.qla3xxx
5184F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07005185
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005186QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
5187M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07005188M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005189M: linux-driver@qlogic.com
5190L: netdev@vger.kernel.org
5191S: Supported
5192F: drivers/net/qlcnic/
5193
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005194QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005195M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005196M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005197M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005198L: netdev@vger.kernel.org
5199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005200F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005201
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204W: http://www.alarsen.net/linux/qnx4fs/
5205S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005206F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005207F: include/linux/qnx4_fs.h
5208F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005210RADOS BLOCK DEVICE (RBD)
5211F: include/linux/qnxtypes.h
5212M: Yehuda Sadeh <yehuda@hq.newdream.net>
5213M: Sage Weil <sage@newdream.net>
5214M: ceph-devel@vger.kernel.org
5215S: Supported
5216F: drivers/block/rbd.c
5217F: drivers/block/rbd_types.h
5218
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005220M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005221L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005223F: drivers/video/aty/radeon*
5224F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
5226RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005228L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005230F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Randy Dunlape7839f22008-10-12 16:11:45 -07005232RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005233P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005234M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005235M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01005236M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005237L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005238L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005239W: http://rt2x00.serialmonkey.com/
5240S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005241T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005242F: drivers/net/wireless/rt2x00/
5243
Nick Piggin9db55792008-02-08 04:19:49 -08005244RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005245M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005247F: Documentation/blockdev/ramdisk.txt
5248F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005249
Matt Mackall9e95ce22005-04-16 15:25:56 -07005250RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005251M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005253F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005254
Matt Porter394b7012005-11-07 01:00:15 -08005255RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005256M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08005257M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08005258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005259F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005260
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005261RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005262L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005263S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005264F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005265
5266RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Josh Triplett <josh@freedesktop.org>
5268M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005269S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005270T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07005271F: Documentation/RCU/torture.txt
5272F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005273
Florian Fainellic1f766b2008-02-06 22:39:44 +01005274RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07005275M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01005276S: Maintained
5277
Florian Fainellidb17f392007-12-19 11:30:30 +01005278RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005279M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01005280L: netdev@vger.kernel.org
5281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005282F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01005283
Andy Grovera09ed662009-02-24 15:30:41 +00005284RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00005286L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00005287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005288F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00005289
Josh Triplett595182b2006-10-04 02:17:21 -07005290READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Dipankar Sarma <dipankar@in.ibm.com>
5292M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07005293W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07005294S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005295T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005296F: Documentation/RCU/
5297F: include/linux/rcu*
5298F: include/linux/srcu*
5299F: kernel/rcu*
5300F: kernel/srcu*
5301X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07005302
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005303REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005304M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08005305L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005306Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005308F: Documentation/rtc.txt
5309F: drivers/rtc/
5310F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07005313L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005315F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
Ivo van Doorne08976452008-04-12 19:23:55 +02005317RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07005318M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02005319L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02005320S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08005321F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07005322F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02005323
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005324RICOH SMARTMEDIA/XD DRIVER
5325M: Maxim Levitsky <maximlevitsky@gmail.com>
5326S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07005327F: drivers/mtd/nand/r852.c
5328F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005329
Maxim Levitsky92634122011-03-25 01:56:59 -07005330RICOH R5C592 MEMORYSTICK DRIVER
5331M: Maxim Levitsky <maximlevitsky@gmail.com>
5332S: Maintained
5333F: drivers/memstick/host/r592.*
5334
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005335RISCOM8 DRIVER
5336S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005337F: Documentation/serial/riscom8.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005338F: drivers/staging/tty/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340ROCKETPORT DRIVER
5341P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342W: http://www.comtrol.com
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005345F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346
5347ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005348M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005350W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005352F: include/linux/rose.h
5353F: include/net/rose.h
5354F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Larry Finger59840482008-11-12 17:13:09 -06005356RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005357M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04005358L: linux-wireless@vger.kernel.org
5359W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005360T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005361S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005362F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04005363
Larry Finger59840482008-11-12 17:13:09 -06005364RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939bf2011-02-24 15:18:07 -03005365M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: Hin-Tak Leung <htl10@users.sourceforge.net>
5367M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005368L: linux-wireless@vger.kernel.org
5369W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005370T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005371S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005372F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06005373
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005374RTL8192CE WIRELESS DRIVER
5375M: Larry Finger <Larry.Finger@lwfinger.net>
5376M: Chaoming Li <chaoming_li@realsil.com.cn>
5377L: linux-wireless@vger.kernel.org
5378W: http://linuxwireless.org/
5379T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5380S: Maintained
5381F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06005382F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02005383
5384S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005385M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005386L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005388F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005389
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390S390
Joe Perches8b58be82009-07-29 15:04:30 -07005391M: Martin Schwidefsky <schwidefsky@de.ibm.com>
5392M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005394L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005395W: http://www.ibm.com/developerworks/linux/linux390/
5396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005397F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005398F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005399F: fs/partitions/ibm.c
5400F: Documentation/s390/
5401F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005402
5403S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Ursula Braun <ursula.braun@de.ibm.com>
5405M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005406M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005407L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005408W: http://www.ibm.com/developerworks/linux/linux390/
5409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005410F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005411
Felix Beckfeed9b62009-03-26 15:24:23 +01005412S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01005413M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005414M: linux390@de.ibm.com
5415L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005416W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005417S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005418F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005419
Heiko Carstens5238da42006-02-11 17:56:01 -08005420S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01005421M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005422M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005423L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005424W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005426F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427
Ursula Braundd96df22007-09-19 13:09:02 +02005428S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005429M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005430M: linux390@de.ibm.com
5431L: linux-s390@vger.kernel.org
5432W: http://www.ibm.com/developerworks/linux/linux390/
5433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005434F: drivers/s390/net/*iucv*
5435F: include/net/iucv/
5436F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005437
Ben Dooks4dde7f72008-06-30 22:40:38 +01005438S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005439M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005440L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005442F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005445M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005446L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005447T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448W: http://www.mihu.de/linux/saa7146
5449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005450F: drivers/media/common/saa7146*
5451F: drivers/media/video/*7146*
5452F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Mark Brown4a109cc2010-09-24 10:50:46 +01005454SAMSUNG AUDIO (ASoC) DRIVERS
Jassi Brarb9cbfcb2011-04-08 11:29:42 +05305455M: Jassi Brar <jassisinghbrar@gmail.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01005456L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5457S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00005458F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01005459
Alan Coxca749e22011-03-18 13:56:14 +00005460SERIAL DRIVERS
5461M: Alan Cox <alan@linux.intel.com>
5462L: linux-serial@vger.kernel.org
5463S: Maintained
5464F: drivers/tty/serial
5465
Viresh Kumaraecb7b62011-05-24 14:04:09 +05305466SYNOPSYS DESIGNWARE DMAC DRIVER
5467M: Viresh Kumar <viresh.kumar@st.com>
5468S: Maintained
5469F: include/linux/dw_dmac.h
5470F: drivers/dma/dw_dmac_regs.h
5471F: drivers/dma/dw_dmac.c
5472
Thomas Gleixner88606e82010-12-14 21:37:13 +01005473TIMEKEEPING, NTP
5474M: John Stultz <johnstul@us.ibm.com>
5475M: Thomas Gleixner <tglx@linutronix.de>
5476S: Supported
5477F: include/linux/clocksource.h
5478F: include/linux/time.h
5479F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01005480F: kernel/time/clocksource.c
5481F: kernel/time/time*.c
5482F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02005483F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01005484
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005485TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005486M: Huang Shijie <shijie8@gmail.com>
5487M: Kang Yong <kangyong@telegent.com>
5488M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005489S: Supported
5490F: drivers/media/video/tlg2300
5491
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005495F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
5497SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07005498M: Ingo Molnar <mingo@elte.hu>
5499M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005501F: kernel/sched*
5502F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Chen Liqin6bcf6732009-06-13 15:24:33 +08005504SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005505M: Chen Liqin <liqin.chen@sunplusct.com>
5506M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005507W: http://www.sunplusct.com
5508S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005509F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005510
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005512M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513L: linux-scsi@vger.kernel.org
5514W: http://www.kernel.dk
5515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005516F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Roland Dreierfb50a832010-10-07 09:54:53 -07005518SCSI RDMA PROTOCOL (SRP) INITIATOR
5519M: David Dillow <dillowda@ornl.gov>
5520L: linux-rdma@vger.kernel.org
5521S: Supported
5522W: http://www.openfabrics.org
5523Q: http://patchwork.kernel.org/project/linux-rdma/list/
5524T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5525F: drivers/infiniband/ulp/srp/
5526F: include/scsi/srp.h
5527
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530L: linux-scsi@vger.kernel.org
5531W: http://www.torque.net/sg
5532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/scsi/sg.c
5534F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
5536SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05005537M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005539T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5540T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5541T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005543F: drivers/scsi/
5544F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
5546SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005547M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548L: linux-scsi@vger.kernel.org
5549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005550F: Documentation/scsi/st.txt
5551F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552
5553SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005554M: Vlad Yasevich <vladislav.yasevich@hp.com>
5555M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005556L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005557W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/networking/sctp.txt
5560F: include/linux/sctp.h
5561F: include/net/sctp/
5562F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005565M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005566S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005567F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07005568F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07005569F: drivers/watchdog/scx200_wdt.c
5570F: drivers/i2c/busses/scx200*
5571F: drivers/mtd/maps/scx200_docflash.c
5572F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005573
5574SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005575M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005577F: drivers/char/scx200_gpio.c
5578F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005579
5580SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005581M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005583F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
Sascha Sommer6a369132008-07-15 14:21:29 +02005585SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005587L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005590
Randy Dunlape7839f22008-10-12 16:11:45 -07005591SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04005592M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005593L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005594T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5595S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005596F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005597
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005598SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005599M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005600L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005601L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005603F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
Ben Dooks0d1bb412009-06-14 13:52:37 +01005605SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005606M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005607L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005608S: Maintained
5609F: drivers/mmc/host/sdhci-s3c.c
5610
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005611SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5612M: Viresh Kumar <viresh.kumar@st.com>
5613L: linux-mmc@vger.kernel.org
5614S: Maintained
5615F: drivers/mmc/host/sdhci-spear.c
5616
James Morris8711cca2008-12-04 03:19:45 +11005617SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005618M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005619L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005620T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005621W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005622S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005623F: security/
James Morris8711cca2008-12-04 03:19:45 +11005624
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005626M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627S: Supported
5628
5629SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005630M: Stephen Smalley <sds@tycho.nsa.gov>
5631M: James Morris <jmorris@namei.org>
5632M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005633L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005634W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04005635T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005637F: include/linux/selinux*
5638F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04005639F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
John Johansenc1c124e2010-07-29 14:48:09 -07005641APPARMOR SECURITY MODULE
5642M: John Johansen <john.johansen@canonical.com>
5643L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5644W: apparmor.wiki.kernel.org
5645T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5646S: Supported
5647F: security/apparmor/
5648
Jiri Slabycef2cf02007-05-08 00:31:45 -07005649SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005650M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005652F: drivers/misc/phantom.c
5653F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005654
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005655SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005656M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005658T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005660F: drivers/ata/
5661F: include/linux/ata.h
5662F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305664SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005665M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08005666L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07005667W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08005668S: Supported
5669F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305670
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005671SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08005672M: Sathya Perla <sathya.perla@emulex.com>
5673M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
5674M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005675L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08005676W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005677S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005678F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005679
Ben Hutchings8ceee662008-04-27 12:55:59 +01005680SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005681M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5682M: Steve Hodgson <shodgson@solarflare.com>
5683M: Ben Hutchings <bhutchings@solarflare.com>
5684L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005686F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005687
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005688SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005691F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005692
5693SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005694M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005695L: linux-ia64@vger.kernel.org
5696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005697F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005698F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07005699F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005700
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005702M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703L: linux-visws-devel@lists.sf.net
5704W: http://linux-visws.sf.net
5705S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005706F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Jack Steiner75312612008-08-15 00:40:42 -07005708SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005712
Len Brown6349d992009-08-14 15:07:14 -04005713SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005714M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005715L: sfi-devel@simplefirmware.org
5716W: http://simplefirmware.org/
5717T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005718S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07005719F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04005720F: drivers/sfi/
5721F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005722
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723SIMTEC EB110ATX (Chalice CATS)
5724P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005725P: Vincent Sanders <vince@simtec.co.uk>
5726M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727W: http://www.simtec.co.uk/products/EB110ATX/
5728S: Supported
5729
5730SIMTEC EB2410ITX (BAST)
5731P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08005732P: Vincent Sanders <vince@simtec.co.uk>
5733M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734W: http://www.simtec.co.uk/products/EB2410ITX/
5735S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08005736F: arch/arm/mach-s3c2410/mach-bast.c
5737F: arch/arm/mach-s3c2410/bast-ide.c
5738F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005740TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08005741M: Sekhar Nori <nsekhar@ti.com>
5742M: Kevin Hilman <khilman@ti.com>
Sekhar Nori4b5dc962010-07-12 18:51:05 +05305743L: davinci-linux-open-source@linux.davincidsp.com (subscribers-only)
Joe Perches8a6e2532010-03-05 13:43:11 -08005744Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005745S: Supported
5746F: arch/arm/mach-davinci
5747
Francois Romieu92aab3c2005-07-30 13:11:18 +02005748SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005749M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005750L: netdev@vger.kernel.org
5751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005752F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005753
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005755M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005757L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005759F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005761SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005762M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005763L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005765F: Documentation/i2c/busses/i2c-sis96x
5766F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005767
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005769M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005772F: Documentation/fb/sisfb.txt
5773F: drivers/video/sis/
5774F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775
5776SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005777M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778W: http://www.winischhofer.at/linuxsisusbvga.shtml
5779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005782SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005783M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005784L: netdev@vger.kernel.org
5785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005786F: drivers/net/skge.*
5787F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005788
Christoph Lameter415ad262007-07-26 10:40:56 -07005789SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005790M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02005791M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005792M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07005793L: linux-mm@kvack.org
5794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: include/linux/sl?b*.h
5796F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005797
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005799M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005800S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005801F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005803SMM665 HARDWARE MONITOR DRIVER
5804M: Guenter Roeck <linux@roeck-us.net>
5805L: lm-sensors@lm-sensors.org
5806S: Maintained
5807F: Documentation/hwmon/smm665
5808F: drivers/hwmon/smm665.c
5809
Steve Glendinning9df73052010-08-14 21:08:54 +02005810SMSC EMC2103 HARDWARE MONITOR DRIVER
5811M: Steve Glendinning <steve.glendinning@smsc.com>
5812L: lm-sensors@lm-sensors.org
5813S: Supported
5814F: Documentation/hwmon/emc2103
5815F: drivers/hwmon/emc2103.c
5816
Hans de Goedea98d5062011-03-21 17:59:36 +01005817SMSC SCH5627 HARDWARE MONITOR DRIVER
5818M: Hans de Goede <hdegoede@redhat.com>
5819L: lm-sensors@lm-sensors.org
5820S: Supported
5821F: Documentation/hwmon/sch5627
5822F: drivers/hwmon/sch5627.c
5823
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005824SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005826L: lm-sensors@lm-sensors.org
5827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005828F: Documentation/hwmon/smsc47b397
5829F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005830
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005831SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005832M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005833L: netdev@vger.kernel.org
5834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005835F: include/linux/smsc911x.h
5836F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005837
Steve Glendinning2cb37722008-12-11 20:54:30 -08005838SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005840L: netdev@vger.kernel.org
5841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005842F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005844SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005845M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005846L: linux-altix@sgi.com
5847L: linux-ia64@vger.kernel.org
5848W: http://www.sgi.com/altix
5849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005850F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005851
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005852SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005854L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: include/media/v4l2*
5858F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005859
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005860SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005861M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005863F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005869F: drivers/md/
5870F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005874L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005876F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Michael Buesch61e115a2007-09-18 15:12:50 -04005878SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005879M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005880L: netdev@vger.kernel.org
5881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005882F: drivers/ssb/
5883F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005884
Rafał Miłecki8369ae32011-05-09 18:56:46 +02005885BROADCOM SPECIFIC AMBA DRIVER (BCMA)
5886M: Rafał Miłecki <zajec5@gmail.com>
5887L: linux-wireless@vger.kernel.org
5888S: Maintained
5889F: drivers/bcma/
5890F: include/linux/bcma/
5891
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005893M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005894L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005895W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005897F: Documentation/laptops/sony-laptop.txt
5898F: drivers/char/sonypi.c
5899F: drivers/platform/x86/sony-laptop.c
5900F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Alex Dubovbaf85322008-02-09 10:20:54 -08005902SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005904W: http://tifmxx.berlios.de/
5905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005907
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005909M: Jaroslav Kysela <perex@perex.cz>
5910M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005911L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005912W: http://www.alsa-project.org/
5913T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5914T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005916F: Documentation/sound/
5917F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005918F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919
Mark Brownbd903bd2008-11-19 19:16:05 +00005920SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01005921M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005922M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005923T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005924L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005925W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005927F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005928F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005929
Sam Ravnborg473321f2009-01-04 15:47:49 -08005930SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005933Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07005934T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5935T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005937F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07005938F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
David S. Miller6404fcc2010-03-16 01:00:17 -07005940SPARC SERIAL DRIVERS
5941M: "David S. Miller" <davem@davemloft.net>
5942L: sparclinux@vger.kernel.org
5943T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5944T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
5945S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08005946F: drivers/tty/serial/suncore.c
5947F: drivers/tty/serial/suncore.h
5948F: drivers/tty/serial/sunhv.c
5949F: drivers/tty/serial/sunsab.c
5950F: drivers/tty/serial/sunsab.h
5951F: drivers/tty/serial/sunsu.c
5952F: drivers/tty/serial/sunzilog.c
5953F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07005954
viresh kumarfc0c1952010-04-01 12:31:21 +01005955SPEAR PLATFORM SUPPORT
5956M: Viresh Kumar <viresh.kumar@st.com>
5957W: http://www.st.com/spear
5958S: Maintained
5959F: arch/arm/plat-spear/
5960
5961SPEAR3XX MACHINE SUPPORT
5962M: Viresh Kumar <viresh.kumar@st.com>
5963W: http://www.st.com/spear
5964S: Maintained
5965F: arch/arm/mach-spear3xx/
5966
5967SPEAR6XX MACHINE SUPPORT
5968M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
5969W: http://www.st.com/spear
5970S: Maintained
5971F: arch/arm/mach-spear6xx/
5972
5973SPEAR CLOCK FRAMEWORK SUPPORT
5974M: Viresh Kumar <viresh.kumar@st.com>
5975W: http://www.st.com/spear
5976S: Maintained
5977F: arch/arm/mach-spear*/clock.c
5978F: arch/arm/mach-spear*/include/mach/clkdev.h
5979F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07005980F: arch/arm/plat-spear/include/plat/clkdev.h
5981F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01005982
5983SPEAR PAD MULTIPLEXING SUPPORT
5984M: Viresh Kumar <viresh.kumar@st.com>
5985W: http://www.st.com/spear
5986S: Maintained
5987F: arch/arm/plat-spear/include/plat/padmux.h
5988F: arch/arm/plat-spear/padmux.c
5989F: arch/arm/mach-spear*/spear*xx.c
5990F: arch/arm/mach-spear*/include/mach/generic.h
5991F: arch/arm/mach-spear3xx/spear3*0.c
5992F: arch/arm/mach-spear3xx/spear3*0_evb.c
5993F: arch/arm/mach-spear6xx/spear600.c
5994F: arch/arm/mach-spear6xx/spear600_evb.c
5995
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perchesc8974012011-04-14 15:22:05 -07005997S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005998F: Documentation/serial/specialix.txt
Joe Perchesc8974012011-04-14 15:22:05 -07005999F: drivers/staging/tty/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006001SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006002M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006004Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006005T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: Documentation/spi/
6008F: drivers/spi/
6009F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006010
Jim Lewis2752e402006-09-29 02:01:19 -07006011SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006012M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6013M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006014L: netdev@vger.kernel.org
6015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006016F: Documentation/networking/spider_net.txt
6017F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006018
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006019SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006021L: linuxppc-dev@lists.ozlabs.org
6022L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006023W: http://www.ibm.com/developerworks/power/cell/
6024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006025F: Documentation/filesystems/spufs.txt
6026F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006027
Phillip Lougherfc555842009-01-05 08:46:29 +00006028SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006029M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006030L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6031W: http://squashfs.org.uk
6032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006033F: Documentation/filesystems/squashfs.txt
6034F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006035
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006037M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006039F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
Linus Torvalds26e9a392008-10-17 09:50:12 -07006041STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Greg Kroah-Hartman <greg@kroah.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006043L: stable@kernel.org
6044S: Maintained
6045
Linus Torvalds26e9a392008-10-17 09:50:12 -07006046STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006047M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman97b55192010-11-09 09:13:39 -08006048T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006049L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07006050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006051F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006052
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006054M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07006055S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006056F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006058SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07006059M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006060W: http://sammy.net/sun3/
6061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006062F: arch/m68k/kernel/*sun3*
6063F: arch/m68k/sun3*/
6064F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006065
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006066SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09006068L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006070Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtbea27822010-11-10 18:07:43 +09006071T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09006072S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09006073F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07006074F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09006075F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006077SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07006078M: Len Brown <len.brown@intel.com>
6079M: Pavel Machek <pavel@ucw.cz>
6080M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006081L: linux-pm@lists.linux-foundation.org
6082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006083F: Documentation/power/
6084F: arch/x86/kernel/acpi/
6085F: drivers/base/power/
6086F: kernel/power/
6087F: include/linux/suspend.h
6088F: include/linux/freezer.h
6089F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
6091SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006092M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093L: linux-video@atrey.karlin.mff.cuni.cz
6094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: Documentation/svga.txt
6096F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097
6098SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006101F: Documentation/filesystems/sysv-fs.txt
6102F: fs/sysv/
6103F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07006105TARGET SUBSYSTEM
6106M: Nicholas A. Bellinger <nab@linux-iscsi.org>
6107L: linux-scsi@vger.kernel.org
6108L: http://groups.google.com/group/linux-iscsi-target-dev
6109W: http://www.linux-iscsi.org
6110T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6111S: Supported
6112F: drivers/target/
6113F: include/target/
6114F: Documentation/target/
6115
Alan Cox4e688522008-04-30 00:52:11 -07006116TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07006117M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07006118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006119F: Documentation/accounting/taskstats*
6120F: include/linux/taskstats*
6121F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07006122
Stephen Hemminger781b4562006-07-10 20:25:29 -07006123TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b4562006-07-10 20:25:29 -07006125L: netdev@vger.kernel.org
6126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: include/linux/pkt_cls.h
6128F: include/net/pkt_cls.h
6129F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07006130
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006131TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006132M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
6133M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006134W: http://tcp-lp-mod.sourceforge.net/
6135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006136F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07006137
Erik Gilling84b94142010-06-09 15:35:53 -07006138TEGRA SUPPORT
6139M: Colin Cross <ccross@android.com>
6140M: Erik Gilling <konkers@android.com>
6141M: Olof Johansson <olof@lixom.net>
6142L: linux-tegra@vger.kernel.org
6143T: git git://android.git.kernel.org/kernel/tegra.git
6144S: Supported
6145F: arch/arm/mach-tegra
6146
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006147TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006148M: Alexander Indenbaum <baum@tehutinetworks.net>
6149M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006150L: netdev@vger.kernel.org
6151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006152F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07006153
Alan Cox4e688522008-04-30 00:52:11 -07006154Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07006155M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07006156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006157F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07006158
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006159TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07006160M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07006161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006162F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07006163
6164THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07006166L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05006167L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006168W: http://ibm-acpi.sourceforge.net
6169W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07006170T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07006171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07006173
Alex Dubov4020f2d2006-10-04 02:15:37 -07006174TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006175M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: drivers/misc/tifm*
6178F: drivers/mmc/host/tifm_sd.c
6179F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07006180
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006181TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03006182M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03006183L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6184S: Maintained
6185F: sound/soc/codecs/twl4030*
6186
Per Lidene86eaa32006-01-12 16:45:18 +01006187TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006188M: Jon Maloy <jon.maloy@ericsson.com>
6189M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05006190L: netdev@vger.kernel.org (core kernel code)
6191L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01006192W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01006193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006194F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07006195F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01006196
Chris Metcalf867e3592010-05-28 23:09:12 -04006197TILE ARCHITECTURE
6198M: Chris Metcalf <cmetcalf@tilera.com>
6199W: http://www.tilera.com/scm/
6200S: Supported
6201F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08006202F: drivers/tty/hvc/hvc_tile.c
Chris Metcalfe5a06932010-11-01 17:00:37 -04006203F: drivers/net/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05006204F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04006205
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006207M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08006208L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209W: http://sourceforge.net/projects/tlan/
6210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: Documentation/networking/tlan.txt
6212F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006214TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006215M: Kentaro Takeda <takedakn@nttdata.co.jp>
6216M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09006217L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6218L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006219L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6220L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6221W: http://tomoyo.sourceforge.jp/
Tetsuo Handae6f6a4c2010-07-27 17:17:06 +09006222T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006224F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006225
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006226TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939bf2011-02-24 15:18:07 -03006227M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05006228L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006229S: Maintained
6230F: drivers/platform/x86/topstar-laptop.c
6231
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05006233L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02006234S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006235F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
6237TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006238M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239L: tlinux-users@tce.toshiba-dme.co.jp
6240W: http://www.buzzard.org.uk/toshiba/
6241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006242F: drivers/char/toshiba.c
6243F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244
Pierre Ossmand719f902009-03-24 21:06:09 +01006245TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006246M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01006247S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006248F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01006249
Hugh Dickins98f32602009-05-21 20:33:58 +01006250TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07006251M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01006252L: linux-mm@kvack.org
6253S: Maintained
6254F: include/linux/shmem_fs.h
6255F: mm/shmem.c
6256
Alan Cox4e688522008-04-30 00:52:11 -07006257TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006258M: Debora Velarde <debora@linux.vnet.ibm.com>
6259M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07006260W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08006262W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07006263L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07006264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006265F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07006266
Joe Perchesd6f005a2009-10-26 16:49:40 -07006267TRACING
6268M: Steven Rostedt <rostedt@goodmis.org>
6269M: Frederic Weisbecker <fweisbec@gmail.com>
6270M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02006271T: 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 -07006272S: Maintained
6273F: Documentation/trace/ftrace.txt
6274F: arch/*/*/*/ftrace.h
6275F: arch/*/kernel/ftrace.c
6276F: include/*/ftrace.h
6277F: include/linux/trace*.h
6278F: include/trace/
6279F: kernel/trace/
6280
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07006282M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07006283T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02006285K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286
Alan Cox4e688522008-04-30 00:52:11 -07006287TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07006288M: Greg Kroah-Hartman <gregkh@suse.de>
6289S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -08006290T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006291F: drivers/tty/*
6292F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01006293F: include/linux/serial_core.h
6294F: include/linux/serial.h
6295F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07006296
Grant Grundler740db6d2008-02-17 11:53:49 -07006297TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006298M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07006299L: netdev@vger.kernel.org
6300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006301F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302
6303TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07006304M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305L: vtun@office.satix.net
6306W: http://vtun.sourceforge.net/tun
6307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006308F: Documentation/networking/tuntap.txt
6309F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006311TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006314F: drivers/tc/
6315F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006318M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319L: linux-scsi@vger.kernel.org
6320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006321F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006323UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006324M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03006325M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006326L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006327T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006328W: http://www.linux-mtd.infradead.org/doc/ubifs.html
6329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: Documentation/filesystems/ubifs.txt
6331F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006332
Alan Coxcc2020e2008-05-19 14:21:51 +01006333UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01006335W: http://www.uclinux.org/
6336L: uclinux-dev@uclinux.org (subscribers-only)
6337S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07006338F: arch/m68k/*/*_no.*
6339F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01006340
Robert P. J. Day14fadca2009-04-21 12:24:47 -07006341UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07006342M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01006343W: http://uclinux-h8.sourceforge.jp/
6344S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07006345F: arch/h8300/
6346F: drivers/ide/ide-h8300.c
6347F: drivers/net/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01006348
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351W: http://linux-udf.sourceforge.net
6352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: Documentation/filesystems/udf.txt
6354F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355
Alan Coxcc2020e2008-05-19 14:21:51 +01006356UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006357M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01006358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006359F: Documentation/filesystems/ufs.txt
6360F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01006361
David Vrabel18332a82008-09-17 16:34:44 +01006362ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01006363L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01006364S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00006365F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07006366F: include/linux/uwb.h
6367F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01006368
GuanXuetaob31d8272011-01-16 00:35:49 +08006369UNICORE32 ARCHITECTURE:
6370M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6371W: http://mprc.pku.edu.cn/~guanxuetao/linux
6372S: Maintained
6373T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6374F: arch/unicore32/
6375
Tony Finchd8379ab2009-11-27 15:50:30 +00006376UNIFDEF
6377M: Tony Finch <dot@dotat.at>
6378W: http://dotat.at/prog/unifdef
6379S: Maintained
6380F: scripts/unifdef.c
6381
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384W: http://www.kernel.dk
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/cdrom/
6387F: drivers/cdrom/cdrom.c
6388F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006390UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006391M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006392W: http://www.linux-mtd.infradead.org/
6393L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006394T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006395S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006396F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07006397F: include/linux/mtd/ubi.h
6398F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006401M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07006402L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006404F: Documentation/usb/acm.txt
6405F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02006407USB ATTACHED SCSI
6408M: Matthew Wilcox <willy@linux.intel.com>
6409M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
6410L: linux-usb@vger.kernel.org
6411L: linux-scsi@vger.kernel.org
6412S: Supported
6413F: drivers/usb/storage/uas.c
6414
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07006416M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006417L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006419F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08006422M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006423L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006425F: drivers/net/usb/cdc_*.c
6426F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006428USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006430L: linux-usb@vger.kernel.org
6431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006432F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006433
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006434USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006435M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006436L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006437W: http://www.linux-usb.org/usbnet
6438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006439F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006440
Alan Coxcc2020e2008-05-19 14:21:51 +01006441USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006442M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01006443L: rio500-users@lists.sourceforge.net
6444W: http://rio500.sourceforge.net
6445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006446F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01006447
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006449M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006450L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: Documentation/usb/ehci.txt
6453F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454
Luca Risolia7ce08c92006-01-11 02:06:59 +00006455USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006456M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006457L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006458L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006459T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006460W: http://www.linux-projects.org
6461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006462F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006463
David Brownell69ae9e32006-11-14 02:03:31 -08006464USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03006465M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006466L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006467W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03006468T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006470F: drivers/usb/gadget/
6471F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006472
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006473USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006475L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006476T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07006478F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07006479F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480
matt mooney857aab32011-06-17 15:50:46 -07006481USB/IP DRIVERS
6482M: Matt Mooney <mfm@muteddisk.com>
6483L: linux-usb@vger.kernel.org
6484S: Maintained
6485F: drivers/staging/usbip/
6486
Olav Kongas959eea22005-11-03 17:38:14 +02006487USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006488M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006489L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006491F: drivers/usb/host/isp116x*
6492F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006493
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006495M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006496L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006498F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499
6500USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006501M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006502L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006503L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504S: Maintained
6505W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006506F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507
Clemens Ladischaf399172011-01-10 16:32:54 +01006508USB MIDI DRIVER
6509M: Clemens Ladisch <clemens@ladisch.de>
6510L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6511T: git git://git.alsa-project.org/alsa-kernel.git
6512S: Maintained
6513F: sound/usb/midi.*
6514
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04006516M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006517L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04006518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006519F: Documentation/usb/ohci.txt
6520F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Matthias Urlichsba460e42005-07-14 00:33:47 -07006522USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006524L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006526F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006527
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006530L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006531L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532W: http://pegasus2.sourceforge.net/
6533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006534F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006536USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07006537M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006538L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006540F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541
6542USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006543M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006544L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006545L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546W: http://pegasus2.sourceforge.net/
6547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006548F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549
6550USB SE401 DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02006551L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552W: http://www.chello.nl/~j.vreeken/se401/
Joe Perchesf1d23132011-03-22 16:34:37 -07006553S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006554F: Documentation/video4linux/se401.txt
Joe Perchesf1d23132011-03-22 16:34:37 -07006555F: drivers/staging/se401/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556
Alan Cox4e688522008-04-30 00:52:11 -07006557USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006558M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006559L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006561F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006562
6563USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006564M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006565L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006566S: Maintained
6567W: http://geocities.com/i0xox0i
6568W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006569F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006570
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006572M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
6577USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006578M: Peter Berger <pberger@brimson.com>
6579M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006580L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006582F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583
6584USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006586L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006588F: Documentation/usb/usb-serial.txt
6589F: drivers/usb/serial/generic.c
6590F: drivers/usb/serial/usb-serial.c
6591F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006594M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006595L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
6599USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006600M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006601L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602W: http://www.kroah.com/linux/
6603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006604F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
6606USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006607M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006608L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609W: http://www.connecttech.com
6610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006611F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006613USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006614M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006615L: netdev@vger.kernel.org
6616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006617F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006618
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006619USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006620M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006621L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006622L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006623T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624W: http://www.linux-projects.org
6625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: Documentation/video4linux/sn9c102.txt
6627F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
6629USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006631L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632W: http://www.linux-usb.org
Greg Kroah-Hartmanc9a7ec82010-11-09 09:11:49 -08006633T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006635F: Documentation/usb/
6636F: drivers/net/usb/
6637F: drivers/usb/
6638F: include/linux/usb.h
6639F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640
6641USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006642M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006643L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006645F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646
David Brownell69ae9e32006-11-14 02:03:31 -08006647USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02006648M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006649L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006650W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006652F: drivers/net/usb/usbnet.c
6653F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006655USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07006656M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03006657L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006658L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006659T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006660W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006663
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006666L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006667L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006668T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669W: http://www.linux-projects.org
6670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006671F: Documentation/video4linux/w9968cf.txt
6672F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006674USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006675M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006676L: linux-wireless@vger.kernel.org
6677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006678F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006679
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006680USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006681M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006682L: linux-usb@vger.kernel.org
6683S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006684F: drivers/usb/host/xhci*
6685F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006686
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04006688L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04006690S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006691F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006693USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006694M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006695L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006696L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006697T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006698W: http://royale.zerezo.com/zr364xx/
6699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: Documentation/video4linux/zr364xx.txt
6701F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006702
Randy Dunlape7839f22008-10-12 16:11:45 -07006703USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01006705M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706L: user-mode-linux-devel@lists.sourceforge.net
6707L: user-mode-linux-user@lists.sourceforge.net
6708W: http://user-mode-linux.sourceforge.net
6709S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07006710F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07006711F: arch/um/
6712F: fs/hostfs/
6713F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006714
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006715USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07006716M: "Hans J. Koch" <hjk@hansjkoch.de>
Joe Perches8b58be82009-07-29 15:04:30 -07006717M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006719F: Documentation/DocBook/uio-howto.tmpl
6720F: drivers/uio/
6721F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006722
Karel Zakf899b0a2008-05-23 13:04:21 -07006723UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006725L: util-linux-ng@vger.kernel.org
6726W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006727T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006728S: Maintained
6729
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006730UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006731M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006732L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006733W: http://dev.gentoo.org/~spock/projects/uvesafb/
6734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006735F: Documentation/fb/uvesafb.txt
6736F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006737
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006738VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006741F: Documentation/filesystems/vfat.txt
6742F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743
Pawel Osciak9e6f3432011-06-15 15:08:32 -07006744VIDEOBUF2 FRAMEWORK
6745M: Pawel Osciak <pawel@osciak.com>
6746M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03006747M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07006748L: linux-media@vger.kernel.org
6749S: Maintained
6750F: drivers/media/video/videobuf2-*
6751F: include/media/videobuf2-*
6752
Amit Shah9a824462010-03-23 18:23:09 +05306753VIRTIO CONSOLE DRIVER
6754M: Amit Shah <amit.shah@redhat.com>
6755L: virtualization@lists.linux-foundation.org
6756S: Maintained
6757F: drivers/char/virtio_console.c
6758F: include/linux/virtio_console.h
6759
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10306760VIRTIO CORE, NET AND BLOCK DRIVERS
6761M: Rusty Russell <rusty@rustcorp.com.au>
6762M: "Michael S. Tsirkin" <mst@redhat.com>
6763L: virtualization@lists.linux-foundation.org
6764S: Maintained
6765F: drivers/virtio/
6766F: drivers/net/virtio_net.c
6767F: drivers/block/virtio_blk.c
6768F: include/linux/virtio_*.h
6769
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00006770VIRTIO HOST (VHOST)
6771M: "Michael S. Tsirkin" <mst@redhat.com>
6772L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00006773L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00006774L: netdev@vger.kernel.org
6775S: Maintained
6776F: drivers/vhost/
6777F: include/linux/vhost.h
6778
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006780M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006782F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
Jean Delvare32c0a522005-09-22 21:47:58 +02006784VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006785M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006786L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006788F: Documentation/i2c/busses/i2c-viapro
6789F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006790
Harald Weltef0bf7f62009-06-17 20:22:39 +02006791VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08006792M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07006793M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02006794S: Maintained
6795F: drivers/mmc/host/via-sdmmc.c
6796
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006797VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006798M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006799L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006800S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006801F: include/linux/via-core.h
6802F: include/linux/via-gpio.h
6803F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07006804F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006805
Francois Romieu01f20732007-01-26 00:57:17 -08006806VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006807M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08006808L: netdev@vger.kernel.org
6809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006810F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811
Patrick McHardybe7f8272007-10-23 20:26:36 -07006812VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07006813M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07006814L: netdev@vger.kernel.org
6815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006816F: drivers/net/macvlan.c
6817F: include/linux/if_*vlan.h
6818F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006819
Florian Fainelli55e331c2009-06-16 15:33:53 -07006820VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006821M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08006822L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07006823S: Maintained
6824F: drivers/vlynq/vlynq.c
6825F: include/linux/vlynq.h
6826
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07006827VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08006828M: Shreyas Bhatewara <sbhatewara@vmware.com>
6829M: "VMware, Inc." <pv-drivers@vmware.com>
6830L: netdev@vger.kernel.org
6831S: Maintained
6832F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07006833
Alok Kataria851b1642009-10-13 14:51:05 -07006834VMware PVSCSI driver
6835M: Alok Kataria <akataria@vmware.com>
6836M: VMware PV-Drivers <pv-drivers@vmware.com>
6837L: linux-scsi@vger.kernel.org
6838S: Maintained
6839F: drivers/scsi/vmw_pvscsi.c
6840F: drivers/scsi/vmw_pvscsi.h
6841
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006842VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01006843M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006844M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006845W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006846W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006847T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006848S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006849F: drivers/regulator/
6850F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006851
Juerg Haefligerab413192006-09-24 20:54:04 +02006852VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02006854L: lm-sensors@lm-sensors.org
6855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006856F: Documentation/hwmon/vt1211
6857F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006858
Roger Lucas1de9e372005-11-26 20:20:05 +01006859VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006860M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01006861L: lm-sensors@lm-sensors.org
6862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006863F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006864
Tony Olech88095e72011-05-14 16:48:13 -04006865VUB300 USB to SDIO/SD/MMC bridge chip
6866M: Tony Olech <tony.olech@elandigitalsystems.com>
6867L: linux-mmc@vger.kernel.org
6868L: linux-usb@vger.kernel.org
6869S: Supported
6870F: drivers/mmc/host/vub300.c
6871
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006873M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006875F: Documentation/w1/
6876F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
Charles Spirakis13927072006-07-05 18:05:15 +02006878W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006879M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02006880L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006882F: Documentation/hwmon/w83791d
6883F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006884
Rudolf Marek61db0112006-12-12 18:18:30 +01006885W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006886M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01006887L: lm-sensors@lm-sensors.org
6888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006889F: Documentation/hwmon/w83793
6890F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006891
Jean Delvaree3760b42010-10-28 20:31:49 +02006892W83795 HARDWARE MONITORING DRIVER
6893M: Jean Delvare <khali@linux-fr.org>
6894L: lm-sensors@lm-sensors.org
6895S: Maintained
6896F: drivers/hwmon/w83795.c
6897
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006899M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006901F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006903WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006904M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00006905L: linux-watchdog@vger.kernel.org
6906W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07006907T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006909F: Documentation/watchdog/
6910F: drivers/watchdog/
6911F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006912
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006914M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915L: linux-scsi@vger.kernel.org
6916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006917F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918
David Härdemane258b802009-09-21 17:04:53 -07006919WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006920M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006921S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07006922F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07006923
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006924WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006925M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006926M: linux-wimax@intel.com
6927L: wimax@linuxwimax.org
6928S: Supported
6929W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07006930F: Documentation/wimax/README.wimax
6931F: include/linux/wimax.h
6932F: include/linux/wimax/debug.h
6933F: include/net/wimax.h
6934F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006935
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006936WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006937M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006939F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006940
Kalle Valo834da342009-07-21 14:26:08 +03006941WL1251 WIRELESS DRIVER
Kalle Valo31c726f2010-08-22 22:46:15 +03006942M: Kalle Valo <kvalo@adurom.com>
Kalle Valo834da342009-07-21 14:26:08 +03006943L: linux-wireless@vger.kernel.org
6944W: http://wireless.kernel.org
6945T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6946S: Maintained
Kalle Valocc2858c2010-10-10 11:28:33 +03006947F: drivers/net/wireless/wl1251/*
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006948
6949WL1271 WIRELESS DRIVER
Luciano Coelhoa29091e2011-01-26 21:46:29 +02006950M: Luciano Coelho <coelho@ti.com>
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006951L: linux-wireless@vger.kernel.org
Luciano Coelhoa29091e2011-01-26 21:46:29 +02006952W: http://wireless.kernel.org/en/users/Drivers/wl12xx
Luciano Coelho381bd102010-09-28 09:54:27 +03006953T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006954S: Maintained
Luciano Coelhoa29091e2011-01-26 21:46:29 +02006955F: drivers/net/wireless/wl12xx/
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +02006956F: include/linux/wl12xx.h
Kalle Valo834da342009-07-21 14:26:08 +03006957
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006959M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006960L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006961W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006963F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964
Mark Brownfebf1df2008-04-02 00:51:09 -04006965WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006966M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6967M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006968L: linux-input@vger.kernel.org
6969T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6970W: http://opensource.wolfsonmicro.com/node/7
6971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006972F: drivers/input/touchscreen/*wm97*
6973F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006974
Mark Brown055bcbc2010-08-13 14:18:12 +01006975WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006976M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01006977M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07006978M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Browncf8eda32010-10-05 19:31:40 -07006979T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01006980T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07006981W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01006982S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006983F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006984F: drivers/leds/leds-wm83*.c
6985F: drivers/mfd/wm8*.c
6986F: drivers/power/wm83*.c
6987F: drivers/rtc/rtc-wm83*.c
6988F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006989F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006990F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006991F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006992F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006993F: include/linux/mfd/wm8400*
Mark Brown055bcbc2010-08-13 14:18:12 +01006994F: include/sound/wm????.h
6995F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01006996
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01006997WORKQUEUE
6998M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01006999T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
7000S: Maintained
7001F: include/linux/workqueue.h
7002F: kernel/workqueue.c
7003F: Documentation/workqueue.txt
7004
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007006M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00007008S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007009F: Documentation/networking/x25*
7010F: include/net/x25*
7011F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007013X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07007014M: Thomas Gleixner <tglx@linutronix.de>
7015M: Ingo Molnar <mingo@redhat.com>
7016M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08007017M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007018T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007020F: Documentation/x86/
7021F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007022
Matthew Garrettd0944852010-02-11 10:40:13 -05007023X86 PLATFORM DRIVERS
7024M: Matthew Garrett <mjg@redhat.com>
7025L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07007026T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05007027S: Maintained
7028F: drivers/platform/x86
7029
Ingo Molnarc1f5c542011-06-18 22:51:13 +02007030X86 MCE INFRASTRUCTURE
7031M: Tony Luck <tony.luck@intel.com>
7032M: Borislav Petkov <bp@amd64.org>
7033L: linux-edac@vger.kernel.org
7034S: Maintained
7035F: arch/x86/kernel/cpu/mcheck/*
7036
Ian Campbellc4468082011-04-27 15:26:46 -07007037XEN HYPERVISOR INTERFACE
7038M: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
7039M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7040L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7041L: virtualization@lists.linux-foundation.org
7042S: Supported
7043F: arch/x86/xen/
7044F: drivers/*/xen-*front.c
7045F: drivers/xen/
7046F: arch/x86/include/asm/xen/
7047F: include/xen/
7048
Ian Campbell9b57e1a2011-04-03 23:12:23 +00007049XEN NETWORK BACKEND DRIVER
7050M: Ian Campbell <ian.campbell@citrix.com>
7051L: xen-devel@lists.xensource.com (moderated for non-subscribers)
7052L: netdev@vger.kernel.org
7053S: Supported
7054F: drivers/net/xen-netback/*
7055
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007056XEN PCI SUBSYSTEM
7057M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007058L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02007059S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007060F: arch/x86/pci/*xen*
7061F: drivers/pci/*xen*
7062
7063XEN SWIOTLB SUBSYSTEM
7064M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08007065L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04007066S: Supported
7067F: arch/x86/xen/*swiotlb*
7068F: drivers/xen/*swiotlb*
7069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070XFS FILESYSTEM
7071P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05007072M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10007074L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07007076T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007078F: Documentation/filesystems/xfs.txt
7079F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007081XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007082M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007083W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007085F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02007086
Peter Korsgaard238b8722006-12-06 20:35:17 -08007087XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007088M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08007089L: linux-serial@vger.kernel.org
7090S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007091F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08007092
Linus Torvalds1da177e2005-04-16 15:20:36 -07007093YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007094M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095L: linux-hams@vger.kernel.org
7096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007097F: drivers/net/hamradio/yam*
7098F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099
Henkaf64a5e2005-10-12 15:02:56 +02007100YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007101M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02007102L: usbb2k-api-dev@nongnu.org
7103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007104F: Documentation/input/yealink.txt
7105F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02007106
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07007108M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109W: http://yaina.de/jreuter/
7110W: http://www.qsl.net/dl1bke/
7111L: linux-hams@vger.kernel.org
7112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007113F: Documentation/networking/z8530drv.txt
7114F: drivers/net/hamradio/*scc.c
7115F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007117ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007118M: Daniel Drake <dsd@gentoo.org>
7119M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007120W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07007121L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007122L: zd1211-devs@lists.sourceforge.net (subscribers-only)
7123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007124F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01007125
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03007128L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007129W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03007130T: Mercurial http://linuxtv.org/hg/v4l-dvb
7131S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007132F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007134ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007135M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007136S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007137F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07007138
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07007140M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07007141L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007142Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07007143T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07007145F: *
7146F: */