blob: b6dd66438420c349cbbb3e43e37255279201fe44 [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
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/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
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/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
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/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
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.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
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
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/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aha152x*
458F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462L: linux-scsi@vger.kernel.org
463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: drivers/scsi/aic7xxx/
465F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200466
Hans Verkuil450500a2012-11-23 07:11:33 -0300467AIMSLAB FM RADIO RECEIVER DRIVER
468M: Hans Verkuil <hverkuil@xs4all.nl>
469L: linux-media@vger.kernel.org
470T: git git://linuxtv.org/media_tree.git
471W: http://linuxtv.org
472S: Maintained
473F: drivers/media/radio/radio-aimslab*
474
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700477L: linux-aio@kvack.org
478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700479F: fs/aio.c
480F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700484L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485W: http://www.linux-usb.org/SpeedTouch/
486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700487F: drivers/usb/atm/speedtch.c
488F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Pierre Ossman272f1332007-05-14 21:25:26 +0200490ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700493F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200494
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000495ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100497L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: Documentation/i2c/busses/i2c-ali1563
500F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700503M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500505M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700506S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700507L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700508F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Tobias Klauseradf92512011-02-09 10:58:29 +0100510ALTERA UART/JTAG UART SERIAL DRIVERS
511M: Tobias Klauser <tklauser@distanz.ch>
512L: linux-serial@vger.kernel.org
513L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
514S: Maintained
515F: drivers/tty/serial/altera_uart.c
516F: drivers/tty/serial/altera_jtaguart.c
517F: include/linux/altera_uart.h
518F: include/linux/altera_jtaguart.h
519
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100521M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200522L: lm-sensors@lm-sensors.org
523S: Maintained
524F: Documentation/hwmon/fam15h_power
525F: drivers/hwmon/fam15h_power.c
526
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700527AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700529L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700532
Jordan Crousef90b8112006-01-06 00:12:14 -0800533AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800534P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700535L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800536W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/char/hw_random/geode-rng.c
539F: drivers/crypto/geode*
540F: drivers/video/geode/
541F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800542
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200544M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200545L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100546T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200547S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800548F: drivers/iommu/amd_iommu*.[ch]
549F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200550
Peter Orubae7f5b302008-07-28 18:44:11 +0200551AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700553L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700555F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200556
Stelian Pop284f42b2006-12-12 18:18:31 +0100557AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700558M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100559S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200560F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100561
Tom Tuckerf94b5332006-09-22 15:22:48 -0700562AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700563M: Tom Tucker <tom@opengridcomputing.com>
564M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700565L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700567F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700568
Hans Verkuil531fca12012-11-23 06:53:24 -0300569ANALOG DEVICES INC AD9389B DRIVER
570M: Hans Verkuil <hans.verkuil@cisco.com>
571L: linux-media@vger.kernel.org
572S: Maintained
573F: drivers/media/i2c/ad9389b*
574
575ANALOG DEVICES INC ADV7604 DRIVER
576M: Hans Verkuil <hans.verkuil@cisco.com>
577L: linux-media@vger.kernel.org
578S: Maintained
579F: drivers/media/i2c/adv7604*
580
Michael Hennerich527a1a82010-10-28 11:31:28 +0000581ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200582M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100583L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700585W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000586S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100587F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200588F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000589F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100591F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000592
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400593ANALOG DEVICES INC ASOC DRIVERS
594L: uclinux-dist-devel@blackfin.uclinux.org
595L: alsa-devel@alsa-project.org (moderated for non-subscribers)
596W: http://blackfin.uclinux.org/
597S: Supported
598F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400599
Johannes Berg42269062006-07-25 16:15:50 +0200600AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700601M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000602L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700603L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700605F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200608M: Jiri Kosina <jkosina@suse.cz>
609S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700610F: arch/x86/kernel/apm_32.c
611F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200612F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700614APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700615M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616L: linux-input@vger.kernel.org
617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700618F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700619
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700620APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200621M: Henrik Rydberg <rydberg@euromail.se>
622L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700624F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700627M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700629F: drivers/net/appletalk/
630F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Viresh Kumara4801672011-02-22 15:46:07 +0530632ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700633M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530634L: linux-ide@vger.kernel.org
635S: Maintained
636F: include/linux/pata_arasan_cf_data.h
637F: drivers/ata/pata_arasan_cf.c
638
Jaya Kumar1154ea72005-06-21 17:17:04 -0700639ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700640M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700642F: drivers/video/arcfb.c
643F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700646M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700648F: arch/arm/lib/floppydma.S
649F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Will Deacon6f965212011-07-01 14:38:53 +0100651ARM PMU PROFILING AND DEBUGGING
652M: Will Deacon <will.deacon@arm.com>
653S: Maintained
654F: arch/arm/kernel/perf_event*
655F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100656F: arch/arm/include/asm/pmu.h
657F: arch/arm/kernel/hw_breakpoint.c
658F: arch/arm/include/asm/hw_breakpoint.h
659
Russell Kingd4275352009-04-16 14:05:27 +0100660ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700661M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700662L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100663W: http://www.arm.linux.org.uk/
664S: Maintained
665F: arch/arm/
666
Stephen Boydd323c2432012-10-24 11:00:29 -0700667ARM SUB-ARCHITECTURES
668L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
669S: MAINTAINED
670F: arch/arm/mach-*/
671F: arch/arm/plat-*/
672T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
673
Russell Kingcefbf4e2009-11-22 17:40:28 +0000674ARM PRIMECELL AACI PL041 DRIVER
675M: Russell King <linux@arm.linux.org.uk>
676S: Maintained
677F: sound/arm/aaci.*
678
679ARM PRIMECELL CLCD PL110 DRIVER
680M: Russell King <linux@arm.linux.org.uk>
681S: Maintained
682F: drivers/video/amba-clcd.*
683
684ARM PRIMECELL KMI PL050 DRIVER
685M: Russell King <linux@arm.linux.org.uk>
686S: Maintained
687F: drivers/input/serio/ambakmi.*
688F: include/linux/amba/kmi.h
689
Russell King2761f5c2007-05-24 06:56:08 +0200690ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200691S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200693
Russell Kingcefbf4e2009-11-22 17:40:28 +0000694ARM PRIMECELL BUS SUPPORT
695M: Russell King <linux@arm.linux.org.uk>
696S: Maintained
697F: drivers/amba/
698F: include/linux/amba/bus.h
699
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700701M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700702L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703S: Maintained
704
Sergey Lapin9c784f92008-08-03 02:29:48 +0100705ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100708S: Maintained
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713S: Maintained
714
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800715ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800717M: Nicolas Ferre <nicolas.ferre@atmel.com>
718M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200720W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800721W: http://www.linux4sam.org
722S: Supported
723F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100724
Rob Herring986cf2e2011-06-22 11:28:53 -0500725ARM/CALXEDA HIGHBANK ARCHITECTURE
726M: Rob Herring <rob.herring@calxeda.com>
727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
728S: Maintained
729F: arch/arm/mach-highbank/
730
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300731ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
732M: Anton Vorontsov <avorontsov@mvista.com>
733S: Maintained
734F: arch/arm/mach-cns3xxx/
735T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
736
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800737ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100738M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000739M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800741S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100742F: arch/arm/mach-ep93xx/
743F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800744
745ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700746M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700747L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800748S: Maintained
749
Russell Kingd4275352009-04-16 14:05:27 +0100750ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700751M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700753S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100754F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700755F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100756
Mike Rapoportd48134e72008-08-20 09:03:26 +0100757ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700758M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100760S: Maintained
761
Hubert Feurstein94150092009-10-07 08:36:07 +0100762ARM/CONTEC MICRO9 MACHINE SUPPORT
763M: Hubert Feurstein <hubert.feurstein@contec.at>
764S: Maintained
765F: arch/arm/mach-ep93xx/micro9.c
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769S: Maintained
770
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200771ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100772M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774T: git git://git.berlios.de/gemini-board
775S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300776F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200777
Barry Songa990cbd2011-07-12 21:44:10 +0800778ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
779M: Barry Song <baohua.song@csr.com>
780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
781S: Maintained
782F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800783F: drivers/dma/sirf-dma.c
784F: drivers/i2c/busses/i2c-sirf.c
785F: drivers/pinctrl/pinctrl-sirf.c
786F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800787
Russell Kingd4275352009-04-16 14:05:27 +0100788ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100791W: http://www.arm.linux.org.uk/
792S: Maintained
793F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700794F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100795
Russell Kinga9da4f72008-07-12 21:42:04 +0100796ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Daniel Ribeiro <drwyrm@gmail.com>
798M: Stefan Schmidt <stefan@openezx.org>
799M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200800L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100801W: http://www.openezx.org/
802S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200803T: topgit git://git.openezx.org/openezx.git
804F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100805
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200806ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100807M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100809S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700810T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300811F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200812
Russell Kingd4275352009-04-16 14:05:27 +0100813ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100816W: http://www.arm.linux.org.uk/
817S: Maintained
818F: arch/arm/include/asm/hardware/dec21285.h
819F: arch/arm/mach-footbridge/
820
Sascha Hauer86183a52008-07-24 23:50:35 +0200821ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700822M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200824S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700825T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100826F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100827F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700828F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200829
Shawn Guo8bcb9762011-10-07 22:24:18 +0800830ARM/FREESCALE IMX6
831M: Shawn Guo <shawn.guo@linaro.org>
832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
833S: Maintained
834T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
835F: arch/arm/mach-imx/*imx6*
836
Shawn Guoa9866a02011-10-21 11:53:34 +0800837ARM/FREESCALE MXS ARM ARCHITECTURE
838M: Shawn Guo <shawn.guo@linaro.org>
839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
840S: Maintained
841T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
842F: arch/arm/mach-mxs/
843
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800844ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700845M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800847S: Maintained
848
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100849ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700850M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100852S: Maintained
853
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200854ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100856M: Paul Parsons <lost.distance@yahoo.com>
857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200858S: Maintained
859F: arch/arm/mach-pxa/hx4700.c
860F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100861F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200862
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100863ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700864M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200865W: www.jlime.com
866S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700867T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
868F: arch/arm/mach-sa1100/jornada720.c
869F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100870
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200871ARM/IGEP MACHINE SUPPORT
872M: Enric Balletbo i Serra <eballetbo@gmail.com>
873M: Javier Martinez Canillas <javier@dowhile0.org>
874L: linux-omap@vger.kernel.org
875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
876S: Maintained
877F: arch/arm/mach-omap2/board-igep0020.c
878
Marek Vasut403d2972010-05-22 00:29:39 +0200879ARM/INCOME PXA270 SUPPORT
880M: Marek Vasut <marek.vasut@gmail.com>
881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
882S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700883F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200884
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700886M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700887M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700889S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100890
891ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700892M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700894S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895
896ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700897M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700898M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700900S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901
902ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700903M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700904M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700906S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800907
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700910L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911S: Maintained
912
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200913ARM/INTEL IXP4XX ARM ARCHITECTURE
914M: Imre Kaloz <kaloz@openwrt.org>
915M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200917S: Maintained
918F: arch/arm/mach-ixp4xx/
919
Joe Perches838553c2010-10-26 14:22:59 -0700920ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100921M: Jonathan Cameron <jic23@cam.ac.uk>
922L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923S: Maintained
924F: arch/arm/mach-pxa/stargate2.c
925F: drivers/pcmcia/pxa2xx_stargate2.c
926
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700929M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700930L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700931S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932
933ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800936S: Maintained
937
938ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700939M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800941S: Maintained
942
Philipp Zabel3b8861712008-07-09 21:27:15 +0100943ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100945S: Maintained
946
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200947ARM/Marvell Armada 370 and Armada XP SOC support
948M: Jason Cooper <jason@lakedaemon.net>
949M: Andrew Lunn <andrew@lunn.ch>
950M: Gregory Clement <gregory.clement@free-electrons.com>
951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952S: Maintained
953F: arch/arm/mach-mvebu/
954
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400955ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
956M: Jason Cooper <jason@lakedaemon.net>
957M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400959S: Maintained
960F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400961F: arch/arm/mach-kirkwood/
962F: arch/arm/mach-mv78xx0/
963F: arch/arm/mach-orion5x/
964F: arch/arm/plat-orion/
965
Alexander Clouterd69ac132011-04-14 15:22:02 -0700966ARM/Orion SoC/Technologic Systems TS-78xx platform support
967M: Alexander Clouter <alex@digriz.org.uk>
968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969W: http://www.digriz.org.uk/ts78xx/kernel
970S: Maintained
971F: arch/arm/mach-orion5x/ts78xx-*
972
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000973ARM/MICREL KS8695 ARCHITECTURE
974M: Greg Ungerer <gerg@uclinux.org>
975L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976F: arch/arm/mach-ks8695
977S: Odd Fixes
978
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200979ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700981L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200982F: arch/arm/mach-pxa/mioa701.c
983S: Maintained
984
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100985ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700986M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100987S: Maintained
988
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100989ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700990M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200991M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700992M: STEricsson <STEricsson_nomadik_linux@list.st.com>
993L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994S: Maintained
995F: arch/arm/mach-nomadik/
996F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100997F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200998T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100999
Andy Green9d762952009-05-19 06:41:42 -03001000ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001001M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001002L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1003W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1004S: Supported
1005
Daniel Walker0c19d212009-12-07 16:53:51 -08001006ARM/QUALCOMM MSM MACHINE SUPPORT
1007M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001008M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001009M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001010L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001011F: arch/arm/mach-msm/
1012F: drivers/video/msm/
1013F: drivers/mmc/host/msm_sdcc.c
1014F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001015F: drivers/tty/serial/msm_serial.h
1016F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001017F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001018F: drivers/*/pm8???-*
1019F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001021S: Maintained
1022
Dirk Opfer8459c152005-11-06 14:27:52 +00001023ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1025M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001026S: Maintained
1027
Marek Vasut5d783a22009-07-16 13:26:48 +02001028ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001029M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001031W: http://hackndev.com
1032S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001033F: arch/arm/mach-pxa/include/mach/palmtx.h
1034F: arch/arm/mach-pxa/palmtx.c
1035F: arch/arm/mach-pxa/include/mach/palmt5.h
1036F: arch/arm/mach-pxa/palmt5.c
1037F: arch/arm/mach-pxa/include/mach/palmld.h
1038F: arch/arm/mach-pxa/palmld.c
1039F: arch/arm/mach-pxa/include/mach/palmte2.h
1040F: arch/arm/mach-pxa/palmte2.c
1041F: arch/arm/mach-pxa/include/mach/palmtc.h
1042F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043
Joe Perchesb57fe922009-12-14 18:00:52 -08001044ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001047W: http://hackndev.com
1048S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001049F: arch/arm/mach-pxa/include/mach/palmtreo.h
1050F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001051
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001052ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001054L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001055W: http://hackndev.com
1056S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001057F: arch/arm/mach-pxa/include/mach/palmz72.h
1058F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1063S: Maintained
1064
1065ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001071ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001074S: Maintained
1075
Russell Kingd4275352009-04-16 14:05:27 +01001076ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001079W: http://www.arm.linux.org.uk/
1080S: Maintained
1081F: arch/arm/common/time-acorn.c
1082F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1083F: arch/arm/include/asm/hardware/ioc.h
1084F: arch/arm/include/asm/hardware/iomd.h
1085F: arch/arm/include/asm/hardware/memc.h
1086F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001087F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001088F: drivers/net/ethernet/i825xx/ether1*
1089F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001090F: drivers/scsi/arm/
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001093M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094W: http://www.shark-linux.de/shark.html
1095S: Maintained
1096
Ben Dooksb21477f2009-06-13 10:46:34 +01001097ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001098M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001099M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001101L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001102W: http://www.fluff.org/ben/linux/
1103S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001104F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001105F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001106F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001107F: arch/arm/mach-s3c24*/
1108F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001109F: drivers/*/*s3c2410*
1110F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001111F: drivers/spi/spi-s3c*
1112F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001114ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001115M: Kukjin Kim <kgene.kim@samsung.com>
1116L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1118S: Maintained
1119F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001120F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001121
Kyungmin Park10ffa962011-03-04 17:36:26 -08001122ARM/SAMSUNG MOBILE MACHINE SUPPORT
1123M: Kyungmin Park <kyungmin.park@samsung.com>
1124L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125S: Maintained
1126F: arch/arm/mach-s5pv210/mach-aquila.c
1127F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001128F: arch/arm/mach-exynos/mach-universal_c210.c
1129F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001130
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001131ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1132M: Kyungmin Park <kyungmin.park@samsung.com>
1133M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1134L: linux-arm-kernel@lists.infradead.org
1135L: linux-media@vger.kernel.org
1136S: Maintained
1137F: arch/arm/plat-s5p/dev-fimc*
1138F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001139F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001140
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001141ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1142M: Kyungmin Park <kyungmin.park@samsung.com>
1143M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001144M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001145L: linux-arm-kernel@lists.infradead.org
1146L: linux-media@vger.kernel.org
1147S: Maintained
1148F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001149F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001150
1151ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1152M: Kyungmin Park <kyungmin.park@samsung.com>
1153M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1154L: linux-arm-kernel@lists.infradead.org
1155L: linux-media@vger.kernel.org
1156S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001157F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001158
Paul Mundtd48d38e2010-02-08 12:50:24 +09001159ARM/SHMOBILE ARM ARCHITECTURE
1160M: Paul Mundt <lethal@linux-sh.org>
1161M: Magnus Damm <magnus.damm@gmail.com>
1162L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001163W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001164Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001165T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001166S: Supported
1167F: arch/arm/mach-shmobile/
1168F: drivers/sh/
1169
Dinh Nguyen66314222012-07-18 16:07:18 -06001170ARM/SOCFPGA ARCHITECTURE
1171M: Dinh Nguyen <dinguyen@altera.com>
1172S: Maintained
1173F: arch/arm/mach-socfpga/
1174
1175ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1176M: Dinh Nguyen <dinguyen@altera.com>
1177S: Maintained
1178F: drivers/clk/socfpga/
1179
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001181M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001182L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001183S: Maintained
1184
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001185ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001186M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188S: Maintained
1189
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001191M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001192L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001193S: Maintained
1194
wanzongshun98ad6e32009-02-13 06:04:32 +01001195ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001196M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001198W: http://www.mcuos.com
1199S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001200F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001201F: drivers/input/keyboard/w90p910_keypad.c
1202F: drivers/input/touchscreen/w90p910_ts.c
1203F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001204F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001205F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001206F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001207F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001208F: drivers/usb/host/ehci-w90x900.c
1209F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001210
Linus Walleij54274d72010-04-04 10:58:03 +01001211ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001212M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001213L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1214S: Supported
1215F: arch/arm/mach-u300/
1216F: drivers/i2c/busses/i2c-stu300.c
1217F: drivers/rtc/rtc-coh901331.c
1218F: drivers/watchdog/coh901327_wdt.c
1219F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001220F: drivers/mfd/ab3100*
1221F: drivers/rtc/rtc-ab3100.c
1222F: drivers/rtc/rtc-coh901331.c
1223T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001224
Linus Walleij87572882010-12-22 09:18:29 +01001225ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001226M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001227M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229S: Maintained
1230F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001231F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001232F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001233F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001234F: drivers/mfd/abx500*
1235F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001236F: drivers/mfd/dbx500*
1237F: drivers/mfd/db8500*
1238F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001239F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001240F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001241T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001242
Russell Kingd4275352009-04-16 14:05:27 +01001243ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001244M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001246W: http://www.arm.linux.org.uk/
1247S: Maintained
1248F: arch/arm/vfp/
1249
Marek Vasute66b6d82010-03-26 06:51:32 +01001250ARM/VOIPAC PXA270 SUPPORT
1251M: Marek Vasut <marek.vasut@gmail.com>
1252L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1253S: Maintained
1254F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001255F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001256
Tony Prisk04529fe2012-07-24 04:19:37 +12001257ARM/VT8500 ARM ARCHITECTURE
1258M: Tony Prisk <linux@prisktech.co.nz>
1259L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260S: Maintained
1261F: arch/arm/mach-vt8500/
1262F: drivers/video/vt8500lcdfb.*
1263F: drivers/video/wm8505fb*
1264F: drivers/video/wmt_ge_rops.*
1265F: drivers/tty/serial/vt8500_serial.c
1266F: drivers/rtc/rtc-vt8500-c
1267
Marek Vasute66b6d82010-03-26 06:51:32 +01001268ARM/ZIPIT Z2 SUPPORT
1269M: Marek Vasut <marek.vasut@gmail.com>
1270L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271S: Maintained
1272F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001273F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001274
Catalin Marinas38074222012-03-05 11:49:34 +00001275ARM64 PORT (AARCH64 ARCHITECTURE)
1276M: Catalin Marinas <catalin.marinas@arm.com>
1277L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278S: Maintained
1279F: arch/arm64/
1280
George Josephd58de032010-03-05 22:17:25 +01001281ASC7621 HARDWARE MONITOR DRIVER
1282M: George Joseph <george.joseph@fairview5.com>
1283L: lm-sensors@lm-sensors.org
1284S: Maintained
1285F: Documentation/hwmon/asc7621
1286F: drivers/hwmon/asc7621.c
1287
Corentin Charyb229ece2011-02-26 10:20:40 +01001288ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001289M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001291L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001292W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001294F: drivers/platform/x86/asus*.c
1295F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001297ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001299L: lm-sensors@lm-sensors.org
1300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001302
Andrew Morton953a6472008-11-06 12:53:28 -08001303ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001304M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001305W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001307F: Documentation/crypto/async-tx-api.txt
1308F: crypto/async_tx/
1309F: drivers/dma/
1310F: include/linux/dmaengine.h
1311F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001312
Wolfram Sanga1867d32009-09-18 22:45:51 +02001313AT24 EEPROM DRIVER
1314M: Wolfram Sang <w.sang@pengutronix.de>
1315L: linux-i2c@vger.kernel.org
1316S: Maintained
1317F: drivers/misc/eeprom/at24.c
1318F: include/linux/i2c/at24.h
1319
Randy Dunlape7839f22008-10-12 16:11:45 -07001320ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001322W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001324F: Documentation/aoe/
1325F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Joe Perches9a10a872010-12-01 09:37:55 -08001327ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001329L: linux-wireless@vger.kernel.org
1330S: Supported
1331F: drivers/net/wireless/ath/*
1332
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001333ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Jiri Slaby <jirislaby@gmail.com>
1335M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001336M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001337L: linux-wireless@vger.kernel.org
1338L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001339W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001340S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001341F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001342
Kalle Valo12e62d62011-09-13 10:21:25 +03001343ATHEROS ATH6KL WIRELESS DRIVER
1344M: Kalle Valo <kvalo@qca.qualcomm.com>
1345L: linux-wireless@vger.kernel.org
1346W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1347T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1348S: Supported
1349F: drivers/net/wireless/ath/ath6kl/
1350
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001352M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1353M: Jouni Malinen <jouni@qca.qualcomm.com>
1354M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1355M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356L: linux-wireless@vger.kernel.org
1357L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001358W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001359S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001360F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001361
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001362CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1363M: Christian Lamparter <chunkeey@googlemail.com>
1364L: linux-wireless@vger.kernel.org
1365W: http://wireless.kernel.org/en/users/Drivers/carl9170
1366S: Maintained
1367F: drivers/net/wireless/ath/carl9170/
1368
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001369ATK0110 HWMON DRIVER
1370M: Luca Tettamanti <kronos.it@gmail.com>
1371L: lm-sensors@lm-sensors.org
1372S: Maintained
1373F: drivers/hwmon/asus_atk0110.c
1374
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001375ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001379
Chris Snook7ae115b2008-09-09 03:26:57 -04001380ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001381M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001382M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001383L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001384W: http://sourceforge.net/projects/atl1
1385W: http://atl1.sourceforge.net
1386S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001387F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001391L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001392L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393W: http://linux-atm.sourceforge.net
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/atm/
1396F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Pierre Ossman272f1332007-05-14 21:25:26 +02001398ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001399M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001400L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001401W: http://www.atmel.com/products/AT91/
1402W: http://www.at91.com/
1403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001404F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001405
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001406ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001407M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001408S: Maintained
1409F: drivers/mmc/host/atmel-mci.c
1410F: drivers/mmc/host/atmel-mci-regs.h
1411
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001412ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001413M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001414S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001415F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001416
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001417ATMEL DMA DRIVER
1418M: Nicolas Ferre <nicolas.ferre@atmel.com>
1419L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420S: Supported
1421F: drivers/dma/at_hdmac.c
1422F: drivers/dma/at_hdmac_regs.h
1423F: arch/arm/mach-at91/include/mach/at_hdmac.h
1424
Josh Wu15515542012-03-23 17:56:29 +08001425ATMEL ISI DRIVER
1426M: Josh Wu <josh.wu@atmel.com>
1427L: linux-media@vger.kernel.org
1428S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001429F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001430F: include/media/atmel-isi.h
1431
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001432ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001434L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001436F: drivers/video/atmel_lcdfb.c
1437F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001438
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001439ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001440M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001441S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001442F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001443
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001444ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001445M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001446S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001447F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001448
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001449ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1450M: Nicolas Ferre <nicolas.ferre@atmel.com>
1451L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452S: Supported
1453F: drivers/misc/atmel_tclib.c
1454F: drivers/clocksource/tcb_clksrc.c
1455
Josh Wuff2675d2012-03-23 17:56:55 +08001456ATMEL TSADCC DRIVER
1457M: Josh Wu <josh.wu@atmel.com>
1458L: linux-input@vger.kernel.org
1459S: Supported
1460F: drivers/input/touchscreen/atmel_tsadcc.c
1461
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001462ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001463M: Nicolas Ferre <nicolas.ferre@atmel.com>
1464L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001466F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001470L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471W: http://www.thekelleys.org.uk/atmel
1472W: http://atmelwlandriver.sourceforge.net/
1473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001474F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Chris Wrighta92b7b82005-07-07 18:12:23 -07001476AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001477M: Al Viro <viro@zeniv.linux.org.uk>
1478M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001479L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001480W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001481T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001483F: include/linux/audit.h
1484F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001485
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001486AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001487M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001488W: http://miguelojeda.es/auxdisplay.htm
1489W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: drivers/auxdisplay/
1492F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001493
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001494AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001495M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1496M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001497W: http://www.atmel.com/products/AVR32/
1498W: http://avr32linux.org/
1499W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001501F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001502
1503AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001504M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1505M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001507F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001510M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001512W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: include/linux/ax25.h
1515F: include/net/ax25.h
1516F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001518AZ6007 DVB DRIVER
1519M: Mauro Carvalho Chehab <mchehab@redhat.com>
1520L: linux-media@vger.kernel.org
1521W: http://linuxtv.org
1522T: git git://linuxtv.org/media_tree.git
1523S: Maintained
1524F: drivers/media/usb/dvb-usb-v2/az6007.c
1525
Hans Verkuil67773762012-11-23 07:09:23 -03001526AZTECH FM RADIO RECEIVER DRIVER
1527M: Hans Verkuil <hverkuil@xs4all.nl>
1528L: linux-media@vger.kernel.org
1529T: git git://linuxtv.org/media_tree.git
1530W: http://linuxtv.org
1531S: Maintained
1532F: drivers/media/radio/radio-aztech*
1533
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001535M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001536L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001537L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001538W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541
1542B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Larry Finger <Larry.Finger@lwfinger.net>
1544M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001545L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001546L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001547W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550
Richard Purdie300abeb2007-02-07 22:21:07 +00001551BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001552M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001554F: drivers/video/backlight/
1555F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001556
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001557BATMAN ADVANCED
1558M: Marek Lindner <lindner_marek@yahoo.de>
1559M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001560M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001561L: b.a.t.m.a.n@lists.open-mesh.org
1562W: http://www.open-mesh.org/
1563S: Maintained
1564F: net/batman-adv/
1565
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001567M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001568L: linux-hams@vger.kernel.org
1569W: http://www.baycom.org/~tom/ham/ham.html
1570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001572
1573BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001574S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001575F: Documentation/filesystems/befs.txt
1576F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001577
1578BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001579M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001581F: Documentation/filesystems/bfs.txt
1582F: fs/bfs/
1583F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584
Bryan Wu1394f032007-05-06 14:50:22 -07001585BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001587L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001588W: http://blackfin.uclinux.org
1589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001590F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001591
Bryan Wue190d6b2007-07-17 14:43:44 +08001592BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001593L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001594W: http://blackfin.uclinux.org
1595S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001596F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001597
Mike Frysinger566da5b2007-06-11 15:31:30 +08001598BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001600L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001601W: http://blackfin.uclinux.org
1602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001604
Mike Frysinger936ed492010-03-10 15:20:38 -08001605BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001606M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001607L: uclinux-dist-devel@blackfin.uclinux.org
1608W: http://blackfin.uclinux.org
1609S: Supported
1610F: drivers/mmc/host/bfin_sdh.c
1611
Bryan Wu1394f032007-05-06 14:50:22 -07001612BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001614L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001615W: http://blackfin.uclinux.org
1616S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001617F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001618
Bryan Wu1e6d3202007-07-15 02:50:02 +08001619BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001620M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001621L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001622W: http://blackfin.uclinux.org
1623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001625
Bryan Wud24ecfc2007-05-01 23:26:32 +02001626BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001628L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001629W: http://blackfin.uclinux.org/
1630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001631F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001632
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001633BLINKM RGB LED DRIVER
1634M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1635S: Maintained
1636F: drivers/leds/leds-blinkm.c
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001639M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001640T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Joern Engel2b54aae2008-02-06 01:38:02 -08001644BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001646L: linux-mtd@lists.infradead.org
1647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001649
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001650BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001651M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001652M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001653M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001654L: linux-bluetooth@vger.kernel.org
1655W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001656T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1657T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001659F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001663M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001664M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001665L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001666W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001667T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1668T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001670F: net/bluetooth/
1671F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001674M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001675M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001676L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001677W: http://sourceforge.net/projects/bonding/
1678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001679F: drivers/net/bonding/
1680F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Gary Zambrano39105892006-06-22 17:26:20 -07001682BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001684L: netdev@vger.kernel.org
1685S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001686F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001687
Michael Chan948c51e2006-06-04 02:51:39 -07001688BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001689M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001690L: netdev@vger.kernel.org
1691S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001692F: drivers/net/ethernet/broadcom/bnx2.*
1693F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001694
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001695BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001697L: netdev@vger.kernel.org
1698S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001699F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001700
Stephen Warrenf680f252012-09-15 00:18:54 -06001701BROADCOM BCM2835 ARM ARCHICTURE
1702M: Stephen Warren <swarren@wwwdotorg.org>
1703L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1704T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1705S: Maintained
1706F: arch/arm/mach-bcm2835/
1707F: arch/arm/boot/dts/bcm2835*
1708F: arch/arm/configs/bcm2835_defconfig
1709F: drivers/*/*bcm2835*
1710
Michael Chan948c51e2006-06-04 02:51:39 -07001711BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001712M: Matt Carlson <mcarlson@broadcom.com>
1713M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001714L: netdev@vger.kernel.org
1715S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001716F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001717
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001718BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1719M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001720M: Roland Vossen <rvossen@broadcom.com>
1721M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001722M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1723M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001724L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001725L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001726S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001727F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001728
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001729BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1730M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1731L: linux-scsi@vger.kernel.org
1732S: Supported
1733F: drivers/scsi/bnx2fc/
1734
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001735BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1736M: Rafał Miłecki <zajec5@gmail.com>
1737L: linux-wireless@vger.kernel.org
1738S: Maintained
1739F: drivers/bcma/
1740F: include/linux/bcma/
1741
Jing Huang7725ccf2009-09-23 17:46:15 -07001742BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001743M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001744L: linux-scsi@vger.kernel.org
1745S: Supported
1746F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001747
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001748BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1749M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001752F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001753
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001754BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001755M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001756L: linux-scsi@vger.kernel.org
1757S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001758F: block/bsg.c
1759F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001760
Clemens Ladischaf399172011-01-10 16:32:54 +01001761BT87X AUDIO DRIVER
1762M: Clemens Ladisch <clemens@ladisch.de>
1763L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1764T: git git://git.alsa-project.org/alsa-kernel.git
1765S: Maintained
1766F: Documentation/sound/alsa/Bt87x.txt
1767F: sound/pci/bt87x.c
1768
Michael Bueschff1d5c22008-07-25 01:46:10 -07001769BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001770M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001771W: http://bu3sch.de/btgpio.php
1772S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001773F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001774
Joe Percheseb1eb042009-01-21 10:49:16 -05001775BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001776M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001777L: linux-btrfs@vger.kernel.org
1778W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001779Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001780T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001782F: Documentation/filesystems/btrfs.txt
1783F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001786M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001787L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001788W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001789T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001790S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001791F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001792F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Clemens Ladischaf399172011-01-10 16:32:54 +01001794C-MEDIA CMI8788 DRIVER
1795M: Clemens Ladisch <clemens@ladisch.de>
1796L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1797T: git git://git.alsa-project.org/alsa-kernel.git
1798S: Maintained
1799F: sound/pci/oxygen/
1800
Mark Salter21413552011-10-04 11:21:42 -04001801C6X ARCHITECTURE
1802M: Mark Salter <msalter@redhat.com>
1803M: Aurelien Jacquiot <a-jacquiot@ti.com>
1804L: linux-c6x-dev@linux-c6x.org
1805W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1806S: Maintained
1807F: arch/c6x/
1808
David Howellsa5432f52009-04-20 15:46:45 +01001809CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001811L: linux-cachefs@redhat.com
1812S: Supported
1813F: Documentation/filesystems/caching/cachefiles.txt
1814F: fs/cachefiles/
1815
Hans Verkuilc815ca32012-11-23 07:05:54 -03001816CADET FM/AM RADIO RECEIVER DRIVER
1817M: Hans Verkuil <hverkuil@xs4all.nl>
1818L: linux-media@vger.kernel.org
1819T: git git://linuxtv.org/media_tree.git
1820W: http://linuxtv.org
1821S: Maintained
1822F: drivers/media/radio/radio-cadet*
1823
Jonathan Corbet77d51402007-03-22 19:44:17 -03001824CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001825M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001826L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001827T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001829F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001830F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001831
Joe Perches201b6ba2010-09-07 20:33:24 +00001832CAIF NETWORK LAYER
1833M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1834L: netdev@vger.kernel.org
1835S: Supported
1836F: Documentation/networking/caif/
1837F: drivers/net/caif/
1838F: include/linux/caif/
1839F: include/net/caif/
1840F: net/caif/
1841
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001842CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001843M: Muli Ben-Yehuda <muli@il.ibm.com>
1844M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001845L: discuss@x86-64.org
1846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: arch/x86/kernel/pci-calgary_64.c
1848F: arch/x86/kernel/tce_64.c
1849F: arch/x86/include/asm/calgary.h
1850F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001851
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001852CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001853M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001854L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001855W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001856T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001857S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001858F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001859F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001860F: include/linux/can/core.h
1861F: include/linux/can/bcm.h
1862F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001863F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001864
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001865CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001867M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001868L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001869W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001870T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001871S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001872F: drivers/net/can/
1873F: include/linux/can/dev.h
1874F: include/linux/can/error.h
1875F: include/linux/can/netlink.h
1876F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001877
James Morris95d16c72012-03-16 12:05:48 +11001878CAPABILITIES
1879M: Serge Hallyn <serge.hallyn@canonical.com>
1880L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001881S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001882F: include/linux/capability.h
1883F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001884F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001885F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001886
Arnd Bergmannb8154542008-05-16 11:10:59 +02001887CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001889L: linuxppc-dev@lists.ozlabs.org
1890L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001891W: http://www.ibm.com/developerworks/power/cell/
1892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001893F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001894F: arch/powerpc/include/asm/spu*.h
1895F: arch/powerpc/oprofile/*cell*
1896F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001897
Sage Weil9030aaf2009-10-06 11:31:15 -07001898CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001899M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001900L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001901W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001902T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001903S: Supported
1904F: Documentation/filesystems/ceph.txt
1905F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001906F: net/ceph
1907F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001908F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001909
David Vrabel18332a82008-09-17 16:34:44 +01001910CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001911L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001912S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001913F: Documentation/usb/WUSB-Design-overview.txt
1914F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001915F: drivers/usb/host/hwa-hc.c
1916F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001917F: drivers/usb/wusbcore/
1918F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001919
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001920CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001922W: http://miguelojeda.es/auxdisplay.htm
1923W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/auxdisplay/cfag12864b.c
1926F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001927
1928CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001929M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001930W: http://miguelojeda.es/auxdisplay.htm
1931W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/auxdisplay/cfag12864bfb.c
1934F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001935
Johannes Berg704232c2007-04-23 12:20:05 -07001936CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001938L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001939W: http://wireless.kernel.org/
1940T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1941T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001943F: include/linux/nl80211.h
1944F: include/net/cfg80211.h
1945F: net/wireless/*
1946X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001947
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001948CHAR and MISC DRIVERS
1949M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001950M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001951T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001952S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001953F: drivers/char/*
1954F: drivers/misc/*
1955
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001956CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001957M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001959F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001960
Harry Weif8407f22011-02-25 14:44:15 -08001961CHINESE DOCUMENTATION
1962M: Harry Wei <harryxiyou@gmail.com>
1963L: xiyoulinuxkernelgroup@googlegroups.com
1964L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1965S: Maintained
1966F: Documentation/zh_CN/
1967
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001968CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1969M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1970L: linux-usb@vger.kernel.org
1971S: Maintained
1972F: drivers/usb/chipidea/
1973
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001974CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001975M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001976M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001977M: Neel Patel <neepatel@cisco.com>
1978M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001979S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001980F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001981
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001982CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001983M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001984L: netdev@vger.kernel.org
1985S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001986F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001987
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001988CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001990L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001993
Timur Tabid9e9d822008-04-24 08:45:26 +10001994CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001995M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001996L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001998F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001999
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002000CLEANCACHE API
2001M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2002L: linux-kernel@vger.kernel.org
2003S: Maintained
2004F: mm/cleancache.c
2005F: include/linux/cleancache.h
2006
Russell Kingd4275352009-04-16 14:05:27 +01002007CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002008M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002009S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002010F: include/linux/clk.h
2011
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002012CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002013M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002014M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2015M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002016L: linux-scsi@vger.kernel.org
2017S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002018F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002019
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002020CMPC ACPI DRIVER
2021M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2022M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002023L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002024S: Supported
2025F: drivers/platform/x86/classmate-laptop.c
2026
Nicolas Palix74425ee2010-06-06 17:15:01 +02002027COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002028M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002029M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002030M: Nicolas Palix <nicolas.palix@imag.fr>
2031L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002032W: http://coccinelle.lip6.fr/
2033S: Supported
2034F: scripts/coccinelle/
2035F: scripts/coccicheck
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002038M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039M: coda@cs.cmu.edu
2040L: codalist@coda.cs.cmu.edu
2041W: http://www.coda.cs.cmu.edu/
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: Documentation/filesystems/coda.txt
2044F: fs/coda/
2045F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Mike Turquette7704add2012-05-02 18:37:45 -07002047COMMON CLK FRAMEWORK
2048M: Mike Turquette <mturquette@ti.com>
2049M: Mike Turquette <mturquette@linaro.org>
2050L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2051T: git git://git.linaro.org/people/mturquette/linux.git
2052S: Maintained
2053F: drivers/clk/clk.c
2054F: drivers/clk/clk-*
2055F: include/linux/clk-pr*
2056
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002057COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002058M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002059L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002060L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002061W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002062Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002063T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002065F: Documentation/filesystems/cifs.txt
2066F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002069M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002070L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002076L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002078F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002081M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002082L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002086COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002088L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002090F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002091
Simon Arlott949be0f2007-03-06 02:47:46 -08002092CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002094L: accessrunner-general@lists.sourceforge.net
2095W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002097F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002098
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002099CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002100M: Joel Becker <jlbec@evilplan.org>
2101T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002103F: fs/configfs/
2104F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002105
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002106CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002107M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002108L: netdev@vger.kernel.org
2109S: Maintained
2110F: drivers/connector/
2111
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002112CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002113M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002114M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002115L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002116L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002117T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002119F: include/linux/cgroup*
2120F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002121F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002122
Rudolf Marekbebe4672007-05-08 17:22:02 +02002123CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002124M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002125L: lm-sensors@lm-sensors.org
2126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: Documentation/hwmon/coretemp
2128F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132W: http://www.fi.muni.cz/~kas/cosa/
2133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Florian Fainelli4371ee32009-06-01 02:43:17 -07002136CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002138L: netdev@vger.kernel.org
2139S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002140F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002143M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002144L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002145L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/cpufreq/
2148F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002153F: arch/x86/kernel/cpuid.c
2154F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002156CPU POWER MONITORING SUBSYSTEM
2157M: Dominik Brodowski <linux@dominikbrodowski.net>
2158M: Thomas Renninger <trenn@suse.de>
2159S: Maintained
2160F: tools/power/cpupower
2161
Paul Jacksoned90fb42005-09-27 21:45:37 -07002162CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002163M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002164W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002165W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002167F: Documentation/cgroups/cpusets.txt
2168F: include/linux/cpuset.h
2169F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002172W: http://sourceforge.net/projects/cramfs/
2173S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002174F: Documentation/filesystems/cramfs.txt
2175F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002178M: Mikael Starvik <starvik@axis.com>
2179M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002180L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181W: http://developer.axis.com
2182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002183F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002184F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Herbert Xu <herbert@gondor.apana.org.au>
2188M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002190T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: Documentation/crypto/
2193F: arch/*/crypto/
2194F: crypto/
2195F: drivers/crypto/
2196F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Neil Horman5b07bd52009-02-05 16:03:04 +11002198CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002200L: linux-crypto@vger.kernel.org
2201S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002202F: crypto/ansi_cprng.c
2203F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002204
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002205CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002206M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002208F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002209
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002210CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002211M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002212L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002213L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002214T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002215W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002216W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002218F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002219F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002220F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002221
Hans Verkuil3f101d92012-11-23 07:00:02 -03002222CX2341X MPEG ENCODER HELPER MODULE
2223M: Hans Verkuil <hverkuil@xs4all.nl>
2224L: linux-media@vger.kernel.org
2225T: git git://linuxtv.org/media_tree.git
2226W: http://linuxtv.org
2227S: Maintained
2228F: drivers/media/i2c/cx2341x*
2229F: include/media/cx2341x*
2230
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002231CX88 VIDEO4LINUX DRIVER
2232M: Mauro Carvalho Chehab <mchehab@redhat.com>
2233L: linux-media@vger.kernel.org
2234W: http://linuxtv.org
2235T: git git://linuxtv.org/media_tree.git
2236S: Odd fixes
2237F: Documentation/video4linux/cx88/
2238F: drivers/media/pci/cx88/
2239
Antti Palosaari91952bc2012-10-01 12:28:46 -03002240CXD2820R MEDIA DRIVER
2241M: Antti Palosaari <crope@iki.fi>
2242L: linux-media@vger.kernel.org
2243W: http://linuxtv.org/
2244W: http://palosaari.fi/linux/
2245Q: http://patchwork.linuxtv.org/project/linux-media/list/
2246T: git git://linuxtv.org/anttip/media_tree.git
2247S: Maintained
2248F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002249
Steve Wisee5ec3782008-05-20 14:06:33 -07002250CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002251M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002252L: netdev@vger.kernel.org
2253W: http://www.chelsio.com
2254S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002255F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002256
2257CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002259L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002260W: http://www.openfabrics.org
2261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002263
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002264CXGB4 ETHERNET DRIVER (CXGB4)
2265M: Dimitris Michailidis <dm@chelsio.com>
2266L: netdev@vger.kernel.org
2267W: http://www.chelsio.com
2268S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002269F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002270
2271CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2272M: Steve Wise <swise@chelsio.com>
2273L: linux-rdma@vger.kernel.org
2274W: http://www.openfabrics.org
2275S: Supported
2276F: drivers/infiniband/hw/cxgb4/
2277
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002278CXGB4VF ETHERNET DRIVER (CXGB4VF)
2279M: Casey Leedom <leedom@chelsio.com>
2280L: netdev@vger.kernel.org
2281W: http://www.chelsio.com
2282S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002283F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002284
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002285STMMAC ETHERNET DRIVER
2286M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2287L: netdev@vger.kernel.org
2288W: http://www.stlinux.com
2289S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002290F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002294L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295W: http://www.arm.linux.org.uk/
2296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002297F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002300M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002301W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002307S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002308F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002309F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002313S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002316CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002317M: Javier Martinez Canillas <javier@dowhile0.org>
2318L: linux-input@vger.kernel.org
2319S: Maintained
2320F: drivers/input/touchscreen/cyttsp*
2321F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325W: http://yaina.de/jreuter/
2326W: http://www.qsl.net/dl1bke/
2327L: linux-hams@vger.kernel.org
2328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002329F: net/ax25/af_ax25.c
2330F: net/ax25/ax25_dev.c
2331F: net/ax25/ax25_ds_*
2332F: net/ax25/ax25_in.c
2333F: net/ax25/ax25_out.c
2334F: net/ax25/ax25_timer.c
2335F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002337DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002338L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002339S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002340F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002341F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002342
2343DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002345W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002351M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Ali Akcaagac <aliakc@web.de>
2353M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002355L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356L: http://lists.twibble.org/mailman/listinfo/dc395x/
2357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002358F: Documentation/scsi/dc395x.txt
2359F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002361DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002362M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002363L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002364W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: include/linux/dccp.h
2367F: include/linux/tfrc.h
2368F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371W: http://linux-decnet.sourceforge.net
2372L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002373S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002374F: Documentation/networking/decnet.txt
2375F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002380F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002382DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002384L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002386F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390W: http://www.debian.org/~dz/i8k/
2391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/char/i8k.c
2393F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Doug Warzecha90563ec2005-09-06 15:17:15 -07002395DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002396M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002398F: Documentation/dcdbas.txt
2399F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002400
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002401DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002402M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002403S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002404F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002405
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002406DESIGNWARE USB3 DRD IP DRIVER
2407M: Felipe Balbi <balbi@ti.com>
2408L: linux-usb@vger.kernel.org
2409L: linux-omap@vger.kernel.org
2410T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2411S: Maintained
2412F: drivers/usb/dwc3/
2413
Kyungmin Park89d07762012-01-10 15:09:09 -08002414DEVICE FREQUENCY (DEVFREQ)
2415M: MyungJoo Ham <myungjoo.ham@samsung.com>
2416M: Kyungmin Park <kyungmin.park@samsung.com>
2417L: linux-kernel@vger.kernel.org
2418S: Maintained
2419F: drivers/devfreq/
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002422M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424S: Maintained
2425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002426DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002427M: Alasdair Kergon <agk@redhat.com>
2428M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002429L: dm-devel@redhat.com
2430W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002431Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002432T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002434F: Documentation/device-mapper/
2435F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002436F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002437F: include/linux/device-mapper.h
2438F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002439
Guenter Roeck335d7c52011-01-26 11:45:49 -08002440DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002441M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002442L: linux-i2c@vger.kernel.org
2443S: Maintained
2444F: drivers/i2c/busses/i2c-diolan-u2c.c
2445
Randy Dunlape7839f22008-10-12 16:11:45 -07002446DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002449F: Documentation/filesystems/dnotify.txt
2450F: fs/notify/dnotify/
2451F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002454M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2456W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2457W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2458S: Maintained
2459
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002460DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: Documentation/filesystems/quota.txt
2464F: fs/quota/
2465F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Bernie Thompson702686a2012-03-01 13:52:13 -08002467DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2468M: Bernie Thompson <bernie@plugable.com>
2469L: linux-fbdev@vger.kernel.org
2470S: Maintained
2471W: http://plugable.com/category/projects/udlfb/
2472F: drivers/video/udlfb.c
2473F: include/video/udlfb.h
2474F: Documentation/fb/udlfb.txt
2475
Randy Dunlape7839f22008-10-12 16:11:45 -07002476DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002477M: Christine Caulfield <ccaulfie@redhat.com>
2478M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002479L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002480W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002481T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002484
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302485DMA BUFFER SHARING FRAMEWORK
2486M: Sumit Semwal <sumit.semwal@linaro.org>
2487S: Maintained
2488L: linux-media@vger.kernel.org
2489L: dri-devel@lists.freedesktop.org
2490L: linaro-mm-sig@lists.linaro.org
2491F: drivers/base/dma-buf*
2492F: include/linux/dma-buf*
2493F: Documentation/dma-buf-sharing.txt
2494T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2495
Dan Williamsb3e5f262007-08-07 10:26:35 -07002496DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002497M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002498M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002500F: drivers/dma/
2501F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302502T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2503T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002504
Juerg Haefligerb8250372007-06-09 10:11:16 -04002505DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002506M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002507L: lm-sensors@lm-sensors.org
2508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002509F: Documentation/hwmon/dme1737
2510F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002511
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002512DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002513M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002514L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002516F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002517
Joe Perches7d2c86b2009-04-07 20:59:01 -07002518DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002519M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002520L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002521T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002526M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527L: blinux-list@redhat.com
2528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002529F: drivers/char/dtlk.c
2530F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002532DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534L: linux-scsi@vger.kernel.org
2535W: http://www.adaptec.com/
2536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/scsi/dpt*
2538F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002539
Philipp Reisnerb411b362009-09-25 16:07:19 -07002540DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002541P: Philipp Reisner
2542P: Lars Ellenberg
2543M: drbd-dev@lists.linbit.com
2544L: drbd-user@lists.linbit.com
2545W: http://www.drbd.org
2546T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2547T: git git://git.drbd.org/drbd-8.3.git
2548S: Supported
2549F: drivers/block/drbd/
2550F: lib/lru_cache.c
2551F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002552
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002553DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002554M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002555T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002557F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002558F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002559F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002560F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002561F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002562F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002563F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002566M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002567L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002568T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002570F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002571F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Chris Wilson8daf7472010-09-28 14:07:26 +01002573INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002574M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002575L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002576L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002577T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002578S: Supported
2579F: drivers/gpu/drm/i915
2580F: include/drm/i915*
2581
Kyungmin Park398a6d42011-11-02 11:33:16 +09002582DRM DRIVERS FOR EXYNOS
2583M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002584M: Joonyoung Shim <jy0922.shim@samsung.com>
2585M: Seung-Woo Kim <sw0312.kim@samsung.com>
2586M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002587L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002588T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002589S: Supported
2590F: drivers/gpu/drm/exynos
2591F: include/drm/exynos*
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002594M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002595L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Antti Palosaari91952bc2012-10-01 12:28:46 -03002599DVB_USB_AF9015 MEDIA DRIVER
2600M: Antti Palosaari <crope@iki.fi>
2601L: linux-media@vger.kernel.org
2602W: http://linuxtv.org/
2603W: http://palosaari.fi/linux/
2604Q: http://patchwork.linuxtv.org/project/linux-media/list/
2605T: git git://linuxtv.org/anttip/media_tree.git
2606S: Maintained
2607F: drivers/media/usb/dvb-usb-v2/af9015*
2608
2609DVB_USB_AF9035 MEDIA DRIVER
2610M: Antti Palosaari <crope@iki.fi>
2611L: linux-media@vger.kernel.org
2612W: http://linuxtv.org/
2613W: http://palosaari.fi/linux/
2614Q: http://patchwork.linuxtv.org/project/linux-media/list/
2615T: git git://linuxtv.org/anttip/media_tree.git
2616S: Maintained
2617F: drivers/media/usb/dvb-usb-v2/af9035*
2618
2619DVB_USB_ANYSEE MEDIA DRIVER
2620M: Antti Palosaari <crope@iki.fi>
2621L: linux-media@vger.kernel.org
2622W: http://linuxtv.org/
2623W: http://palosaari.fi/linux/
2624Q: http://patchwork.linuxtv.org/project/linux-media/list/
2625T: git git://linuxtv.org/anttip/media_tree.git
2626S: Maintained
2627F: drivers/media/usb/dvb-usb-v2/anysee*
2628
2629DVB_USB_AU6610 MEDIA DRIVER
2630M: Antti Palosaari <crope@iki.fi>
2631L: linux-media@vger.kernel.org
2632W: http://linuxtv.org/
2633W: http://palosaari.fi/linux/
2634Q: http://patchwork.linuxtv.org/project/linux-media/list/
2635T: git git://linuxtv.org/anttip/media_tree.git
2636S: Maintained
2637F: drivers/media/usb/dvb-usb-v2/au6610*
2638
2639DVB_USB_CE6230 MEDIA DRIVER
2640M: Antti Palosaari <crope@iki.fi>
2641L: linux-media@vger.kernel.org
2642W: http://linuxtv.org/
2643W: http://palosaari.fi/linux/
2644Q: http://patchwork.linuxtv.org/project/linux-media/list/
2645T: git git://linuxtv.org/anttip/media_tree.git
2646S: Maintained
2647F: drivers/media/usb/dvb-usb-v2/ce6230*
2648
Michael Krufkyd099dea2012-10-02 00:56:20 -03002649DVB_USB_CXUSB MEDIA DRIVER
2650M: Michael Krufky <mkrufky@linuxtv.org>
2651L: linux-media@vger.kernel.org
2652W: http://linuxtv.org/
2653W: http://github.com/mkrufky
2654Q: http://patchwork.linuxtv.org/project/linux-media/list/
2655T: git git://linuxtv.org/media_tree.git
2656S: Maintained
2657F: drivers/media/usb/dvb-usb-v2/cxusb*
2658
Antti Palosaari91952bc2012-10-01 12:28:46 -03002659DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2660M: Antti Palosaari <crope@iki.fi>
2661L: linux-media@vger.kernel.org
2662W: http://linuxtv.org/
2663W: http://palosaari.fi/linux/
2664Q: http://patchwork.linuxtv.org/project/linux-media/list/
2665T: git git://linuxtv.org/anttip/media_tree.git
2666S: Maintained
2667F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2668
2669DVB_USB_EC168 MEDIA DRIVER
2670M: Antti Palosaari <crope@iki.fi>
2671L: linux-media@vger.kernel.org
2672W: http://linuxtv.org/
2673W: http://palosaari.fi/linux/
2674Q: http://patchwork.linuxtv.org/project/linux-media/list/
2675T: git git://linuxtv.org/anttip/media_tree.git
2676S: Maintained
2677F: drivers/media/usb/dvb-usb-v2/ec168*
2678
Michael Krufky8856f5f2012-10-02 00:55:50 -03002679DVB_USB_MXL111SF MEDIA DRIVER
2680M: Michael Krufky <mkrufky@linuxtv.org>
2681L: linux-media@vger.kernel.org
2682W: http://linuxtv.org/
2683W: http://github.com/mkrufky
2684Q: http://patchwork.linuxtv.org/project/linux-media/list/
2685T: git git://linuxtv.org/mkrufky/mxl111sf.git
2686S: Maintained
2687F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2688
Antti Palosaari91952bc2012-10-01 12:28:46 -03002689DVB_USB_RTL28XXU MEDIA DRIVER
2690M: Antti Palosaari <crope@iki.fi>
2691L: linux-media@vger.kernel.org
2692W: http://linuxtv.org/
2693W: http://palosaari.fi/linux/
2694Q: http://patchwork.linuxtv.org/project/linux-media/list/
2695T: git git://linuxtv.org/anttip/media_tree.git
2696S: Maintained
2697F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2698
2699DVB_USB_V2 MEDIA DRIVER
2700M: Antti Palosaari <crope@iki.fi>
2701L: linux-media@vger.kernel.org
2702W: http://linuxtv.org/
2703W: http://palosaari.fi/linux/
2704Q: http://patchwork.linuxtv.org/project/linux-media/list/
2705T: git git://linuxtv.org/anttip/media_tree.git
2706S: Maintained
2707F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2708F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2709
Jason Baronac0ac382011-08-11 14:36:43 -04002710DYNAMIC DEBUG
2711M: Jason Baron <jbaron@redhat.com>
2712S: Maintained
2713F: lib/dynamic_debug.c
2714F: include/linux/dynamic_debug.h
2715
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002716DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002718S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002719F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002720
Antti Palosaari91952bc2012-10-01 12:28:46 -03002721E4000 MEDIA DRIVER
2722M: Antti Palosaari <crope@iki.fi>
2723L: linux-media@vger.kernel.org
2724W: http://linuxtv.org/
2725W: http://palosaari.fi/linux/
2726Q: http://patchwork.linuxtv.org/project/linux-media/list/
2727T: git git://linuxtv.org/anttip/media_tree.git
2728S: Maintained
2729F: drivers/media/tuners/e4000*
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002733L: linux-eata@i-connect.net
2734L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740L: linux-scsi@vger.kernel.org
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002746L: linux-eata@i-connect.net
2747L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002753L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754W: http://ebtables.sourceforge.net/
2755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002756F: include/linux/netfilter_bridge/ebt_*.h
2757F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Antti Palosaari91952bc2012-10-01 12:28:46 -03002759EC100 MEDIA DRIVER
2760M: Antti Palosaari <crope@iki.fi>
2761L: linux-media@vger.kernel.org
2762W: http://linuxtv.org/
2763W: http://palosaari.fi/linux/
2764Q: http://patchwork.linuxtv.org/project/linux-media/list/
2765T: git git://linuxtv.org/anttip/media_tree.git
2766S: Maintained
2767F: drivers/media/dvb-frontends/ec100*
2768
Michael Halcrow237fead2006-10-04 02:16:22 -07002769ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002770M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002771M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002772L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002773W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002775F: Documentation/filesystems/ecryptfs.txt
2776F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002777
Alan Coxda9bb1d2006-01-18 17:44:13 -08002778EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002779M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002780L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002781W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002783F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002784F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002785F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002786
Borislav Petkovc476c232009-05-20 20:31:58 +02002787EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002789M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002790L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002791W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002792S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002793F: drivers/edac/amd64_edac*
2794
Dave Peterson0e438e32006-03-26 01:38:55 -08002795EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Mark Gross <mark.gross@intel.com>
2797M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002798L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002799W: bluesmoke.sourceforge.net
2800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002801F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002802
2803EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002804M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002805L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002806W: bluesmoke.sourceforge.net
2807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002808F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002809
Douglas Thompson6bc78402007-07-19 01:50:12 -07002810EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002811M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002812L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002813W: bluesmoke.sourceforge.net
2814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002815F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002816
2817EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002818M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002819L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002820W: bluesmoke.sourceforge.net
2821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002822F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002823
2824EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002826L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002827W: bluesmoke.sourceforge.net
2828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002830
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002831EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002832M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002833L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002834W: bluesmoke.sourceforge.net
2835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002837
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002838EDAC-I7300
2839M: Mauro Carvalho Chehab <mchehab@redhat.com>
2840L: linux-edac@vger.kernel.org
2841W: bluesmoke.sourceforge.net
2842S: Maintained
2843F: drivers/edac/i7300_edac.c
2844
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002845EDAC-I7CORE
2846M: Mauro Carvalho Chehab <mchehab@redhat.com>
2847L: linux-edac@vger.kernel.org
2848W: bluesmoke.sourceforge.net
2849S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002850F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002851
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002852EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302854M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002855L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002856W: bluesmoke.sourceforge.net
2857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002858F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002859
2860EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002862L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002863W: bluesmoke.sourceforge.net
2864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002865F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002866
Dave Peterson0e438e32006-03-26 01:38:55 -08002867EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002869L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002870W: bluesmoke.sourceforge.net
2871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002872F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002873
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002874EDAC-SBRIDGE
2875M: Mauro Carvalho Chehab <mchehab@redhat.com>
2876L: linux-edac@vger.kernel.org
2877W: bluesmoke.sourceforge.net
2878S: Maintained
2879F: drivers/edac/sb_edac.c
2880
Clemens Ladischaf399172011-01-10 16:32:54 +01002881EDIROL UA-101/UA-1000 DRIVER
2882M: Clemens Ladisch <clemens@ladisch.de>
2883L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2884T: git git://git.alsa-project.org/alsa-kernel.git
2885S: Maintained
2886F: sound/usb/misc/ua101.c
2887
Matt Fleming1f7df952012-10-03 10:04:02 +01002888EXTENSIBLE FIRMWARE INTERFACE (EFI)
2889M: Matt Fleming <matt.fleming@intel.com>
2890L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002891T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002892S: Maintained
2893F: Documentation/x86/efi-stub.txt
2894F: arch/ia64/kernel/efi.c
2895F: arch/x86/boot/compressed/eboot.[ch]
2896F: arch/x86/include/asm/efi.h
2897F: arch/x86/platform/efi/*
2898F: drivers/firmware/efivars.c
2899F: include/linux/efi*.h
2900
Peter Jones85a00d92010-09-22 13:05:04 -07002901EFIFB FRAMEBUFFER DRIVER
2902L: linux-fbdev@vger.kernel.org
2903M: Peter Jones <pjones@redhat.com>
2904S: Maintained
2905F: drivers/video/efifb.c
2906
Josh Triplett0bee8d22006-07-30 03:03:58 -07002907EFS FILESYSTEM
2908W: http://aeschi.ch.eu.org/efs/
2909S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002910F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002911
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002912EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002913M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2914M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002915L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002917F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002918
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002919EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002920M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002921L: netdev@vger.kernel.org
2922S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002923F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002924
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002925EM28XX VIDEO4LINUX DRIVER
2926M: Mauro Carvalho Chehab <mchehab@redhat.com>
2927L: linux-media@vger.kernel.org
2928W: http://linuxtv.org
2929T: git git://linuxtv.org/media_tree.git
2930S: Maintained
2931F: drivers/media/usb/em28xx/
2932
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002933EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: Paul Gortmaker <paul.gortmaker@windriver.com>
2935M: Matt Mackall <mpm@selenic.com>
2936M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002937L: linux-embedded@vger.kernel.org
2938S: Maintained
2939
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002940EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002941M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002942L: linux-scsi@vger.kernel.org
2943W: http://sourceforge.net/projects/lpfcxxxx
2944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002945F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002946
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002947ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002949S: Maintained
2950F: drivers/misc/cb710/
2951F: drivers/mmc/host/cb710-mmc.*
2952F: include/linux/cb710.h
2953
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002954ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2955M: Maxim Levitsky <maximlevitsky@gmail.com>
2956S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002957F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Christopher Hoover <ch@murgatroid.com>
2961M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002965EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002967S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002968T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/video/s1d13xxxfb.c
2970F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002973M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002974L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002976F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002979M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002980L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002981L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002982W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002984F: include/linux/netfilter_bridge/
2985F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002988M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002990F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002993M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002994L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: Documentation/filesystems/ext2.txt
2997F: fs/ext2/
2998F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003001M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003002M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003003M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003004L: linux-ext4@vger.kernel.org
3005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003006F: Documentation/filesystems/ext3.txt
3007F: fs/ext3/
3008F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08003009
3010EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003012M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003013L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003014W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003015Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003017F: Documentation/filesystems/ext4.txt
3018F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Mimi Zoharc5532b02011-08-17 18:52:24 -04003020Extended Verification Module (EVM)
3021M: Mimi Zohar <zohar@us.ibm.com>
3022S: Supported
3023F: security/integrity/evm/
3024
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003025EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3026M: MyungJoo Ham <myungjoo.ham@samsung.com>
3027M: Chanwoo Choi <cw00.choi@samsung.com>
3028L: linux-kernel@vger.kernel.org
3029S: Maintained
3030F: drivers/extcon/
3031F: Documentation/extcon/
3032
Jingoo Han0a799512012-02-06 11:30:39 +09003033EXYNOS DP DRIVER
3034M: Jingoo Han <jg1.han@samsung.com>
3035L: linux-fbdev@vger.kernel.org
3036S: Maintained
3037F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003038F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003039
Donghwa Lee33ad3912012-03-06 11:44:58 +09003040EXYNOS MIPI DISPLAY DRIVERS
3041M: Inki Dae <inki.dae@samsung.com>
3042M: Donghwa Lee <dh09.lee@samsung.com>
3043M: Kyungmin Park <kyungmin.park@samsung.com>
3044L: linux-fbdev@vger.kernel.org
3045S: Maintained
3046F: drivers/video/exynos/exynos_mipi*
3047F: include/video/exynos_mipi*
3048
Jean Delvaree53004e2006-01-09 23:26:14 +01003049F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003050M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003051L: lm-sensors@lm-sensors.org
3052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/hwmon/f71805f
3054F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003055
Michael Büscheea977e2012-04-02 12:14:32 -03003056FC0011 TUNER DRIVER
3057M: Michael Buesch <m@bues.ch>
3058L: linux-media@vger.kernel.org
3059S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003060F: drivers/media/tuners/fc0011.h
3061F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003062
Antti Palosaari91952bc2012-10-01 12:28:46 -03003063FC2580 MEDIA DRIVER
3064M: Antti Palosaari <crope@iki.fi>
3065L: linux-media@vger.kernel.org
3066W: http://linuxtv.org/
3067W: http://palosaari.fi/linux/
3068Q: http://patchwork.linuxtv.org/project/linux-media/list/
3069T: git git://linuxtv.org/anttip/media_tree.git
3070S: Maintained
3071F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Eric Paris88b2dbd2010-08-18 12:25:50 -04003073FANOTIFY
3074M: Eric Paris <eparis@redhat.com>
3075S: Maintained
3076F: fs/notify/fanotify/
3077F: include/linux/fanotify.h
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003080M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081W: http://www.farsite.co.uk/
3082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003083F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Akinobu Mitac5408b82007-04-23 14:41:20 -07003085FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003088F: Documentation/fault-injection/
3089F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003090
Robert Lovecae727d2010-02-16 12:16:00 -08003091FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3092M: Robert Love <robert.w.love@intel.com>
3093L: devel@open-fcoe.org
3094W: www.Open-FCoE.org
3095S: Supported
3096F: drivers/scsi/libfc/
3097F: drivers/scsi/fcoe/
3098F: include/scsi/fc/
3099F: include/scsi/libfc.h
3100F: include/scsi/libfcoe.h
3101
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003102FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003104L: linux-fsdevel@vger.kernel.org
3105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: include/linux/fcntl.h
3107F: include/linux/fs.h
3108F: fs/fcntl.c
3109F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003110
3111FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003112M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003113L: linux-fsdevel@vger.kernel.org
3114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003116
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003117FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003118M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003119L: lm-sensors@lm-sensors.org
3120S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003121F: drivers/hwmon/f75375s.c
3122F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003123
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003124FIREWIRE AUDIO DRIVERS
3125M: Clemens Ladisch <clemens@ladisch.de>
3126L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3127T: git git://git.alsa-project.org/alsa-kernel.git
3128S: Maintained
3129F: sound/firewire/
3130
Stefan Richtereb86ec52012-11-03 09:25:20 +01003131FIREWIRE MEDIA DRIVERS (firedtv)
3132M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3133L: linux-media@vger.kernel.org
3134L: linux1394-devel@lists.sourceforge.net
3135T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3136S: Maintained
3137F: drivers/media/firewire/
3138
Chris Boota511ce32012-04-14 17:50:35 -07003139FIREWIRE SBP-2 TARGET
3140M: Chris Boot <bootc@bootc.net>
3141L: linux-scsi@vger.kernel.org
3142L: target-devel@vger.kernel.org
3143L: linux1394-devel@lists.sourceforge.net
3144T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3145S: Maintained
3146F: drivers/target/sbp/
3147
Joe Perches7d2c86b2009-04-07 20:59:01 -07003148FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003149M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003151W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003152T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/firewire/
3155F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003156F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003157
3158FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003159M: Ming Lei <ming.lei@canonical.com>
3160L: linux-kernel@vger.kernel.org
3161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: Documentation/firmware_class/
3163F: drivers/base/firmware*.c
3164F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003165
Jiri Kosina8206f662012-05-18 13:52:29 +02003166FLOPPY DRIVER
3167M: Jiri Kosina <jkosina@suse.cz>
3168T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3169S: Odd fixes
3170F: drivers/block/floppy.c
3171
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003173M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003174W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003176F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003177
3178FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003179L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003180S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003181F: drivers/net/wan/dlci.c
3182F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003185M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003186L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003188Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003189T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003192F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003193F: drivers/video/
3194F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003195F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Zhang Wei173acc72008-03-01 07:42:48 -07003197FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003198M: Li Yang <leoli@freescale.com>
3199M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003200L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003203
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003204FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003205M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003206L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003207L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003209F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003210
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003211FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003213L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003216F: arch/arm/plat-mxc/include/mach/imxfb.h
3217F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003218
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003219FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003220M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3221M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003222L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003223L: netdev@vger.kernel.org
3224S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003225F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003226F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003227
Timur Tabid9e9d822008-04-24 08:45:26 +10003228FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003230L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003232F: arch/powerpc/sysdev/qe_lib/
3233F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003234
Joe Perchesb55ef922009-10-26 16:49:46 -07003235FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003237L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003238L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003239S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003240F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003241
Li Yangbeaf53b2007-05-25 13:54:02 +08003242FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003243M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003244L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003245L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003246S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003247F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003248
Timur Tabid9e9d822008-04-24 08:45:26 +10003249FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003250M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003251L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003252S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003253F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003254
3255FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003256M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003257L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003258L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003259S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003260F: sound/soc/fsl/fsl*
3261F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003264M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003267F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Pavel Machek71038f52009-01-15 13:51:02 -08003269FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003270M: Pavel Machek <pavel@ucw.cz>
3271M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003272L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003274F: Documentation/power/freezing-of-tasks.txt
3275F: include/linux/freezer.h
3276F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003277
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003278FRONTSWAP API
3279M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3280L: linux-kernel@vger.kernel.org
3281S: Maintained
3282F: mm/frontswap.c
3283F: include/linux/frontswap.h
3284
David Howellsa5432f52009-04-20 15:46:45 +01003285FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003287L: linux-cachefs@redhat.com
3288S: Supported
3289F: Documentation/filesystems/caching/
3290F: fs/fscache/
3291F: include/linux/fscache*.h
3292
David Howells5ab7ffe2007-04-10 15:10:45 +01003293FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003296F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Jonathan Woithe20b93732008-06-11 10:14:56 +09303298FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303299M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003300L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303303
Heungjun Kim4da621b2011-11-11 08:05:33 -03003304FUJITSU M-5MO LS CAMERA ISP DRIVER
3305M: Kyungmin Park <kyungmin.park@samsung.com>
3306M: Heungjun Kim <riverful.kim@samsung.com>
3307L: linux-media@vger.kernel.org
3308S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003309F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003310F: include/media/m5mols.h
3311
Robert Gerlach2d24c492012-01-18 14:26:22 +01003312FUJITSU TABLET EXTRAS
3313M: Robert Gerlach <khnz@gmx.de>
3314L: platform-driver-x86@vger.kernel.org
3315S: Maintained
3316F: drivers/platform/x86/fujitsu-tablet.c
3317
Miklos Szeredi04578f12005-09-09 13:10:22 -07003318FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003319M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003320L: fuse-devel@lists.sourceforge.net
3321W: http://fuse.sourceforge.net/
3322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003323F: fs/fuse/
3324F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003327M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003329S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003330F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334L: linux-scsi@vger.kernel.org
3335W: http://www.icp-vortex.com/
3336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003337F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003339GEMTEK FM RADIO RECEIVER DRIVER
3340M: Hans Verkuil <hverkuil@xs4all.nl>
3341L: linux-media@vger.kernel.org
3342T: git git://linuxtv.org/media_tree.git
3343W: http://linuxtv.org
3344S: Maintained
3345F: drivers/media/radio/radio-gemtek*
3346
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003347GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003348M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003350F: drivers/i2c/busses/i2c-gpio.c
3351F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003352
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003353GENERIC GPIO I2C MULTIPLEXER DRIVER
3354M: Peter Korsgaard <peter.korsgaard@barco.com>
3355L: linux-i2c@vger.kernel.org
3356S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003357F: drivers/i2c/muxes/i2c-mux-gpio.c
3358F: include/linux/i2c-mux-gpio.h
3359F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003360
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003361GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003365F: drivers/net/wan/c101.c
3366F: drivers/net/wan/hd6457*
3367F: drivers/net/wan/hdlc*
3368F: drivers/net/wan/n2.c
3369F: drivers/net/wan/pc300too.c
3370F: drivers/net/wan/pci200syn.c
3371F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003373GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003374M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003375L: linux-arch@vger.kernel.org
3376T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3377S: Maintained
3378F: include/asm-generic
3379
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003380GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003381M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003382L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003383S: Supported
3384F: drivers/uio/uio_pci_generic.c
3385
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003386GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003387M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003388L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003389W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003390T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3391T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003393F: Documentation/filesystems/gfs2*.txt
3394F: fs/gfs2/
3395F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003396
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003397GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003398M: Hansjoerg Lipp <hjlipp@web.de>
3399M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003400L: gigaset307x-common@lists.sourceforge.net
3401W: http://gigaset307x.sourceforge.net/
3402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003403F: Documentation/isdn/README.gigaset
3404F: drivers/isdn/gigaset/
3405F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003406
Grant Likelya0dc00b2011-02-12 01:48:14 -07003407GPIO SUBSYSTEM
3408M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003409M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003410S: Maintained
3411T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003412F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003413F: drivers/gpio/
3414F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003415F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003416
Harry Wei71a6d0a2011-05-11 15:13:33 -07003417GRE DEMULTIPLEXER DRIVER
3418M: Dmitry Kozlov <xeb@mail.ru>
3419L: netdev@vger.kernel.org
3420S: Maintained
3421F: net/ipv4/gre.c
3422F: include/net/gre.h
3423
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003424GRETH 10/100/1G Ethernet MAC device driver
3425M: Kristoffer Glembo <kristoffer@gaisler.com>
3426L: netdev@vger.kernel.org
3427S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003428F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003429
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003430GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003431M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003432L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003433T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003434S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003435F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003436
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003437GSPCA GL860 SUBDRIVER
3438M: Olivier Lorin <o.lorin@laposte.net>
3439L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003440T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003441S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003442F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003443
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003444GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003445M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003446L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003447T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003448S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003449F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003450
3451GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003453L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003454T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003455S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003456F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003457
Brian Johnson261982f2009-07-19 15:58:56 -03003458GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003459M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003460L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003461T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003462S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003463F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003464
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003465GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003466M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003467L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003468T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003469S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003470F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003471
3472GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003473M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003474L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003475T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003476S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003477F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003478
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003479STK1160 USB VIDEO CAPTURE DRIVER
3480M: Ezequiel Garcia <elezegarcia@gmail.com>
3481L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003482T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003483S: Maintained
3484F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003485
Harry Wei71a6d0a2011-05-11 15:13:33 -07003486HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3487M: Frank Seidel <frank@f-seidel.de>
3488L: platform-driver-x86@vger.kernel.org
3489W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3490S: Maintained
3491F: drivers/platform/x86/hdaps.c
3492
3493HWPOISON MEMORY FAILURE HANDLING
3494M: Andi Kleen <andi@firstfloor.org>
3495L: linux-mm@kvack.org
3496T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3497S: Maintained
3498F: mm/memory-failure.c
3499F: mm/hwpoison-inject.c
3500
3501HYPERVISOR VIRTUAL CONSOLE DRIVER
3502L: linuxppc-dev@lists.ozlabs.org
3503S: Odd Fixes
3504F: drivers/tty/hvc/
3505
Michael Buesch844dd052006-06-26 00:24:59 -07003506HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003507M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003508M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003509L: lm-sensors@lm-sensors.org
3510W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003511T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003512T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003513S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003514F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003516F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003517
3518HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003519M: Matt Mackall <mpm@selenic.com>
3520M: Herbert Xu <herbert@gondor.apana.org.au>
3521S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003522F: Documentation/hw_random.txt
3523F: drivers/char/hw_random/
3524F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003525
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003526HARDWARE SPINLOCK CORE
3527M: Ohad Ben-Cohen <ohad@wizery.com>
3528S: Maintained
3529F: Documentation/hwspinlock.txt
3530F: drivers/hwspinlock/hwspinlock_*
3531F: include/linux/hwspinlock.h
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003534L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003536F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Antti Palosaari91952bc2012-10-01 12:28:46 -03003538HD29L2 MEDIA DRIVER
3539M: Antti Palosaari <crope@iki.fi>
3540L: linux-media@vger.kernel.org
3541W: http://linuxtv.org/
3542W: http://palosaari.fi/linux/
3543Q: http://patchwork.linuxtv.org/project/linux-media/list/
3544T: git git://linuxtv.org/anttip/media_tree.git
3545S: Maintained
3546F: drivers/media/dvb-frontends/hd29l2*
3547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550L: iss_storagedev@hp.com
3551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003552F: Documentation/blockdev/cpqarray.txt
3553F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003554
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003555HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003556M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003557L: iss_storagedev@hp.com
3558S: Supported
3559F: Documentation/scsi/hpsa.txt
3560F: drivers/scsi/hpsa*.[ch]
3561F: include/linux/cciss*.h
3562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003565L: iss_storagedev@hp.com
3566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/blockdev/cciss.txt
3568F: drivers/block/cciss*
3569F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003572L: linux-fsdevel@vger.kernel.org
3573S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003574F: Documentation/filesystems/hfs.txt
3575F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
3577HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579L: linux-nvidia@lists.surfsouth.com
3580W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003582F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003584HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003585M: Pavel Machek <pavel@ucw.cz>
3586M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003587L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003589F: arch/x86/power/
3590F: drivers/base/power/
3591F: kernel/power/
3592F: include/linux/suspend.h
3593F: include/linux/freezer.h
3594F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003595F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003596
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003597HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003599L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003600T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003602F: drivers/hid/
3603F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003604
Ingo Molnar38bed542007-02-22 09:09:34 +01003605HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003606M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003607T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: Documentation/timers/
3610F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003611F: kernel/time/clockevents.c
3612F: kernel/time/tick*.*
3613F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003614F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003615F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003619S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003620F: drivers/net/hamradio/dmascc.c
3621F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003623HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003625W: http://www.highpoint-tech.com
3626S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003627F: Documentation/scsi/hptiop.txt
3628F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632L: linux-hippi@sunsite.dk
3633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: include/linux/hippidevice.h
3635F: include/linux/if_hippi.h
3636F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003637F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Jouni Malinenff1d2762005-05-12 22:54:16 -04003639HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003640M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003641L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003642L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003643W: http://hostap.epitest.fi/
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003646
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003647HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003648L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003649S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003650F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003651
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003652HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003654S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003655F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003656
Joe Perches7d2c86b2009-04-07 20:59:01 -07003657HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003658M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: Documentation/timers/hpet.txt
3661F: drivers/char/hpet.c
3662F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003663
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003664HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003665M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: arch/x86/kernel/hpet.c
3668F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003671M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003674F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Joe Perches7d2c86b2009-04-07 20:59:01 -07003676HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003677M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003678W: http://www.pharscape.org
3679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003680F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003681
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003682HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003684L: linux-input@vger.kernel.org
3685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003689M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003693Hyper-V CORE AND DRIVERS
3694M: K. Y. Srinivasan <kys@microsoft.com>
3695M: Haiyang Zhang <haiyangz@microsoft.com>
3696L: devel@linuxdriverproject.org
3697S: Maintained
3698F: drivers/hv/
3699F: drivers/hid/hid-hyperv.c
3700F: drivers/net/hyperv/
3701F: drivers/staging/hv/
3702
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003703I2C OVER PARALLEL PORT
3704M: Jean Delvare <khali@linux-fr.org>
3705L: linux-i2c@vger.kernel.org
3706S: Maintained
3707F: Documentation/i2c/busses/i2c-parport
3708F: Documentation/i2c/busses/i2c-parport-light
3709F: drivers/i2c/busses/i2c-parport.c
3710F: drivers/i2c/busses/i2c-parport-light.c
3711
3712I2C/SMBUS CONTROLLER DRIVERS FOR PC
3713M: Jean Delvare <khali@linux-fr.org>
3714L: linux-i2c@vger.kernel.org
3715S: Maintained
3716F: Documentation/i2c/busses/i2c-ali1535
3717F: Documentation/i2c/busses/i2c-ali1563
3718F: Documentation/i2c/busses/i2c-ali15x3
3719F: Documentation/i2c/busses/i2c-amd756
3720F: Documentation/i2c/busses/i2c-amd8111
3721F: Documentation/i2c/busses/i2c-i801
3722F: Documentation/i2c/busses/i2c-nforce2
3723F: Documentation/i2c/busses/i2c-piix4
3724F: Documentation/i2c/busses/i2c-sis5595
3725F: Documentation/i2c/busses/i2c-sis630
3726F: Documentation/i2c/busses/i2c-sis96x
3727F: Documentation/i2c/busses/i2c-via
3728F: Documentation/i2c/busses/i2c-viapro
3729F: drivers/i2c/busses/i2c-ali1535.c
3730F: drivers/i2c/busses/i2c-ali1563.c
3731F: drivers/i2c/busses/i2c-ali15x3.c
3732F: drivers/i2c/busses/i2c-amd756.c
3733F: drivers/i2c/busses/i2c-amd756-s4882.c
3734F: drivers/i2c/busses/i2c-amd8111.c
3735F: drivers/i2c/busses/i2c-i801.c
3736F: drivers/i2c/busses/i2c-isch.c
3737F: drivers/i2c/busses/i2c-nforce2.c
3738F: drivers/i2c/busses/i2c-nforce2-s4985.c
3739F: drivers/i2c/busses/i2c-piix4.c
3740F: drivers/i2c/busses/i2c-sis5595.c
3741F: drivers/i2c/busses/i2c-sis630.c
3742F: drivers/i2c/busses/i2c-sis96x.c
3743F: drivers/i2c/busses/i2c-via.c
3744F: drivers/i2c/busses/i2c-viapro.c
3745
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003746I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003747M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003748L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003750F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003751
Jean Delvare5b543962005-08-15 19:51:02 +02003752I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003753M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003754M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003755L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003756W: http://i2c.wiki.kernel.org/
3757T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003758T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: Documentation/i2c/
3761F: drivers/i2c/
3762F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003763F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003765I2C-TAOS-EVM DRIVER
3766M: Jean Delvare <khali@linux-fr.org>
3767L: linux-i2c@vger.kernel.org
3768S: Maintained
3769F: Documentation/i2c/busses/i2c-taos-evm
3770F: drivers/i2c/busses/i2c-taos-evm.c
3771
Till Harbaume8c76ee2007-05-01 23:26:35 +02003772I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003774L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003775W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003777F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003780M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003782F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003786T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787S: Maintained
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Tony Luck <tony.luck@intel.com>
3791M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003793T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003795F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Kent Yoder956c2032012-09-07 04:17:01 +08003797IBM Power in-Nest Crypto Acceleration
3798M: Kent Yoder <key@linux.vnet.ibm.com>
3799L: linux-crypto@vger.kernel.org
3800S: Supported
3801F: drivers/crypto/nx/
3802
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003803IBM Power 842 compression accelerator
3804M: Robert Jennings <rcj@linux.vnet.ibm.com>
3805S: Supported
3806F: drivers/crypto/nx/nx-842.c
3807F: include/linux/nx842.h
3808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003812F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Santiago Leon9d348af2010-09-03 18:29:53 +00003814IBM Power Virtual Ethernet Device Driver
3815M: Santiago Leon <santil@linux.vnet.ibm.com>
3816L: netdev@vger.kernel.org
3817S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003818F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003819
Robert Jennings4b7652c2012-07-31 12:34:36 -05003820IBM Power Virtual SCSI/FC Device Drivers
3821M: Robert Jennings <rcj@linux.vnet.ibm.com>
3822L: linux-scsi@vger.kernel.org
3823S: Supported
3824F: drivers/scsi/ibmvscsi/
3825X: drivers/scsi/ibmvscsi/ibmvstgt.c
3826
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827IBM ServeRAID RAID DRIVER
3828P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003829M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003832F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003834ICH LPC AND GPIO DRIVER
3835M: Peter Tyser <ptyser@xes-inc.com>
3836S: Maintained
3837F: drivers/mfd/lpc_ich.c
3838F: drivers/gpio/gpio-ich.c
3839
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003840IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003843Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003844T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003846F: Documentation/ide/
3847F: drivers/ide/
3848F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Ike Panhc6cb8c132011-08-25 22:28:45 +08003850IDEAPAD LAPTOP EXTRAS DRIVER
3851M: Ike Panhc <ike.pan@canonical.com>
3852L: platform-driver-x86@vger.kernel.org
3853W: http://launchpad.net/ideapad-laptop
3854S: Maintained
3855F: drivers/platform/x86/ideapad-laptop.c
3856
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003857IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003858M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003859L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: Documentation/cdrom/ide-cd
3862F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Andy Henroid27471fd2008-10-09 11:45:22 -07003864IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003865M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003866L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003868F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003869
Sergey Lapin02cf2282009-06-08 12:18:50 +00003870IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003871M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003873L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003874W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003875T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003876S: Maintained
3877F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003878F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003879F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003880
Sean Young40ad4a32012-11-19 10:32:53 -03003881IGUANAWORKS USB IR TRANSCEIVER
3882M: Sean Young <sean@mess.org>
3883L: linux-media@vger.kernel.org
3884S: Maintained
3885F: drivers/media/rc/iguanair.c
3886
Ameya Palande9545f862012-01-10 09:00:58 -08003887IIO SUBSYSTEM AND DRIVERS
3888M: Jonathan Cameron <jic23@cam.ac.uk>
3889L: linux-iio@vger.kernel.org
3890S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003891F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003892F: drivers/staging/iio/
3893
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003894IKANOS/ADI EAGLE ADSL USB DRIVER
3895M: Matthieu Castet <castet.matthieu@free.fr>
3896M: Stanislaw Gruszka <stf_xl@wp.pl>
3897S: Maintained
3898F: drivers/usb/atm/ueagle-atm.c
3899
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003900INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003903F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003906L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003907S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003908F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003911M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003912M: Sean Hefty <sean.hefty@intel.com>
3913M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003914L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003915W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003916Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003917T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003919F: Documentation/infiniband/
3920F: drivers/infiniband/
3921F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Robert Lovec9f04f52005-07-15 12:21:07 -04003923INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: John McCutchan <john@johnmccutchan.com>
3925M: Robert Love <rlove@rlove.org>
3926M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: Documentation/filesystems/inotify.txt
3929F: fs/notify/inotify/
3930F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003931
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003932INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3934M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003935L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003936Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003937T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003940F: include/linux/input.h
3941F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003942
Henrik Rydberg3267a872010-06-24 19:10:40 -07003943INPUT MULTITOUCH (MT) PROTOCOL
3944M: Henrik Rydberg <rydberg@euromail.se>
3945L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003946T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003947S: Maintained
3948F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003949F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003950K: \b(ABS|SYN)_MT_
3951
Dave Jiang4ac13e12011-07-29 17:16:55 -07003952INTEL C600 SERIES SAS CONTROLLER DRIVER
3953M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003954M: Lukasz Dorau <lukasz.dorau@intel.com>
3955M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003956M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003957L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003958T: git git://git.code.sf.net/p/intel-sas/isci
3959S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003960F: drivers/scsi/isci/
3961F: firmware/isci/
3962
Len Brown26717172010-03-08 14:07:30 -05003963INTEL IDLE DRIVER
3964M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003965L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003966T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003967S: Supported
3968F: drivers/idle/intel_idle.c
3969
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003970INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003971M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003972L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: Documentation/fb/intelfb.txt
3975F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003979L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303983INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003985L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303986W: http://www.lesswatts.org/projects/acpi/
3987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003988F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303989
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: arch/x86/kernel/microcode_core.c
3994F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003996INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003997M: Dan Williams <djbw@fb.com>
3998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003999F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004000
David Woodhouse6c8909b2008-10-18 16:12:17 +01004001INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004002M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004003L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004004T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004005S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004006F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004007F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004008
Dan Williamsb3e5f262007-08-07 10:26:35 -07004009INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004010M: Dan Williams <djbw@fb.com>
4011S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004012F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004013
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004014INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004015M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004017F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4018F: arch/arm/mach-ixp4xx/include/mach/npe.h
4019F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4020F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004021F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004022F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004023
Michael Buesch844dd052006-06-26 00:24:59 -07004024INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004025M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004027F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004028
Jeff Kirsher0d164402010-10-05 01:15:17 +00004029INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4031M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4032M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004033M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4034M: Don Skidmore <donald.c.skidmore@intel.com>
4035M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004036M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004037M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004038M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004039L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08004040W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004044F: Documentation/networking/e100.txt
4045F: Documentation/networking/e1000.txt
4046F: Documentation/networking/e1000e.txt
4047F: Documentation/networking/igb.txt
4048F: Documentation/networking/igbvf.txt
4049F: Documentation/networking/ixgb.txt
4050F: Documentation/networking/ixgbe.txt
4051F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004052F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
Len Brown6dccf9c2011-07-12 22:29:32 -04004054INTEL MRST PMU DRIVER
4055M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004056L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004057S: Supported
4058F: arch/x86/platform/mrst/pmu.*
4059
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004060INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4061M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004062L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004064F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004065F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004066F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004067
Shane Wang4bd96a72010-03-10 14:36:10 +08004068INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004069M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4070M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004071M: Shane Wang <shane.wang@intel.com>
4072L: tboot-devel@lists.sourceforge.net
4073W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004074T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004075S: Supported
4076F: Documentation/intel_txt.txt
4077F: include/linux/tboot.h
4078F: arch/x86/kernel/tboot.c
4079
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004080INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004081M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004082M: linux-wimax@intel.com
4083L: wimax@linuxwimax.org
4084S: Supported
4085W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004086F: Documentation/wimax/README.i2400m
4087F: drivers/net/wimax/i2400m/
4088F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004089
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004090INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4091M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004092L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004093S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004094F: drivers/net/wireless/iwlegacy/
4095
Zhu Yib481de92007-09-25 17:54:57 -07004096INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004097M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004098M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004099M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004100L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004101W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004104F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004105
Tomas Winklerde8fe022012-05-09 16:39:02 +03004106INTEL MANAGEMENT ENGINE (mei)
4107M: Tomas Winkler <tomas.winkler@intel.com>
4108L: linux-kernel@vger.kernel.org
4109S: Supported
4110F: include/linux/mei.h
4111F: drivers/misc/mei/*
4112F: Documentation/mei/*
4113
Ralf Baechlecb109a02007-08-30 23:56:30 -07004114IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116L: linux-mips@linux-mips.org
4117S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004118F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Ralf Baechlecb109a02007-08-30 23:56:30 -07004120IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004122L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004123S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004124F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004125
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004126IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Francois Romieu1202d6f2007-09-17 17:13:55 -07004131IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Francois Romieu <romieu@fr.zoreil.com>
4133M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004134L: netdev@vger.kernel.org
4135S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004136F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004137
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004138IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004139M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004140L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004143
Corey Minyard4409ebe2006-04-20 02:43:12 -07004144IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004146L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004147W: http://openipmi.sourceforge.net/
4148S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004149F: Documentation/IPMI.txt
4150F: drivers/char/ipmi/
4151F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004152
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004153IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004155L: linux-scsi@vger.kernel.org
4156W: http://www.adaptec.com/
4157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004159
4160IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004161M: Wensong Zhang <wensong@linux-vs.org>
4162M: Simon Horman <horms@verge.net.au>
4163M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004164L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004165L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004168F: include/net/ip_vs.h
4169F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004170F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
Randy Dunlape7839f22008-10-12 16:11:45 -07004172IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Jiri Kosina <jkosina@suse.cz>
4174M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004175S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004176F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004178IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180L: netdev@vger.kernel.org
4181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: include/linux/ipx.h
4183F: include/net/ipx.h
4184F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004188L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004189L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004191S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004192T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004193F: Documentation/networking/irda.txt
4194F: drivers/net/irda/
4195F: include/net/irda/
4196F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004198IRQ SUBSYSTEM
4199M: Thomas Gleixner <tglx@linutronix.de>
4200S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004201T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004202F: kernel/irq/
4203
Grant Likely7ab3a832012-02-14 14:06:47 -07004204IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4205M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4206M: Grant Likely <grant.likely@secretlab.ca>
4207T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4208S: Maintained
4209F: Documentation/IRQ-domain.txt
4210F: include/linux/irqdomain.h
4211F: kernel/irq/irqdomain.c
4212
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004213ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004214M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004216F: Documentation/isapnp.txt
4217F: drivers/pnp/isapnp/
4218F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004219
Hans Verkuild39b8422012-11-23 07:07:02 -03004220ISA RADIO MODULE
4221M: Hans Verkuil <hverkuil@xs4all.nl>
4222L: linux-media@vger.kernel.org
4223T: git git://linuxtv.org/media_tree.git
4224W: http://linuxtv.org
4225S: Maintained
4226F: drivers/media/radio/radio-isa*
4227
Harry Wei71a6d0a2011-05-11 15:13:33 -07004228iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4229M: Peter Jones <pjones@redhat.com>
4230M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4231S: Maintained
4232F: drivers/firmware/iscsi_ibft*
4233
Mike Christie14816b12007-11-28 16:22:06 -08004234ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004235M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004236L: open-iscsi@googlegroups.com
4237W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004238T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: drivers/scsi/*iscsi*
4241F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004242
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004244M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004245L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004246L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004248T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004250F: Documentation/isdn/
4251F: drivers/isdn/
4252F: include/linux/isdn.h
4253F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
4255ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004256M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004257L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258W: http://www.melware.de
4259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004260F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Jean Delvared6248702010-03-05 22:17:20 +01004262IT87 HARDWARE MONITORING DRIVER
4263M: Jean Delvare <khali@linux-fr.org>
4264L: lm-sensors@lm-sensors.org
4265S: Maintained
4266F: Documentation/hwmon/it87
4267F: drivers/hwmon/it87.c
4268
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004269IT913X MEDIA DRIVER
4270M: Malcolm Priestley <tvboxspy@gmail.com>
4271L: linux-media@vger.kernel.org
4272W: http://linuxtv.org/
4273Q: http://patchwork.linuxtv.org/project/linux-media/list/
4274S: Maintained
4275F: drivers/media/usb/dvb-usb-v2/it913x*
4276
4277IT913X FE MEDIA DRIVER
4278M: Malcolm Priestley <tvboxspy@gmail.com>
4279L: linux-media@vger.kernel.org
4280W: http://linuxtv.org/
4281Q: http://patchwork.linuxtv.org/project/linux-media/list/
4282S: Maintained
4283F: drivers/media/dvb-frontends/it913x-fe*
4284
Hans Verkuil91821ff2007-12-02 09:35:33 -03004285IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004286M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004287L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004288L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004289T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004290W: http://www.ivtvdriver.org
4291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004292F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004293F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004294F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004295
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004296IX2505V MEDIA DRIVER
4297M: Malcolm Priestley <tvboxspy@gmail.com>
4298L: linux-media@vger.kernel.org
4299W: http://linuxtv.org/
4300Q: http://patchwork.linuxtv.org/project/linux-media/list/
4301S: Maintained
4302F: drivers/media/dvb-frontends/ix2505v*
4303
Guenter Roeck4453d732010-08-09 17:21:08 -07004304JC42.4 TEMPERATURE SENSOR DRIVER
4305M: Guenter Roeck <linux@roeck-us.net>
4306L: lm-sensors@lm-sensors.org
4307S: Maintained
4308F: drivers/hwmon/jc42.c
4309F: Documentation/hwmon/jc42
4310
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004311JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004312M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004313L: jfs-discussion@lists.sourceforge.net
4314W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004315T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: Documentation/filesystems/jfs.txt
4318F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004320JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004322L: netdev@vger.kernel.org
4323S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004324F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004325
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004327M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004328L: linux-mtd@lists.infradead.org
4329W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: fs/jffs2/
4332F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Josh Triplettde456d32006-07-30 03:04:00 -07004334JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004336M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004337L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004338S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004339F: fs/jbd/
4340F: include/linux/ext3_jbd.h
4341F: include/linux/jbd.h
4342
4343JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4344M: "Theodore Ts'o" <tytso@mit.edu>
4345L: linux-ext4@vger.kernel.org
4346S: Maintained
4347F: fs/jbd2/
4348F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004349
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004350JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004351M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004352L: linux-serial@vger.kernel.org
4353S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004354F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004355
Clemens Ladischaf399172011-01-10 16:32:54 +01004356K10TEMP HARDWARE MONITORING DRIVER
4357M: Clemens Ladisch <clemens@ladisch.de>
4358L: lm-sensors@lm-sensors.org
4359S: Maintained
4360F: Documentation/hwmon/k10temp
4361F: drivers/hwmon/k10temp.c
4362
Rudolf Marek4660cb32006-10-08 22:01:26 +02004363K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004364M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004365L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004367F: Documentation/hwmon/k8temp
4368F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
4370KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004371M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004372L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004373S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004374F: Documentation/kbuild/kconfig-language.txt
4375F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
Vivek Goyalea6c2082006-05-20 14:59:55 -07004377KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Vivek Goyal <vgoyal@redhat.com>
4379M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004380L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004381W: http://lse.sourceforge.net/kdump/
4382S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004383F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004384
Hans Verkuilf41bf022012-11-23 07:04:36 -03004385KEENE FM RADIO TRANSMITTER DRIVER
4386M: Hans Verkuil <hverkuil@xs4all.nl>
4387L: linux-media@vger.kernel.org
4388T: git git://linuxtv.org/media_tree.git
4389W: http://linuxtv.org
4390S: Maintained
4391F: drivers/media/radio/radio-keene*
4392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004394M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004395L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
Michal Marek70fb7ba2010-01-29 14:22:43 +01004399KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004400M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004401T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4402T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004403L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: Documentation/kbuild/
4406F: Makefile
4407F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004408F: scripts/basic/
4409F: scripts/mk*
4410F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
4412KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004413L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004414W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004415S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004417KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004419L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004422F: fs/nfsd/
4423F: include/linux/nfsd/
4424F: fs/lockd/
4425F: fs/nfs_common/
4426F: net/sunrpc/
4427F: include/linux/lockd/
4428F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
Avi Kivity426d62e2006-12-13 00:34:03 -08004430KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004431M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004432M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004433L: kvm@vger.kernel.org
4434W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004436F: Documentation/*/kvm.txt
4437F: arch/*/kvm/
4438F: arch/*/include/asm/kvm*
4439F: include/linux/kvm*
4440F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004441
Joerg Roedelad8003d2008-09-10 20:01:07 +02004442KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004443M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004444L: kvm@vger.kernel.org
4445W: http://kvm.qumranet.com
4446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004447F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004448F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004449
Hollis Blanchard513014b2008-04-16 23:28:08 -05004450KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004451M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004452L: kvm-ppc@vger.kernel.org
4453W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004455F: arch/powerpc/include/asm/kvm*
4456F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004457
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004458KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004460L: kvm-ia64@vger.kernel.org
4461W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004463F: Documentation/ia64/kvm.txt
4464F: arch/ia64/include/asm/kvm*
4465F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004466
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004467KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004468M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004469M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004470M: linux390@de.ibm.com
4471L: linux-s390@vger.kernel.org
4472W: http://www.ibm.com/developerworks/linux/linux390/
4473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004474F: Documentation/s390/kvm.txt
4475F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004476F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004477F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004478
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004479KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004481W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004482L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: include/linux/kexec.h
4485F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004486
David Howellse9714612010-03-29 23:42:09 +01004487KEYS/KEYRINGS:
4488M: David Howells <dhowells@redhat.com>
4489L: keyrings@linux-nfs.org
4490S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004491F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004492F: include/linux/key.h
4493F: include/linux/key-type.h
4494F: include/keys/
4495F: security/keys/
4496
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004497KEYS-TRUSTED
4498M: David Safford <safford@watson.ibm.com>
4499M: Mimi Zohar <zohar@us.ibm.com>
4500L: linux-security-module@vger.kernel.org
4501L: keyrings@linux-nfs.org
4502S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004503F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004504F: include/keys/trusted-type.h
4505F: security/keys/trusted.c
4506F: security/keys/trusted.h
4507
4508KEYS-ENCRYPTED
4509M: Mimi Zohar <zohar@us.ibm.com>
4510M: David Safford <safford@watson.ibm.com>
4511L: linux-security-module@vger.kernel.org
4512L: keyrings@linux-nfs.org
4513S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004514F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004515F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004516F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004517
Jason Wessel5b778da2010-05-20 21:04:28 -05004518KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004520W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004521L: kgdb-bugreport@lists.sourceforge.net
4522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004523F: Documentation/DocBook/kgdb.tmpl
4524F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004525F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004526F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004527F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004528F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004529
Pekka Enberg456db8c2008-04-28 22:47:29 +03004530KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004531M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004532M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004533S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004534F: Documentation/kmemcheck.txt
4535F: arch/x86/include/asm/kmemcheck.h
4536F: arch/x86/mm/kmemcheck/
4537F: include/linux/kmemcheck.h
4538F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004539
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004540KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004541M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004542S: Maintained
4543F: Documentation/kmemleak.txt
4544F: include/linux/kmemleak.h
4545F: mm/kmemleak.c
4546F: mm/kmemleak-test.c
4547
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004548KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4550M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4551M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004552M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/kprobes.txt
4555F: include/linux/kprobes.h
4556F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004557
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004558KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004560W: http://miguelojeda.es/auxdisplay.htm
4561W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004563F: Documentation/auxdisplay/ks0108
4564F: drivers/auxdisplay/ks0108.c
4565F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004569S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/networking/lapb-module.txt
4571F: include/*/lapb.h
4572F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004575M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576L: linux-scsi@vger.kernel.org
4577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/scsi/53c700.txt
4579F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Richard Purdie263de9b2006-05-15 09:44:16 -07004581LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004582M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004583M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004584L: linux-leds@vger.kernel.org
4585T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/leds/
4588F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004589
Jean Delvareb0461a42011-06-15 15:08:46 -07004590LEGACY EEPROM DRIVER
4591M: Jean Delvare <khali@linux-fr.org>
4592S: Maintained
4593F: Documentation/misc-devices/eeprom
4594F: drivers/misc/eeprom/eeprom.c
4595
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004597M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598L: legousb-devel@lists.sourceforge.net
4599W: http://legousb.sourceforge.net/
4600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004601F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Michael Krufky055616a2012-10-02 00:56:06 -03004603LG2160 MEDIA DRIVER
4604M: Michael Krufky <mkrufky@linuxtv.org>
4605L: linux-media@vger.kernel.org
4606W: http://linuxtv.org/
4607W: http://github.com/mkrufky
4608Q: http://patchwork.linuxtv.org/project/linux-media/list/
4609T: git git://linuxtv.org/mkrufky/tuners.git
4610S: Maintained
4611F: drivers/media/dvb-frontends/lg2160.*
4612
Michael Krufky6f0e7722012-10-02 00:56:00 -03004613LGDT3305 MEDIA DRIVER
4614M: Michael Krufky <mkrufky@linuxtv.org>
4615L: linux-media@vger.kernel.org
4616W: http://linuxtv.org/
4617W: http://github.com/mkrufky
4618Q: http://patchwork.linuxtv.org/project/linux-media/list/
4619T: git git://linuxtv.org/mkrufky/tuners.git
4620S: Maintained
4621F: drivers/media/dvb-frontends/lgdt3305.*
4622
Rusty Russell568a17f2007-10-25 14:12:24 +10004623LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004625L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004626W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004627S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004628F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004629F: arch/x86/lguest/
4630F: drivers/lguest/
4631F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004632F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://www.ibm.com/linux/ltc/projects/ppc
4637S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004638F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004640LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4642M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004644L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004645Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004646T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004648F: Documentation/powerpc/
4649F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
4651LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004652M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004654L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004656F: arch/powerpc/platforms/powermac/
4657F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
Grant Likely77a76362008-07-12 12:11:43 -06004659LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004660M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004661L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004662T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004664F: arch/powerpc/platforms/512x/
4665F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
4667LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004668M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004671L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004674F: arch/powerpc/platforms/40x/
4675F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Grant Likely260c02a2007-10-02 12:15:34 +10004677LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004679W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004680L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004681T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004683F: arch/powerpc/*/*virtex*
4684F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
Tom Rinie93adf12005-07-26 12:49:53 -07004686LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Vitaly Bordug <vitb@kernel.crashing.org>
4688M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004689W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004690L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004691S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004692F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004695M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004696W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004697L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004698S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004699F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004700F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Olof Johanssonab06ff32006-09-06 14:44:54 -05004702LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004703M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004704L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004705S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004706F: arch/powerpc/platforms/pasemi/
4707F: drivers/*/*pasemi*
4708F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004711M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004712L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713S: Supported
4714
Harry Weia23ce6d2011-02-11 16:52:20 +01004715LIS3LV02D ACCELEROMETER DRIVER
4716M: Eric Piel <eric.piel@tremplin-utc.net>
4717S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004718F: Documentation/misc-devices/lis3lv02d
4719F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004720F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004722LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004723M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: include/linux/llc.h
4726F: include/net/llc*
4727F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004728
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004729LM73 HARDWARE MONITOR DRIVER
4730M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4731L: lm-sensors@lm-sensors.org
4732S: Maintained
4733F: drivers/hwmon/lm73.c
4734
Jean Delvare156e2d12011-07-25 21:46:11 +02004735LM78 HARDWARE MONITOR DRIVER
4736M: Jean Delvare <khali@linux-fr.org>
4737L: lm-sensors@lm-sensors.org
4738S: Maintained
4739F: Documentation/hwmon/lm78
4740F: drivers/hwmon/lm78.c
4741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004744L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004746F: Documentation/hwmon/lm83
4747F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748
4749LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004751L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004753F: Documentation/hwmon/lm90
4754F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004756LME2510 MEDIA DRIVER
4757M: Malcolm Priestley <tvboxspy@gmail.com>
4758L: linux-media@vger.kernel.org
4759W: http://linuxtv.org/
4760Q: http://patchwork.linuxtv.org/project/linux-media/list/
4761S: Maintained
4762F: drivers/media/usb/dvb-usb-v2/lmedm04*
4763
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004764LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Peter Zijlstra <peterz@infradead.org>
4766M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004767T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004769F: Documentation/lockdep*.txt
4770F: Documentation/lockstat.txt
4771F: include/linux/lockdep.h
4772F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004773
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004774LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004775M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004776L: linux-ntfs-dev@lists.sourceforge.net
4777W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004780F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781
Joern Engelef6ada32009-11-20 22:17:12 +01004782LogFS
4783M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304784M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004785L: logfs@logfs.org
4786W: logfs.org
4787S: Maintained
4788F: fs/logfs/
4789
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004790LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004791M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004792M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004793L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004794L: linux-scsi@vger.kernel.org
4795W: http://www.lsilogic.com/support
4796S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004798
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801L: linux-scsi@vger.kernel.org
4802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004803F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
Guenter Roecke5f5c992010-06-25 11:59:54 -07004805LTC4261 HARDWARE MONITOR DRIVER
4806M: Guenter Roeck <linux@roeck-us.net>
4807L: lm-sensors@lm-sensors.org
4808S: Maintained
4809F: Documentation/hwmon/ltc4261
4810F: drivers/hwmon/ltc4261.c
4811
Mike Frysinger81365c32008-10-29 14:01:12 -07004812LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004813M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004814M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004815M: Cyril Hrubis <chrubis@suse.cz>
4816M: Caspar Zhang <caspar@casparzhang.com>
4817M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004818L: ltp-list@lists.sourceforge.net (subscribers-only)
4819W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004820T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004821T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004822S: Maintained
4823
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004824M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004825M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004826L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004827L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4828W: http://www.linux-m32r.org/
4829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004833M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834L: linux-m68k@lists.linux-m68k.org
4835W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004836T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004839F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
4841M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004844L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004846F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
4848M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850W: http://www.tazenda.demon.co.uk/phil/linux-hp
4851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004852F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004854M88RS2000 MEDIA DRIVER
4855M: Malcolm Priestley <tvboxspy@gmail.com>
4856L: linux-media@vger.kernel.org
4857W: http://linuxtv.org/
4858Q: http://patchwork.linuxtv.org/project/linux-media/list/
4859S: Maintained
4860F: drivers/media/dvb-frontends/m88rs2000*
4861
Jiri Benc64a327a2007-05-05 11:47:08 -07004862MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004863M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004864L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004865W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004866T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4867T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/networking/mac80211-injection.txt
4870F: include/net/mac80211.h
4871F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004872
Stefano Brivio1036d862007-12-23 04:46:27 +01004873MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Stefano Brivio <stefano.brivio@polimi.it>
4875M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004876L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004877W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4879T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004882
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004883MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004885L: netdev@vger.kernel.org
4886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: drivers/net/macvlan.c
4888F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004889
Michael Kerriskfaf16682005-07-31 22:34:47 -07004890MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004892W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004893L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004894S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004895
stephen hemminger44c14c12012-04-02 12:59:47 +00004896MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4897M: Mirko Lindner <mlindner@marvell.com>
4898M: Stephen Hemminger <shemminger@vyatta.com>
4899L: netdev@vger.kernel.org
4900S: Maintained
4901F: drivers/net/ethernet/marvell/sk*
4902
Stefano Brivio74cda162007-11-19 20:27:46 +01004903MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004905L: libertas-dev@lists.infradead.org
4906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004907F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004908
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004909MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004910M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004911L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004912S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004913F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004914F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Bing Zhaofcad5842011-07-13 13:11:58 -07004916MARVELL MWIFIEX WIRELESS DRIVER
4917M: Bing Zhao <bzhao@marvell.com>
4918L: linux-wireless@vger.kernel.org
4919S: Maintained
4920F: drivers/net/wireless/mwifiex/
4921
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004922MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004923M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004924L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004925S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004926F: drivers/net/wireless/mwl8k.c
4927
Pierre Ossman2a695672009-03-16 19:52:26 +01004928MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004929M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004930S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004931F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004934L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004935S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004936F: drivers/video/matrox/matroxfb_*
4937F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Guenter Roeckca462082012-06-01 23:28:23 -07004939MAX16065 HARDWARE MONITOR DRIVER
4940M: Guenter Roeck <linux@roeck-us.net>
4941L: lm-sensors@lm-sensors.org
4942S: Maintained
4943F: Documentation/hwmon/max16065
4944F: drivers/hwmon/max16065.c
4945
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004946MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004947M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004948L: lm-sensors@lm-sensors.org
4949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004950F: Documentation/hwmon/max6650
4951F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004952
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03004953MAXIRADIO FM RADIO RECEIVER DRIVER
4954M: Hans Verkuil <hverkuil@xs4all.nl>
4955L: linux-media@vger.kernel.org
4956T: git git://linuxtv.org/media_tree.git
4957W: http://linuxtv.org
4958S: Maintained
4959F: drivers/media/radio/radio-maxiradio*
4960
Joe Perches127c49a2009-04-08 08:34:04 -07004961MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004962M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004963P: LinuxTV.org Project
4964L: linux-media@vger.kernel.org
4965W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004966Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004967T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004968S: Maintained
4969F: Documentation/dvb/
4970F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004971F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004972F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004973F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004974F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004975F: include/uapi/linux/dvb/
4976F: include/uapi/linux/videodev2.h
4977F: include/uapi/linux/media.h
4978F: include/uapi/linux/v4l2-*
4979F: include/uapi/linux/meye.h
4980F: include/uapi/linux/ivtv*
4981F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004982
Hans Verkuil6149a932012-11-23 07:21:19 -03004983MEDIAVISION PRO MOVIE STUDIO DRIVER
4984M: Hans Verkuil <hverkuil@xs4all.nl>
4985L: linux-media@vger.kernel.org
4986T: git git://linuxtv.org/media_tree.git
4987W: http://linuxtv.org
4988S: Odd Fixes
4989F: drivers/media/parport/pms*
4990
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004991MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004992M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004993L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004994W: http://megaraid.lsilogic.com
4995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: Documentation/scsi/megaraid.txt
4997F: drivers/scsi/megaraid.*
4998F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004999
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005000MEMORY MANAGEMENT
5001L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005002W: http://www.linux-mm.org
5003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005004F: include/linux/mm.h
5005F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005006
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005007MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005008M: Johannes Weiner <hannes@cmpxchg.org>
5009M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005010M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005012L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005013L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005016F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005017
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005018MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005019M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005021W: http://www.linux-mtd.infradead.org/
5022Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005023T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005025F: drivers/mtd/
5026F: include/linux/mtd/
5027F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Michal Simekc6375b02009-03-27 14:25:52 +01005029MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005030M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005031L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005032W: http://www.monstr.eu/fdt/
5033T: git git://git.monstr.eu/linux-2.6-microblaze.git
5034S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005035F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005038M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005040F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
5042MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005045W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005046T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005047Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005049F: Documentation/mips/
5050F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
Hans Verkuil08b76202012-11-23 07:15:42 -03005052MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5053M: Hans Verkuil <hverkuil@xs4all.nl>
5054L: linux-media@vger.kernel.org
5055T: git git://linuxtv.org/media_tree.git
5056W: http://linuxtv.org
5057S: Odd Fixes
5058F: drivers/media/radio/radio-miropcm20*
5059
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: include/linux/module.h
5064F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
5066MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005068S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005069F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005070F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005071F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
Pavel Pisac58ff042007-05-16 01:10:41 +02005073MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005074M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005075L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005078
Jiri Slabyb9705b62008-04-30 00:53:48 -07005079MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005080M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005082F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005083F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005084
Alexey Klimov889b2f82012-11-16 17:43:59 -03005085MR800 AVERMEDIA USB FM RADIO DRIVER
5086M: Alexey Klimov <klimov.linux@gmail.com>
5087L: linux-media@vger.kernel.org
5088T: git git://linuxtv.org/media_tree.git
5089S: Maintained
5090F: drivers/media/radio/radio-mr800.c
5091
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005092MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005093M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005094L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005096F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005097
Anisse Astier0f1006b2009-12-17 11:28:49 +01005098MSI WMI SUPPORT
5099M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005100L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005101S: Supported
5102F: drivers/platform/x86/msi-wmi.c
5103
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005104MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005106T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005108F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005109
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005110MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005111M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005112L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005113T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: drivers/mmc/
5116F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005117
David Brownell15a05802007-08-08 09:12:54 -07005118MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005119S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005120F: drivers/mmc/host/mmc_spi.c
5121F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005126F: Documentation/sound/oss/MultiSound
5127F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Jiri Slabyd7354102006-12-08 02:38:35 -08005129MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005130S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005131F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005132F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005133
Felipe Balbi550a7372008-07-24 12:27:36 +03005134MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005135M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005136L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005137T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005140
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005141MXL5007T MEDIA DRIVER
5142M: Michael Krufky <mkrufky@linuxtv.org>
5143L: linux-media@vger.kernel.org
5144W: http://linuxtv.org/
5145W: http://github.com/mkrufky
5146Q: http://patchwork.linuxtv.org/project/linux-media/list/
5147T: git git://linuxtv.org/mkrufky/tuners.git
5148S: Maintained
5149F: drivers/media/tuners/mxl5007t.*
5150
Brice Goglin2d3cf582008-05-17 12:45:36 +02005151MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005152M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005153L: netdev@vger.kernel.org
5154W: http://www.myri.com/scs/download-Myri10GE.html
5155S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005156F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005159S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005160F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Daniel Mack23dc05a2011-05-18 11:28:38 +02005162NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5163M: Daniel Mack <zonque@gmail.com>
5164S: Maintained
5165L: alsa-devel@alsa-project.org
5166W: http://www.native-instruments.com
5167F: sound/usb/caiaq/
5168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005170M: Petr Vandrovec <petr@vandrovec.name>
5171S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005172F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
5174NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005175M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176L: linux-scsi@vger.kernel.org
5177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005180NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005181M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005182L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005183W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005184S: Supported
5185F: drivers/infiniband/hw/nes/
5186
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005187NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005188M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005189L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005192
Jon Masonb2f5a052010-07-15 08:47:27 +00005193NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005194M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005195L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005197F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005198F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005199F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005200
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202P: Harald Welte
5203P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005204M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005206L: netfilter-devel@vger.kernel.org
5207L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005208L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209W: http://www.netfilter.org/
5210W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005211T: git git://1984.lsi.us.es/nf
5212T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005214F: include/linux/netfilter*
5215F: include/linux/netfilter/
5216F: include/net/netfilter/
5217F: net/*/netfilter.c
5218F: net/*/netfilter/
5219F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Paul Moore4cc67732006-09-25 15:57:13 -07005221NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005222M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005223W: http://netlabel.sf.net
5224L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005225S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005226F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005227F: include/net/netlabel.h
5228F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005229
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005231M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005233W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005235F: include/linux/netrom.h
5236F: include/net/netrom.h
5237F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005239NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005240M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005242F: Documentation/blockdev/nbd.txt
5243F: drivers/block/nbd.c
5244F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
Neil Horman6e436502009-10-05 03:56:55 +00005246NETWORK DROP MONITOR
5247M: Neil Horman <nhorman@tuxdriver.com>
5248L: netdev@vger.kernel.org
5249S: Maintained
5250W: https://fedorahosted.org/dropwatch/
5251F: net/core/drop_monitor.c
5252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005255L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005256W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005257W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5259T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005261F: net/
5262F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005263F: include/linux/in.h
5264F: include/linux/net.h
5265F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266
5267NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: "David S. Miller" <davem@davemloft.net>
5269M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005270M: James Morris <jmorris@namei.org>
5271M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5272M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005273L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005274T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: net/ipv4/
5277F: net/ipv6/
5278F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005279F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
David S. Miller73b76562012-10-16 14:08:40 -04005281NETWORKING [IPSEC]
5282M: Steffen Klassert <steffen.klassert@secunet.com>
5283M: Herbert Xu <herbert@gondor.apana.org.au>
5284M: "David S. Miller" <davem@davemloft.net>
5285L: netdev@vger.kernel.org
5286T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5287S: Maintained
5288F: net/xfrm/
5289F: net/key/
5290F: net/ipv4/xfrm*
5291F: net/ipv6/xfrm*
5292F: include/uapi/linux/xfrm.h
5293F: include/net/xfrm.h
5294
James Morris10e2ff12007-08-25 14:41:28 -07005295NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005296M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005297L: netdev@vger.kernel.org
5298S: Maintained
5299
John W. Linville29f8f632006-01-18 14:52:48 -08005300NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005302L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005303Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005304T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005305S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005306F: net/mac80211/
5307F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005308F: net/wireless/
5309F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005310F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005311F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005312F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005313
Joe Perches788873a2009-04-16 09:38:45 +00005314NETWORKING DRIVERS
5315L: netdev@vger.kernel.org
5316W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005317T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5318T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005319S: Odd Fixes
5320F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005321F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005322F: include/linux/netdevice.h
5323F: include/linux/arcdevice.h
5324F: include/linux/etherdevice.h
5325F: include/linux/fcdevice.h
5326F: include/linux/fddidevice.h
5327F: include/linux/hippidevice.h
5328F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005329
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005330NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005331M: Sony Chacko <sony.chacko@qlogic.com>
5332M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005333L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005334W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005335S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005336F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005337
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005338NFC SUBSYSTEM
5339M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5340M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5341M: Samuel Ortiz <sameo@linux.intel.com>
5342L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005343L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005344S: Maintained
5345F: net/nfc/
5346F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005347F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005348F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005350NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005352L: linux-nfs@vger.kernel.org
5353W: http://client.linux-nfs.org
5354T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005356F: fs/lockd/
5357F: fs/nfs/
5358F: fs/nfs_common/
5359F: net/sunrpc/
5360F: include/linux/lockd/
5361F: include/linux/nfs*
5362F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
5364NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005365M: Jan-Pascal van Best <janpascal@vanbest.org>
5366M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005367L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005369F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005371NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005372M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005373L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005374W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005375T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005377F: Documentation/filesystems/nilfs2.txt
5378F: fs/nilfs2/
5379F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005380
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005385F: Documentation/scsi/NinjaSCSI.txt
5386F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387
5388NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: GOTO Masanori <gotom@debian.or.jp>
5390M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: Documentation/scsi/NinjaSCSI.txt
5394F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005397M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005399W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005400T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005401S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005402F: Documentation/filesystems/ntfs.txt
5403F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005405NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005406M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005407L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005409F: drivers/video/riva/
5410F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
Tony Lindgrenf5525782009-05-28 13:23:53 -07005412OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005413M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005414L: linux-omap@vger.kernel.org
5415W: http://www.muru.com/linux/omap/
5416W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005417Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005418T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005419S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005420F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005421F: drivers/i2c/busses/i2c-omap.c
5422F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005423
5424OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005425M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005426L: linux-omap@vger.kernel.org
5427S: Maintained
5428F: arch/arm/*omap*/*clock*
5429
5430OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005431M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005432L: linux-omap@vger.kernel.org
5433S: Maintained
5434F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005435F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005436
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005437OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5438M: Rajendra Nayak <rnayak@ti.com>
5439M: Paul Walmsley <paul@pwsan.com>
5440L: linux-omap@vger.kernel.org
5441S: Maintained
5442F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5443F: arch/arm/mach-omap2/powerdomain44xx.c
5444F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5445F: arch/arm/mach-omap2/clockdomain44xx.c
5446
Tony Lindgrenf5525782009-05-28 13:23:53 -07005447OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005448M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005449M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005450L: alsa-devel@alsa-project.org (subscribers-only)
5451L: linux-omap@vger.kernel.org
5452S: Maintained
5453F: sound/soc/omap/
5454
5455OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005456M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005457L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005458L: linux-omap@vger.kernel.org
5459S: Maintained
5460F: drivers/video/omap/
5461
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005462OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005463M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005464L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005465L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005466S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005467F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005468F: Documentation/arm/OMAP/DSS
5469
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005470OMAP HARDWARE SPINLOCK SUPPORT
5471M: Ohad Ben-Cohen <ohad@wizery.com>
5472L: linux-omap@vger.kernel.org
5473S: Maintained
5474F: drivers/hwspinlock/omap_hwspinlock.c
5475F: arch/arm/mach-omap2/hwspinlock.c
5476
Tony Lindgrenf5525782009-05-28 13:23:53 -07005477OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005478M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005479L: linux-omap@vger.kernel.org
5480S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005481F: drivers/mmc/host/omap.c
5482
5483OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305484M: Venkatraman S <svenkatr@ti.com>
5485L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005486L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305487S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005488F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005489
5490OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005491M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005492S: Maintained
5493F: drivers/char/hw_random/omap-rng.c
5494
Paul Walmsleyf400c822010-12-06 19:08:54 -07005495OMAP HWMOD SUPPORT
5496M: Benoît Cousson <b-cousson@ti.com>
5497M: Paul Walmsley <paul@pwsan.com>
5498L: linux-omap@vger.kernel.org
5499S: Maintained
5500F: arch/arm/mach-omap2/omap_hwmod.c
5501F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5502
5503OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5504M: Benoît Cousson <b-cousson@ti.com>
5505L: linux-omap@vger.kernel.org
5506S: Maintained
5507F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5508
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005509OMAP IMAGE SIGNAL PROCESSOR (ISP)
5510M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5511L: linux-media@vger.kernel.org
5512S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005513F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005514
Tony Lindgrenf5525782009-05-28 13:23:53 -07005515OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005516M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005517L: linux-usb@vger.kernel.org
5518L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005519T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005520S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005521F: drivers/usb/*/*omap*
5522F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005523
Kevin Hilman6d994712012-07-16 10:05:07 -07005524OMAP GPIO DRIVER
5525M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5526M: Kevin Hilman <khilman@ti.com>
5527L: linux-omap@vger.kernel.org
5528S: Maintained
5529F: drivers/gpio/gpio-omap.c
5530
Bob Copeland0ad122d2008-07-25 19:45:18 -07005531OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005532M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005533L: linux-karma-devel@lists.sourceforge.net
5534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005535F: Documentation/filesystems/omfs.txt
5536F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005537
Harald Weltec1986ee2005-11-13 16:06:29 -08005538OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: drivers/char/pcmcia/cm4000_cs.c
5542F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005543
Harald Welte77c44ab2005-11-13 16:06:26 -08005544OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005545M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005547F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005548
Jonathan Corbet77d51402007-03-22 19:44:17 -03005549OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005550M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005551L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005552T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005553S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005554F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005555
Thomas Gleixner431bca72007-05-02 09:31:35 +02005556ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005557M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005558L: linux-mtd@lists.infradead.org
5559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005560F: drivers/mtd/onenand/
5561F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005562
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005564M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565L: osst-users@lists.sourceforge.net
5566L: linux-scsi@vger.kernel.org
5567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005568F: drivers/scsi/osst*
5569F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005571OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005573L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: Documentation/i2c/busses/i2c-ocores
5576F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005577
Grant Likely860c44c2009-10-26 16:49:49 -07005578OPEN FIRMWARE AND FLATTENED DEVICE TREE
5579M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005580M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005581L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005582W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005583T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005584S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005585F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005586F: drivers/of
5587F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005588F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005589K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005590K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005591
Jonas Bonn19f9d392011-06-04 22:00:38 +03005592OPENRISC ARCHITECTURE
5593M: Jonas Bonn <jonas@southpole.se>
5594W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005595L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005596S: Maintained
5597T: git git://openrisc.net/~jonas/linux
5598F: arch/openrisc
5599
Jesse Grossccb13522011-10-25 19:26:31 -07005600OPENVSWITCH
5601M: Jesse Gross <jesse@nicira.com>
5602L: dev@openvswitch.org
5603W: http://openvswitch.org
5604T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5605S: Maintained
5606F: net/openvswitch/
5607
Clemens Ladischaf399172011-01-10 16:32:54 +01005608OPL4 DRIVER
5609M: Clemens Ladisch <clemens@ladisch.de>
5610L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5611T: git git://git.alsa-project.org/alsa-kernel.git
5612S: Maintained
5613F: sound/drivers/opl4/
5614
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005616M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617L: oprofile-list@lists.sf.net
5618S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005619F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005620F: arch/*/oprofile/
5621F: drivers/oprofile/
5622F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005624ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005626M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005627L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5628W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005629T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005631F: Documentation/filesystems/ocfs2.txt
5632F: Documentation/filesystems/dlmfs.txt
5633F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005634
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005636L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005637W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005638W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005639S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005642OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005644M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005645L: osd-dev@open-osd.org
5646W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005647T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005648S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005649F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005650F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005651F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005652
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005654M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005655L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005656W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005658F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005659
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005660PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005662L: netdev@vger.kernel.org
5663S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005664F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005665
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005666PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005667M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005668L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005670F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005671
Steffen Klassert48fc2672010-08-13 10:10:46 -04005672PADATA PARALLEL EXECUTION MECHANISM
5673M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005674L: linux-crypto@vger.kernel.org
5675S: Maintained
5676F: kernel/padata.c
5677F: include/linux/padata.h
5678F: Documentation/padata.txt
5679
Harald Welte709ee532008-09-23 17:46:57 +02005680PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005681M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005682L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005684F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005685
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005686PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005687M: David Howells <dhowells@redhat.com>
5688M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005689L: linux-am33-list@redhat.com (moderated for non-subscribers)
5690W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005692F: Documentation/mn10300/
5693F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005696L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005697S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005698F: drivers/parport/
5699F: include/linux/parport*.h
5700F: drivers/char/ppdev.c
5701F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005703PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005704M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005705M: Chris Wright <chrisw@sous-sol.org>
5706M: Alok Kataria <akataria@vmware.com>
5707M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005708L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005710F: Documentation/ia64/paravirt_ops.txt
5711F: arch/*/kernel/paravirt*
5712F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005713
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005715M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005716L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717W: http://www.torque.net/linux-pp.html
5718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005719F: Documentation/blockdev/paride.txt
5720F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
5722PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005723M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005724M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005725L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005727Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005728T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005730F: arch/parisc/
5731F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
Jim Cromie1662d322006-10-06 00:43:59 -07005733PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005734M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005735L: lm-sensors@lm-sensors.org
5736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005737F: Documentation/hwmon/pc87360
5738F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005739
5740PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005743F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005744
Jean Delvare1ad107f2010-08-14 21:09:00 +02005745PC87427 HARDWARE MONITORING DRIVER
5746M: Jean Delvare <khali@linux-fr.org>
5747L: lm-sensors@lm-sensors.org
5748S: Maintained
5749F: Documentation/hwmon/pc87427
5750F: drivers/hwmon/pc87427.c
5751
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005752PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005753M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005754S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005755F: drivers/leds/leds-pca9532.c
5756F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005757
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005758PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005759M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005760L: linux-i2c@vger.kernel.org
5761S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005762F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005763
Wolfram Sanga1867d32009-09-18 22:45:51 +02005764PCA9564/PCA9665 I2C BUS DRIVER
5765M: Wolfram Sang <w.sang@pengutronix.de>
5766L: linux-i2c@vger.kernel.org
5767S: Maintained
5768F: drivers/i2c/algos/i2c-algo-pca.c
5769F: drivers/i2c/busses/i2c-pca-*
5770F: include/linux/i2c-algo-pca.h
5771F: include/linux/i2c-pca-platform.h
5772
Khalid Aziz3971dae2012-04-12 12:49:13 -07005773PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005774M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005775S: Maintained
5776F: drivers/firmware/pcdp.*
5777
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005778PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005779M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005780L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005781S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005782F: Documentation/PCI/pci-error-recovery.txt
5783F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005784
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005786M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005787L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005788Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005789T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005791F: Documentation/PCI/
5792F: drivers/pci/
5793F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005796P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005797L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005798W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005799T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005801F: Documentation/pcmcia/
5802F: drivers/pcmcia/
5803F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804
5805PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005806M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005807L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005809F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
Steffen Klassert48fc2672010-08-13 10:10:46 -04005811PCRYPT PARALLEL CRYPTO ENGINE
5812M: Steffen Klassert <steffen.klassert@secunet.com>
5813L: linux-crypto@vger.kernel.org
5814S: Maintained
5815F: crypto/pcrypt.c
5816F: include/crypto/pcrypt.h
5817
Tejun Heoe72df0b2010-12-10 17:02:49 +01005818PER-CPU MEMORY ALLOCATOR
5819M: Tejun Heo <tj@kernel.org>
5820M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005821T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5822S: Maintained
5823F: include/linux/percpu*.h
5824F: mm/percpu*.c
5825F: arch/*/include/asm/percpu.h
5826
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005827PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005828M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005830F: include/linux/delayacct.h
5831F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005832
Ingo Molnar57c0c152009-09-21 12:20:38 +02005833PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005834M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5835M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005836M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005837M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005838T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005839S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005840F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005841F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005842F: arch/*/kernel/perf_event*.c
5843F: arch/*/kernel/*/perf_event*.c
5844F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005845F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005846F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005847F: arch/*/kernel/perf_callchain.c
5848F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005849
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005850PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005852L: linux-abi-devel@lists.sourceforge.net
5853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005854F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005855
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005856PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005857M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005858S: Supported
5859F: Documentation/networking/phonet.txt
5860F: include/linux/phonet.h
5861F: include/net/phonet/
5862F: net/phonet/
5863
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005865M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866L: linux-mtd@lists.infradead.org
5867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005868F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
Bruno Prémontefdbb102012-07-30 21:39:03 +02005870PICOLCD HID DRIVER
5871M: Bruno Prémont <bonbons@linux-vserver.org>
5872L: linux-input@vger.kernel.org
5873S: Maintained
5874F: drivers/hid/hid-picolcd*
5875
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005876PICOXCELL SUPPORT
5877M: Jamie Iles <jamie@jamieiles.com>
5878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5879T: git git://github.com/jamieiles/linux-2.6-ji.git
5880S: Supported
5881F: arch/arm/mach-picoxcell
5882F: drivers/*/picoxcell*
5883F: drivers/*/*/picoxcell*
5884
Linus Walleij2744e8a2011-05-02 20:50:54 +02005885PIN CONTROL SUBSYSTEM
5886M: Linus Walleij <linus.walleij@linaro.org>
5887S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005888F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005889F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005890
Viresh Kumardeda8282012-03-28 22:27:07 +05305891PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005892M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305893L: spear-devel@list.st.com
5894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5895W: http://www.st.com/spear
5896S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005897F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305898
Peter Osterlund249a6772005-09-27 21:45:30 -07005899PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005900M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005902F: drivers/block/pktcdvd.c
5903F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005904
GuanXuetaob31d8272011-01-16 00:35:49 +08005905PKUNITY SOC DRIVERS
5906M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5907W: http://mprc.pku.edu.cn/~guanxuetao/linux
5908S: Maintained
5909T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5910F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005911F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005912F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005913F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005914
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005915PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005916M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005917L: lm-sensors@lm-sensors.org
5918W: http://www.lm-sensors.org/
5919W: http://www.roeck-us.net/linux/drivers/
5920T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5921S: Maintained
5922F: Documentation/hwmon/pmbus
5923F: drivers/hwmon/pmbus/
5924F: include/linux/i2c/pmbus.h
5925
Anil Ravindranath89a36812009-08-25 17:35:18 -07005926PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005927M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005928L: linux-scsi@vger.kernel.org
5929W: http://www.pmc-sierra.com/
5930S: Supported
5931F: drivers/scsi/pmcraid.*
5932
jack wangdbf9bfe2009-10-14 16:19:21 +08005933PMC SIERRA PM8001 DRIVER
5934M: jack_wang@usish.com
5935M: lindar_liu@usish.com
5936L: linux-scsi@vger.kernel.org
5937S: Supported
5938F: drivers/scsi/pm8001/
5939
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005941M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005942T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005944F: fs/timerfd.c
5945F: include/linux/timer*
5946F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
Anton Vorontsov3be86142007-07-15 04:43:36 +04005948POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Anton Vorontsov <cbou@mail.ru>
5950M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005951T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005953F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005954F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005957M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005958M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005960F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
Vitaly Wool999445d2007-01-04 13:07:03 +01005962PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005964L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005966F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005967
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005969M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970L: linux-ppp@vger.kernel.org
5971S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005972F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
5974PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005977F: net/atm/pppoatm.c
5978F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
5980PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005981M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005983F: drivers/net/ppp/pppoe.c
5984F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985
James Chapmana6d23702007-06-27 15:53:17 -07005986PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005988S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005989F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005990F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005991
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005992PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005993M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005994W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5995L: linuxpps@ml.enneenne.com (subscribers-only)
5996S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005997F: Documentation/pps/
5998F: drivers/pps/
5999F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006000
Harry Wei71a6d0a2011-05-11 15:13:33 -07006001PPTP DRIVER
6002M: Dmitry Kozlov <xeb@mail.ru>
6003L: netdev@vger.kernel.org
6004S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006005F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006006W: http://sourceforge.net/projects/accel-pptp
6007
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006009M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010L: kpreempt-tech@lists.sourceforge.net
6011W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6012S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006013F: Documentation/preempt-locking.txt
6014F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015
6016PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006018L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006019W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006020S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006021F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006023PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006024M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006025L: linux-ide@vger.kernel.org
6026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006027F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006028
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006029PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006030M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006031L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006032L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006033S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006034F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006035
Geoff Levandf58a9d12006-11-23 00:46:51 +01006036PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006037M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006038L: linuxppc-dev@lists.ozlabs.org
6039L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006041F: arch/powerpc/boot/ps3*
6042F: arch/powerpc/include/asm/lv1call.h
6043F: arch/powerpc/include/asm/ps3*.h
6044F: arch/powerpc/platforms/ps3/
6045F: drivers/*/ps3*
6046F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006047F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006049F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006050
Jim Pariscffb4add2009-01-06 11:32:10 +00006051PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006052M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006053L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006054S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006055F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006056
Anton Vorontsov8defe592012-08-03 18:07:20 -07006057PSTORE FILESYSTEM
6058M: Anton Vorontsov <cbouatmailru@gmail.com>
6059M: Colin Cross <ccross@android.com>
6060M: Kees Cook <keescook@chromium.org>
6061M: Tony Luck <tony.luck@intel.com>
6062S: Maintained
6063T: git git://git.infradead.org/users/cbou/linux-pstore.git
6064F: fs/pstore/
6065F: include/linux/pstore*
6066F: drivers/firmware/efivars.c
6067F: drivers/acpi/apei/erst.c
6068
Richard Cochran7fbc4152012-03-10 01:55:53 +00006069PTP HARDWARE CLOCK SUPPORT
6070M: Richard Cochran <richardcochran@gmail.com>
6071S: Maintained
6072W: http://linuxptp.sourceforge.net/
6073F: Documentation/ABI/testing/sysfs-ptp
6074F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006075F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006076F: drivers/net/phy/dp83640*
6077F: drivers/ptp/*
6078F: include/linux/ptp_cl*
6079
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006080PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006081M: Roland McGrath <roland@redhat.com>
6082M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006083S: Maintained
6084F: include/asm-generic/syscall.h
6085F: include/linux/ptrace.h
6086F: include/linux/regset.h
6087F: include/linux/tracehook.h
6088F: kernel/ptrace.c
6089
Michael Krufky83202042006-07-03 00:24:18 -07006090PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006092L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006093L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006094W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006095T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006097F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006098F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006099
Hans de Goede39532e62012-11-04 17:05:59 -03006100PWC WEBCAM DRIVER
6101M: Hans de Goede <hdegoede@redhat.com>
6102L: linux-media@vger.kernel.org
6103T: git git://linuxtv.org/media_tree.git
6104S: Maintained
6105F: drivers/media/usb/pwc/*
6106
Thierry Reding200efed2012-03-27 13:16:18 +02006107PWM SUBSYSTEM
6108M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006109L: linux-kernel@vger.kernel.org
6110S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006111W: http://gitorious.org/linux-pwm
6112T: git git://gitorious.org/linux-pwm/linux-pwm.git
6113F: Documentation/pwm.txt
6114F: Documentation/devicetree/bindings/pwm/
6115F: include/linux/pwm.h
6116F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006117F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006118F: drivers/video/backlight/pwm_bl.c
6119F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006120
Eric Miao30ec2612008-06-12 15:21:41 -07006121PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: Eric Miao <eric.y.miao@gmail.com>
6123M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006124M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006125L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006126T: git git://github.com/hzhuang1/linux.git
6127T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006129F: arch/arm/mach-pxa/
6130F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006131F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006132F: drivers/usb/gadget/pxa2*
6133F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006134F: sound/arm/pxa*
6135F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006137MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006138M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006139M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006141T: git git://github.com/hzhuang1/linux.git
6142T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006143S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006144F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006145
Pierre Ossman272f1332007-05-14 21:25:26 +02006146PXA MMCI DRIVER
6147S: Orphan
6148
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006149PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006150M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006151L: rtc-linux@googlegroups.com
6152S: Maintained
6153
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006154QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006155M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006156L: linux-rdma@vger.kernel.org
6157S: Supported
6158F: drivers/infiniband/hw/qib/
6159
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006160QLOGIC QLA1280 SCSI DRIVER
6161M: Michael Reed <mdr@sgi.com>
6162L: linux-scsi@vger.kernel.org
6163S: Maintained
6164F: drivers/scsi/qla1280.[ch]
6165
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006167M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006168M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169L: linux-scsi@vger.kernel.org
6170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006171F: Documentation/scsi/LICENSE.qla2xxx
6172F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173
Ravi Anand883c98f2010-04-28 11:45:49 +05306174QLOGIC QLA4XXX iSCSI DRIVER
6175M: Ravi Anand <ravi.anand@qlogic.com>
6176M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6177M: iscsi-driver@qlogic.com
6178L: linux-scsi@vger.kernel.org
6179S: Supported
6180F: drivers/scsi/qla4xxx/
6181
Ron Mercer5a4faa82006-07-25 00:40:21 -07006182QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006183M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006184M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07006185M: linux-driver@qlogic.com
6186L: netdev@vger.kernel.org
6187S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006188F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006189F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07006190
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006191QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006192M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006193M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006194M: linux-driver@qlogic.com
6195L: netdev@vger.kernel.org
6196S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006197F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006198
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006199QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006200M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006201M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006202M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006203L: netdev@vger.kernel.org
6204S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006205F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006206
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006208M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209W: http://www.alarsen.net/linux/qnx4fs/
6210S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006211F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006212F: include/linux/qnx4_fs.h
6213F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214
Antti Palosaari91952bc2012-10-01 12:28:46 -03006215QT1010 MEDIA DRIVER
6216M: Antti Palosaari <crope@iki.fi>
6217L: linux-media@vger.kernel.org
6218W: http://linuxtv.org/
6219W: http://palosaari.fi/linux/
6220Q: http://patchwork.linuxtv.org/project/linux-media/list/
6221T: git git://linuxtv.org/anttip/media_tree.git
6222S: Maintained
6223F: drivers/media/tuners/qt1010*
6224
Richard Kuo4f4567c2011-10-31 18:56:38 -05006225QUALCOMM HEXAGON ARCHITECTURE
6226M: Richard Kuo <rkuo@codeaurora.org>
6227L: linux-hexagon@vger.kernel.org
6228S: Supported
6229F: arch/hexagon/
6230
Hans Verkuil35e35402012-11-23 07:02:29 -03006231QUICKCAM PARALLEL PORT WEBCAMS
6232M: Hans Verkuil <hverkuil@xs4all.nl>
6233L: linux-media@vger.kernel.org
6234T: git git://linuxtv.org/media_tree.git
6235W: http://linuxtv.org
6236S: Odd Fixes
6237F: drivers/media/parport/*-qcam*
6238
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006239RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006240M: Yehuda Sadeh <yehuda@inktank.com>
6241M: Sage Weil <sage@inktank.com>
6242M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006243M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006244W: http://ceph.com/
6245T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006246S: Supported
6247F: drivers/block/rbd.c
6248F: drivers/block/rbd_types.h
6249
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006251M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006252L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/video/aty/radeon*
6255F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256
Hans de Goedec6c9b342012-11-04 17:03:58 -03006257RADIOSHARK RADIO DRIVER
6258M: Hans de Goede <hdegoede@redhat.com>
6259L: linux-media@vger.kernel.org
6260T: git git://linuxtv.org/media_tree.git
6261S: Maintained
6262F: drivers/media/radio/radio-shark.c
6263
6264RADIOSHARK2 RADIO DRIVER
6265M: Hans de Goede <hdegoede@redhat.com>
6266L: linux-media@vger.kernel.org
6267T: git git://linuxtv.org/media_tree.git
6268S: Maintained
6269F: drivers/media/radio/radio-shark2.c
6270F: drivers/media/radio/radio-tea5777.c
6271
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006274L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
Randy Dunlape7839f22008-10-12 16:11:45 -07006278RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006279P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006280M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006281M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006282M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006283L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006284L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006285W: http://rt2x00.serialmonkey.com/
6286S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006287T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006288F: drivers/net/wireless/rt2x00/
6289
Nick Piggin9db55792008-02-08 04:19:49 -08006290RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006291M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006293F: Documentation/blockdev/ramdisk.txt
6294F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006295
Matt Mackall9e95ce22005-04-16 15:25:56 -07006296RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006297M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006300
Matt Porter394b7012005-11-07 01:00:15 -08006301RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006303M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006307RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006308L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006309S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006310F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006311
6312RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Josh Triplett <josh@freedesktop.org>
6314M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006315S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006316T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006317F: Documentation/RCU/torture.txt
6318F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006319
Florian Fainellic1f766b2008-02-06 22:39:44 +01006320RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006322S: Maintained
6323
Florian Fainellidb17f392007-12-19 11:30:30 +01006324RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006325M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006326L: netdev@vger.kernel.org
6327S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006328F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006329
Andy Grovera09ed662009-02-24 15:30:41 +00006330RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006331M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006332L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006334F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006335
Josh Triplett595182b2006-10-04 02:17:21 -07006336READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Dipankar Sarma <dipankar@in.ibm.com>
6338M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006339W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006340S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006341T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006342F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006343X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006344F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006345F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006346X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006347
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006348REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006349M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006350L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006351Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: Documentation/rtc.txt
6354F: drivers/rtc/
6355F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006356
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006358L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006360F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361
Mark Brownb83a3132011-05-11 19:59:58 +02006362REGISTER MAP ABSTRACTION
6363M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6364T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6365S: Supported
6366F: drivers/base/regmap/
6367F: include/linux/regmap.h
6368
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006369REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6370M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006371T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006372S: Maintained
6373F: drivers/remoteproc/
6374F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006375F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006376
Ivo van Doorne08976452008-04-12 19:23:55 +02006377RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006379L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006380W: http://wireless.kernel.org/
6381T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6382T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006383S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006384F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006385F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006386
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006387RICOH SMARTMEDIA/XD DRIVER
6388M: Maxim Levitsky <maximlevitsky@gmail.com>
6389S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006390F: drivers/mtd/nand/r852.c
6391F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006392
Maxim Levitsky92634122011-03-25 01:56:59 -07006393RICOH R5C592 MEMORYSTICK DRIVER
6394M: Maxim Levitsky <maximlevitsky@gmail.com>
6395S: Maintained
6396F: drivers/memstick/host/r592.*
6397
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398ROCKETPORT DRIVER
6399P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400W: http://www.comtrol.com
6401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006402F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006403F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
6405ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006408W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006410F: include/linux/rose.h
6411F: include/net/rose.h
6412F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413
Antti Palosaari91952bc2012-10-01 12:28:46 -03006414RTL2830 MEDIA DRIVER
6415M: Antti Palosaari <crope@iki.fi>
6416L: linux-media@vger.kernel.org
6417W: http://linuxtv.org/
6418W: http://palosaari.fi/linux/
6419Q: http://patchwork.linuxtv.org/project/linux-media/list/
6420T: git git://linuxtv.org/anttip/media_tree.git
6421S: Maintained
6422F: drivers/media/dvb-frontends/rtl2830*
6423
Larry Finger59840482008-11-12 17:13:09 -06006424RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006425M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006426L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006427W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006428T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006429S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006430F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006431
Larry Finger59840482008-11-12 17:13:09 -06006432RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006433M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006434M: Hin-Tak Leung <htl10@users.sourceforge.net>
6435M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006436L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006437W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006438T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006439S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006440F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006441
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006442RTL8192CE WIRELESS DRIVER
6443M: Larry Finger <Larry.Finger@lwfinger.net>
6444M: Chaoming Li <chaoming_li@realsil.com.cn>
6445L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006446W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006447T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6448S: Maintained
6449F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006450F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006451
6452S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006453M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006454L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006456F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006457
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458S390
Joe Perches8b58be82009-07-29 15:04:30 -07006459M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6460M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006462L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006463W: http://www.ibm.com/developerworks/linux/linux390/
6464S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006465F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006466F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006467F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006468F: Documentation/s390/
6469F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006470
6471S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Ursula Braun <ursula.braun@de.ibm.com>
6473M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006474M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006475L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006476W: http://www.ibm.com/developerworks/linux/linux390/
6477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006479
Felix Beckfeed9b62009-03-26 15:24:23 +01006480S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006481M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006482M: linux390@de.ibm.com
6483L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006484W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006485S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006486F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006487
Heiko Carstens5238da42006-02-11 17:56:01 -08006488S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006489M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006490M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006491L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006492W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006494F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Ursula Braundd96df22007-09-19 13:09:02 +02006496S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006497M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006498M: linux390@de.ibm.com
6499L: linux-s390@vger.kernel.org
6500W: http://www.ibm.com/developerworks/linux/linux390/
6501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006502F: drivers/s390/net/*iucv*
6503F: include/net/iucv/
6504F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006505
Ben Dooks4dde7f72008-06-30 22:40:38 +01006506S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006507M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006508L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006510F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006511
Hans Verkuil1f15a222012-11-23 07:45:29 -03006512SAA6588 RDS RECEIVER DRIVER
6513M: Hans Verkuil <hverkuil@xs4all.nl>
6514L: linux-media@vger.kernel.org
6515T: git git://linuxtv.org/media_tree.git
6516W: http://linuxtv.org
6517S: Odd Fixes
6518F: drivers/media/i2c/saa6588*
6519
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006520SAA7134 VIDEO4LINUX DRIVER
6521M: Mauro Carvalho Chehab <mchehab@redhat.com>
6522L: linux-media@vger.kernel.org
6523W: http://linuxtv.org
6524T: git git://linuxtv.org/media_tree.git
6525S: Odd fixes
6526F: Documentation/video4linux/saa7134/
6527F: drivers/media/pci/saa7134/
6528
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006530M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006531L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006532T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533W: http://www.mihu.de/linux/saa7146
6534S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006535F: drivers/media/common/saa7146/
6536F: drivers/media/pci/saa7146/
6537F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
Corentin Chary92304a42011-12-05 12:38:35 -05006539SAMSUNG LAPTOP DRIVER
6540M: Corentin Chary <corentincj@iksaif.net>
6541L: platform-driver-x86@vger.kernel.org
6542S: Maintained
6543F: drivers/platform/x86/samsung-laptop.c
6544
Mark Brown4a109cc2010-09-24 10:50:46 +01006545SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006546M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006547L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6548S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006549F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006550
Jingoo Han0d89a282011-12-19 11:09:35 +09006551SAMSUNG FRAMEBUFFER DRIVER
6552M: Jingoo Han <jg1.han@samsung.com>
6553L: linux-fbdev@vger.kernel.org
6554S: Maintained
6555F: drivers/video/s3c-fb.c
6556
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006557SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6558M: Sangbeom Kim <sbkim73@samsung.com>
6559L: linux-kernel@vger.kernel.org
6560S: Supported
6561F: drivers/mfd/sec*.c
6562F: drivers/regulator/s2m*.c
6563F: drivers/regulator/s5m*.c
6564F: drivers/rtc/rtc-sec.c
6565F: include/linux/mfd/samsung/
6566
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006567SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6568M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6569L: linux-media@vger.kernel.org
6570L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6571S: Maintained
6572F: drivers/media/platform/s3c-camif/
6573F: include/media/s3c_camif.h
6574
Alan Coxca749e22011-03-18 13:56:14 +00006575SERIAL DRIVERS
6576M: Alan Cox <alan@linux.intel.com>
6577L: linux-serial@vger.kernel.org
6578S: Maintained
6579F: drivers/tty/serial
6580
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306581SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006582M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306583S: Maintained
6584F: include/linux/dw_dmac.h
6585F: drivers/dma/dw_dmac_regs.h
6586F: drivers/dma/dw_dmac.c
6587
Thomas Gleixner88606e82010-12-14 21:37:13 +01006588TIMEKEEPING, NTP
6589M: John Stultz <johnstul@us.ibm.com>
6590M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006591T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006592S: Supported
6593F: include/linux/clocksource.h
6594F: include/linux/time.h
6595F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006596F: kernel/time/clocksource.c
6597F: kernel/time/time*.c
6598F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006599F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006600
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006601TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006602M: Huang Shijie <shijie8@gmail.com>
6603M: Kang Yong <kangyong@telegent.com>
6604M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006605S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006606F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006607
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006609M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006611F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612
6613SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006614M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006615M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006616T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006618F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006619F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620
Chen Liqin6bcf6732009-06-13 15:24:33 +08006621SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006622M: Chen Liqin <liqin.chen@sunplusct.com>
6623M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006624W: http://www.sunplusct.com
6625S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006626F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006627
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006629M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630L: linux-scsi@vger.kernel.org
6631W: http://www.kernel.dk
6632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Roland Dreierfb50a832010-10-07 09:54:53 -07006635SCSI RDMA PROTOCOL (SRP) INITIATOR
6636M: David Dillow <dillowda@ornl.gov>
6637L: linux-rdma@vger.kernel.org
6638S: Supported
6639W: http://www.openfabrics.org
6640Q: http://patchwork.kernel.org/project/linux-rdma/list/
6641T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6642F: drivers/infiniband/ulp/srp/
6643F: include/scsi/srp.h
6644
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006646M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647L: linux-scsi@vger.kernel.org
6648W: http://www.torque.net/sg
6649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: drivers/scsi/sg.c
6651F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652
6653SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006654M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006656T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6657T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6658T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006660F: drivers/scsi/
6661F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662
6663SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006664M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665L: linux-scsi@vger.kernel.org
6666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006667F: Documentation/scsi/st.txt
6668F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669
6670SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006671M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006672M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006673L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006674W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: Documentation/networking/sctp.txt
6677F: include/linux/sctp.h
6678F: include/net/sctp/
6679F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
6681SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006683S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006684F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006685F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006686F: drivers/watchdog/scx200_wdt.c
6687F: drivers/i2c/busses/scx200*
6688F: drivers/mtd/maps/scx200_docflash.c
6689F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006690
6691SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006694F: drivers/char/scx200_gpio.c
6695F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006696
6697SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006698M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701
Sascha Sommer6a369132008-07-15 14:21:29 +02006702SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006703M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006704L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006706F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006707
Randy Dunlape7839f22008-10-12 16:11:45 -07006708SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006709M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006710L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006711T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6712S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006713F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006714F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006715
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006716SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006717M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006718L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006719L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006721F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722
Ben Dooks0d1bb412009-06-14 13:52:37 +01006723SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006725L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006726S: Maintained
6727F: drivers/mmc/host/sdhci-s3c.c
6728
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006729SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006730M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006731L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006732L: linux-mmc@vger.kernel.org
6733S: Maintained
6734F: drivers/mmc/host/sdhci-spear.c
6735
James Morris8711cca2008-12-04 03:19:45 +11006736SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006737M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006738L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006739T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006740W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006741S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006742F: security/
James Morris8711cca2008-12-04 03:19:45 +11006743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746S: Supported
6747
6748SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006749M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006750M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006751M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006752L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006753W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006754T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006756F: include/linux/selinux*
6757F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006758F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759
John Johansenc1c124e2010-07-29 14:48:09 -07006760APPARMOR SECURITY MODULE
6761M: John Johansen <john.johansen@canonical.com>
6762L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6763W: apparmor.wiki.kernel.org
6764T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6765S: Supported
6766F: security/apparmor/
6767
Jiri Slabycef2cf02007-05-08 00:31:45 -07006768SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006769M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006771F: drivers/misc/phantom.c
6772F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006773
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006774SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006775M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006777T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006779F: drivers/ata/
6780F: include/linux/ata.h
6781F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006782
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306783SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006784M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006785L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006786W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006787S: Supported
6788F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306789
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006790SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006791M: Sathya Perla <sathya.perla@emulex.com>
6792M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6793M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006794L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006795W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006796S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006797F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006798
Ben Hutchings8ceee662008-04-27 12:55:59 +01006799SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006800M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006801M: Ben Hutchings <bhutchings@solarflare.com>
6802L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006803S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006804F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006805
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006806SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006807M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006809F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006810
6811SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006812M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006813L: linux-ia64@vger.kernel.org
6814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006815F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006816F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006817F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006818
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006820M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821L: linux-visws-devel@lists.sf.net
6822W: http://linux-visws.sf.net
6823S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006824F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825
Jack Steiner75312612008-08-15 00:40:42 -07006826SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006827M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006829F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006830
Len Brown6349d992009-08-14 15:07:14 -04006831SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006832M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006833L: sfi-devel@simplefirmware.org
6834W: http://simplefirmware.org/
6835T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006836S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006837F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006838F: drivers/sfi/
6839F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006840
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841SIMTEC EB110ATX (Chalice CATS)
6842P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006843P: Vincent Sanders <vince@simtec.co.uk>
6844M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845W: http://www.simtec.co.uk/products/EB110ATX/
6846S: Supported
6847
6848SIMTEC EB2410ITX (BAST)
6849P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006850P: Vincent Sanders <vince@simtec.co.uk>
6851M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852W: http://www.simtec.co.uk/products/EB2410ITX/
6853S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006854F: arch/arm/mach-s3c2410/mach-bast.c
6855F: arch/arm/mach-s3c2410/bast-ide.c
6856F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006858TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006859M: Sekhar Nori <nsekhar@ti.com>
6860M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306861L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306862T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006863Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006864S: Supported
6865F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006866F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006867
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006868TI DAVINCI SERIES MEDIA DRIVER
6869M: Manjunath Hadli <manjunath.hadli@ti.com>
6870M: Prabhakar Lad <prabhakar.lad@ti.com>
6871L: linux-media@vger.kernel.org
6872L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6873W: http://linuxtv.org/
6874Q: http://patchwork.linuxtv.org/project/linux-media/list/
6875T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6876S: Supported
6877F: drivers/media/platform/davinci/
6878F: include/media/davinci/
6879
Francois Romieu92aab3c2005-07-30 13:11:18 +02006880SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006881M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006882L: netdev@vger.kernel.org
6883S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006884F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006885
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006887M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006889L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006891F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006893SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006894M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006895L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006897F: Documentation/i2c/busses/i2c-sis96x
6898F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006899
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006901M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006904F: Documentation/fb/sisfb.txt
6905F: drivers/video/sis/
6906F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907
6908SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006909M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910W: http://www.winischhofer.at/linuxsisusbvga.shtml
6911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006912F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913
Christoph Lameter415ad262007-07-26 10:40:56 -07006914SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006915M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006916M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006917M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006918L: linux-mm@kvack.org
6919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006920F: include/linux/sl?b*.h
6921F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006922
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006923SLEEPABLE READ-COPY UPDATE (SRCU)
6924M: Lai Jiangshan <laijs@cn.fujitsu.com>
6925M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6926W: http://www.rdrop.com/users/paulmck/RCU/
6927S: Supported
6928T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6929F: include/linux/srcu*
6930F: kernel/srcu*
6931
Casey Schaufler66372842012-05-23 18:34:52 -07006932SMACK SECURITY MODULE
6933M: Casey Schaufler <casey@schaufler-ca.com>
6934L: linux-security-module@vger.kernel.org
6935W: http://schaufler-ca.com
6936T: git git://git.gitorious.org/smack-next/kernel.git
6937S: Maintained
6938F: Documentation/security/Smack.txt
6939F: security/smack/
6940
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006942M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006943S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006944F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945
Sakari Ailuse8e31622012-11-12 18:14:39 -03006946SMIA AND SMIA++ IMAGE SENSOR DRIVER
6947M: Sakari Ailus <sakari.ailus@iki.fi>
6948L: linux-media@vger.kernel.org
6949S: Maintained
6950F: drivers/media/i2c/smiapp
6951F: include/media/smiapp.h
6952F: drivers/media/i2c/smiapp-pll.c
6953F: drivers/media/i2c/smiapp-pll.h
6954
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006955SMM665 HARDWARE MONITOR DRIVER
6956M: Guenter Roeck <linux@roeck-us.net>
6957L: lm-sensors@lm-sensors.org
6958S: Maintained
6959F: Documentation/hwmon/smm665
6960F: drivers/hwmon/smm665.c
6961
Steve Glendinning9df73052010-08-14 21:08:54 +02006962SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006963M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006964L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006965S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006966F: Documentation/hwmon/emc2103
6967F: drivers/hwmon/emc2103.c
6968
Hans de Goedea98d5062011-03-21 17:59:36 +01006969SMSC SCH5627 HARDWARE MONITOR DRIVER
6970M: Hans de Goede <hdegoede@redhat.com>
6971L: lm-sensors@lm-sensors.org
6972S: Supported
6973F: Documentation/hwmon/sch5627
6974F: drivers/hwmon/sch5627.c
6975
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006976SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006977M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006978L: lm-sensors@lm-sensors.org
6979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006980F: Documentation/hwmon/smsc47b397
6981F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006982
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006983SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006984M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006985L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006987F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006988F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006989
Steve Glendinning2cb37722008-12-11 20:54:30 -08006990SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006991M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006992L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006993S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006994F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006995
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006996SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006997M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006998L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006999S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007000F: drivers/video/smscufx.c
7001
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007002SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007003M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007004L: linux-altix@sgi.com
7005L: linux-ia64@vger.kernel.org
7006W: http://www.sgi.com/altix
7007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007008F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007009
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007010SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007011M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007012L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007013T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007014S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007015F: include/media/soc*
7016F: drivers/media/i2c/soc_camera/
7017F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007018
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007019SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007022F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007023
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007025M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007028F: drivers/md/
7029F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007033L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007035F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
Michael Buesch61e115a2007-09-18 15:12:50 -04007037SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007038M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007039L: netdev@vger.kernel.org
7040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007041F: drivers/ssb/
7042F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007043
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007045M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007046L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007047W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007049F: Documentation/laptops/sony-laptop.txt
7050F: drivers/char/sonypi.c
7051F: drivers/platform/x86/sony-laptop.c
7052F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053
Alex Dubovbaf85322008-02-09 10:20:54 -08007054SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007055M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007056W: http://tifmxx.berlios.de/
7057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007058F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007059
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007061M: Jaroslav Kysela <perex@perex.cz>
7062M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007063L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007064W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007065T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007066T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007068F: Documentation/sound/
7069F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007070F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071
Mark Brownbd903bd2008-11-19 19:16:05 +00007072SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007073M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007074M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007075T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007076L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007077W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007079F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007080F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007081
Sam Ravnborg473321f2009-01-04 15:47:49 -08007082SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007083M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007085Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007086T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7087T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007089F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007090F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091
David S. Miller6404fcc2010-03-16 01:00:17 -07007092SPARC SERIAL DRIVERS
7093M: "David S. Miller" <davem@davemloft.net>
7094L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007095T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7096T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007097S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007098F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007099F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007100F: drivers/tty/serial/sunhv.c
7101F: drivers/tty/serial/sunsab.c
7102F: drivers/tty/serial/sunsab.h
7103F: drivers/tty/serial/sunsu.c
7104F: drivers/tty/serial/sunzilog.c
7105F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007106
Christopher Li389325b2012-04-05 14:25:14 -07007107SPARSE CHECKER
7108M: "Christopher Li" <sparse@chrisli.org>
7109L: linux-sparse@vger.kernel.org
7110W: https://sparse.wiki.kernel.org/
7111T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7112T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7113S: Maintained
7114F: include/linux/compiler.h
7115
viresh kumarfc0c1952010-04-01 12:31:21 +01007116SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007117M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307118M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007119L: spear-devel@list.st.com
7120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007121W: http://www.st.com/spear
7122S: Maintained
7123F: arch/arm/plat-spear/
7124
Viresh Kumar71e09a92012-04-20 22:39:48 +05307125SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007126M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307127M: Shiraz Hashim <shiraz.hashim@st.com>
7128L: spear-devel@list.st.com
7129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7130W: http://www.st.com/spear
7131S: Maintained
7132F: arch/arm/mach-spear13xx/
7133
viresh kumarfc0c1952010-04-01 12:31:21 +01007134SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007135M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307136M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007137L: spear-devel@list.st.com
7138L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007139W: http://www.st.com/spear
7140S: Maintained
7141F: arch/arm/mach-spear3xx/
7142
7143SPEAR6XX MACHINE SUPPORT
7144M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307145M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007146M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007147L: spear-devel@list.st.com
7148L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007149W: http://www.st.com/spear
7150S: Maintained
7151F: arch/arm/mach-spear6xx/
7152
7153SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007154M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007155L: spear-devel@list.st.com
7156L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007157W: http://www.st.com/spear
7158S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307159F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007160
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007161SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007162M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007163L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007164Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007165T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007167F: Documentation/spi/
7168F: drivers/spi/
7169F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007170
Jim Lewis2752e402006-09-29 02:01:19 -07007171SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007172M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7173M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007174L: netdev@vger.kernel.org
7175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007176F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007177F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007178
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007179SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007180M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007181L: linuxppc-dev@lists.ozlabs.org
7182L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007183W: http://www.ibm.com/developerworks/power/cell/
7184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007185F: Documentation/filesystems/spufs.txt
7186F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007187
Phillip Lougherfc555842009-01-05 08:46:29 +00007188SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007189M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007190L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7191W: http://squashfs.org.uk
7192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007193F: Documentation/filesystems/squashfs.txt
7194F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007195
Linus Torvalds1da177e2005-04-16 15:20:36 -07007196SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007197M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007199F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200
Linus Torvalds26e9a392008-10-17 09:50:12 -07007201STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007202M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007203L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007204S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007205
Linus Torvalds26e9a392008-10-17 09:50:12 -07007206STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007207M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007208T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007209L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007211F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007212
Joe Perchesc8c8b102011-07-05 09:42:12 -07007213STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7214M: Henk de Groot <pe1dnn@amsat.org>
7215S: Odd Fixes
7216F: drivers/staging/wlags49_h2/
7217F: drivers/staging/wlags49_h25/
7218
Joe Perchesc9555152011-07-05 09:42:01 -07007219STAGING - ASUS OLED
7220M: Jakub Schmidtke <sjakub@gmail.com>
7221S: Odd Fixes
7222F: drivers/staging/asus_oled/
7223
Joe Perchesebd3d012011-07-05 09:42:02 -07007224STAGING - COMEDI
7225M: Ian Abbott <abbotti@mev.co.uk>
7226M: Mori Hess <fmhess@users.sourceforge.net>
7227S: Odd Fixes
7228F: drivers/staging/comedi/
7229
Joe Perches8ca572c2011-07-05 09:42:03 -07007230STAGING - CRYSTAL HD VIDEO DECODER
7231M: Naren Sankar <nsankar@broadcom.com>
7232M: Jarod Wilson <jarod@wilsonet.com>
7233M: Scott Davilla <davilla@4pi.com>
7234M: Manu Abraham <abraham.manu@gmail.com>
7235S: Odd Fixes
7236F: drivers/staging/crystalhd/
7237
Joe Perches0f16ffc2011-07-05 09:42:04 -07007238STAGING - ECHO CANCELLER
7239M: Steve Underwood <steveu@coppice.org>
7240M: David Rowe <david@rowetel.com>
7241S: Odd Fixes
7242F: drivers/staging/echo/
7243
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007244STAGING - ET131X NETWORK DRIVER
7245M: Mark Einon <mark.einon@gmail.com>
7246S: Odd Fixes
7247F: drivers/staging/et131x/
7248
Joe Perchesa0138162011-07-05 15:21:34 -07007249STAGING - FLARION FT1000 DRIVERS
7250M: Marek Belisko <marek.belisko@gmail.com>
7251S: Odd Fixes
7252F: drivers/staging/ft1000/
7253
Joe Perchesec3fab92011-07-05 09:42:05 -07007254STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7255M: David Täht <d@teklibre.com>
7256S: Odd Fixes
7257F: drivers/staging/frontier/
7258
Joe Perches6c1bb422011-07-05 09:42:07 -07007259STAGING - INDUSTRIAL IO
7260M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007261L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007262S: Odd Fixes
7263F: drivers/staging/iio/
7264
Joe Perchesa0138162011-07-05 15:21:34 -07007265STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7266M: Jarod Wilson <jarod@wilsonet.com>
7267W: http://www.lirc.org/
7268S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007269F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007270
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007271STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007272M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007273M: Marc Dietrich <marvin24@gmx.de>
7274L: ac100@lists.launchpad.net (moderated for non-subscribers)
7275S: Maintained
7276F: drivers/staging/nvec/
7277
Joe Perchesa0138162011-07-05 15:21:34 -07007278STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7279M: Andres Salomon <dilinger@queued.net>
7280M: Chris Ball <cjb@laptop.org>
7281M: Jon Nettleton <jon.nettleton@gmail.com>
7282W: http://wiki.laptop.org/go/DCON
7283S: Odd Fixes
7284F: drivers/staging/olpc_dcon/
7285
Chris Kelly94cfdd12012-03-14 10:55:42 +00007286STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007287M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007288M: Chris Kelly <ckelly@ozmodevices.com>
7289S: Maintained
7290F: drivers/staging/ozwpan/
7291
Joe Perchesa0138162011-07-05 15:21:34 -07007292STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007293M: Willy Tarreau <willy@meta-x.org>
7294S: Odd Fixes
7295F: drivers/staging/panel/
7296
Joe Perchesa0138162011-07-05 15:21:34 -07007297STAGING - REALTEK RTL8712U DRIVERS
7298M: Larry Finger <Larry.Finger@lwfinger.net>
7299M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7300S: Odd Fixes
7301F: drivers/staging/rtl8712/
7302
Joe Perches9629fa82011-07-05 09:42:09 -07007303STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7304M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7305S: Odd Fixes
7306F: drivers/staging/sm7xx/
7307
Joe Perchesa0138162011-07-05 15:21:34 -07007308STAGING - SOFTLOGIC 6x10 MPEG CODEC
7309M: Ben Collins <bcollins@bluecherry.net>
7310S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007311F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007312
7313STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7314M: William Hubbs <w.d.hubbs@gmail.com>
7315M: Chris Brannon <chris@the-brannons.com>
7316M: Kirk Reiser <kirk@braille.uwo.ca>
7317M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7318L: speakup@braille.uwo.ca
7319W: http://www.linux-speakup.org/
7320S: Odd Fixes
7321F: drivers/staging/speakup/
7322
7323STAGING - TI DSP BRIDGE DRIVERS
7324M: Omar Ramirez Luna <omar.ramirez@ti.com>
7325S: Odd Fixes
7326F: drivers/staging/tidspbridge/
7327
Joe Perchesa0138162011-07-05 15:21:34 -07007328STAGING - USB ENE SM/MS CARD READER DRIVER
7329M: Al Cho <acho@novell.com>
7330S: Odd Fixes
7331F: drivers/staging/keucr/
7332
Joe Perchesb3e871c2011-07-05 09:42:10 -07007333STAGING - VIA VT665X DRIVERS
7334M: Forest Bond <forest@alittletooquiet.net>
7335S: Odd Fixes
7336F: drivers/staging/vt665?/
7337
Joe Perches81a9a522011-07-05 09:42:11 -07007338STAGING - WINBOND IS89C35 WLAN USB DRIVER
7339M: Pavel Machek <pavel@ucw.cz>
7340S: Odd Fixes
7341F: drivers/staging/winbond/
7342
Joe Perches709bcb02011-07-05 09:42:13 -07007343STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007344M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007345S: Odd Fixes
7346F: drivers/staging/xgifb/
7347
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007349M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007350S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007351F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007353SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007354M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007355W: http://sammy.net/sun3/
7356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007357F: arch/m68k/kernel/*sun3*
7358F: arch/m68k/sun3*/
7359F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007360F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007361
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007362SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007364L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007366Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007367T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007368S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007369F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007370F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007371F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007373SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007374M: Len Brown <len.brown@intel.com>
7375M: Pavel Machek <pavel@ucw.cz>
7376M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007377L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007379F: Documentation/power/
7380F: arch/x86/kernel/acpi/
7381F: drivers/base/power/
7382F: kernel/power/
7383F: include/linux/suspend.h
7384F: include/linux/freezer.h
7385F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386
7387SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007388M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389L: linux-video@atrey.karlin.mff.cuni.cz
7390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007391F: Documentation/svga.txt
7392F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007394SWIOTLB SUBSYSTEM
7395M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7396L: linux-kernel@vger.kernel.org
7397S: Supported
7398F: lib/swiotlb.c
7399F: arch/*/kernel/pci-swiotlb.c
7400F: include/linux/swiotlb.h
7401
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007403M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007405F: Documentation/filesystems/sysv-fs.txt
7406F: fs/sysv/
7407F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007409TARGET SUBSYSTEM
7410M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7411L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007412L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007413L: http://groups.google.com/group/linux-iscsi-target-dev
7414W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007415T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007416S: Supported
7417F: drivers/target/
7418F: include/target/
7419F: Documentation/target/
7420
Alan Cox4e688522008-04-30 00:52:11 -07007421TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007422M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007424F: Documentation/accounting/taskstats*
7425F: include/linux/taskstats*
7426F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007427
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007428TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007429M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007430L: netdev@vger.kernel.org
7431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007432F: include/linux/pkt_cls.h
7433F: include/net/pkt_cls.h
7434F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007435
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007436TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007437M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7438M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007439W: http://tcp-lp-mod.sourceforge.net/
7440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007441F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007442
Antti Palosaari91952bc2012-10-01 12:28:46 -03007443TDA10071 MEDIA DRIVER
7444M: Antti Palosaari <crope@iki.fi>
7445L: linux-media@vger.kernel.org
7446W: http://linuxtv.org/
7447W: http://palosaari.fi/linux/
7448Q: http://patchwork.linuxtv.org/project/linux-media/list/
7449T: git git://linuxtv.org/anttip/media_tree.git
7450S: Maintained
7451F: drivers/media/dvb-frontends/tda10071*
7452
7453TDA18212 MEDIA DRIVER
7454M: Antti Palosaari <crope@iki.fi>
7455L: linux-media@vger.kernel.org
7456W: http://linuxtv.org/
7457W: http://palosaari.fi/linux/
7458Q: http://patchwork.linuxtv.org/project/linux-media/list/
7459T: git git://linuxtv.org/anttip/media_tree.git
7460S: Maintained
7461F: drivers/media/tuners/tda18212*
7462
7463TDA18218 MEDIA DRIVER
7464M: Antti Palosaari <crope@iki.fi>
7465L: linux-media@vger.kernel.org
7466W: http://linuxtv.org/
7467W: http://palosaari.fi/linux/
7468Q: http://patchwork.linuxtv.org/project/linux-media/list/
7469T: git git://linuxtv.org/anttip/media_tree.git
7470S: Maintained
7471F: drivers/media/tuners/tda18218*
7472
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007473TDA18271 MEDIA DRIVER
7474M: Michael Krufky <mkrufky@linuxtv.org>
7475L: linux-media@vger.kernel.org
7476W: http://linuxtv.org/
7477W: http://github.com/mkrufky
7478Q: http://patchwork.linuxtv.org/project/linux-media/list/
7479T: git git://linuxtv.org/mkrufky/tuners.git
7480S: Maintained
7481F: drivers/media/tuners/tda18271*
7482
Michael Krufkye48307a2012-10-02 00:56:33 -03007483TDA827x MEDIA DRIVER
7484M: Michael Krufky <mkrufky@linuxtv.org>
7485L: linux-media@vger.kernel.org
7486W: http://linuxtv.org/
7487W: http://github.com/mkrufky
7488Q: http://patchwork.linuxtv.org/project/linux-media/list/
7489T: git git://linuxtv.org/mkrufky/tuners.git
7490S: Maintained
7491F: drivers/media/tuners/tda8290.*
7492
Michael Krufky66cf9212012-10-02 00:56:28 -03007493TDA8290 MEDIA DRIVER
7494M: Michael Krufky <mkrufky@linuxtv.org>
7495L: linux-media@vger.kernel.org
7496W: http://linuxtv.org/
7497W: http://github.com/mkrufky
7498Q: http://patchwork.linuxtv.org/project/linux-media/list/
7499T: git git://linuxtv.org/mkrufky/tuners.git
7500S: Maintained
7501F: drivers/media/tuners/tda8290.*
7502
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007503TEA5761 TUNER DRIVER
7504M: Mauro Carvalho Chehab <mchehab@redhat.com>
7505L: linux-media@vger.kernel.org
7506W: http://linuxtv.org
7507T: git git://linuxtv.org/media_tree.git
7508S: Odd fixes
7509F: drivers/media/tuners/tea5761.*
7510
7511TEA5767 TUNER DRIVER
7512M: Mauro Carvalho Chehab <mchehab@redhat.com>
7513L: linux-media@vger.kernel.org
7514W: http://linuxtv.org
7515T: git git://linuxtv.org/media_tree.git
7516S: Maintained
7517F: drivers/media/tuners/tea5767.*
7518
Jiri Pirko3d249d42011-11-11 22:16:48 +00007519TEAM DRIVER
7520M: Jiri Pirko <jpirko@redhat.com>
7521L: netdev@vger.kernel.org
7522S: Supported
7523F: drivers/net/team/
7524F: include/linux/if_team.h
7525
Sean Young40ad4a32012-11-19 10:32:53 -03007526TECHNOTREND USB IR RECEIVER
7527M: Sean Young <sean@mess.org>
7528L: linux-media@vger.kernel.org
7529S: Maintained
7530F: drivers/media/rc/ttusbir.c
7531
Erik Gilling84b94142010-06-09 15:35:53 -07007532TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007533M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007534L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007535Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7536T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007537S: Supported
7538F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007539F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007540F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007541
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007542TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007543M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007544L: netdev@vger.kernel.org
7545S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007546F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007547
Alan Cox4e688522008-04-30 00:52:11 -07007548Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007549M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007551F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007552
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007553TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007554M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007555M: Max Filippov <jcmvbkbc@gmail.com>
7556L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007558F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007559
Zhang Ruid3fb6952012-11-15 08:58:27 +08007560THERMAL
7561M: Zhang Rui <rui.zhang@intel.com>
7562L: linux-pm@vger.kernel.org
7563T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7564S: Supported
7565F: drivers/thermal/
7566F: include/linux/thermal.h
7567
Alan Cox4e688522008-04-30 00:52:11 -07007568THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007569M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007570L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007571L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007572W: http://ibm-acpi.sourceforge.net
7573W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007574T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007576F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007577
Alex Dubov4020f2d2006-10-04 02:15:37 -07007578TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007579M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007581F: drivers/misc/tifm*
7582F: drivers/mmc/host/tifm_sd.c
7583F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007584
M R Swami Reddy152ad442012-04-02 20:02:31 +05307585TI LM49xxx FAMILY ASoC CODEC DRIVERS
7586M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307587M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307588L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7589S: Maintained
7590F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307591F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307592
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007593TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007594M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007595L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7596S: Maintained
7597F: sound/soc/codecs/twl4030*
7598
Luciano Coelho90921012011-11-20 21:40:41 +02007599TI WILINK WIRELESS DRIVERS
7600M: Luciano Coelho <coelho@ti.com>
7601L: linux-wireless@vger.kernel.org
7602W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7603W: http://wireless.kernel.org/en/users/Drivers/wl1251
7604T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7605S: Maintained
7606F: drivers/net/wireless/ti/
7607F: include/linux/wl12xx.h
7608
Per Lidene86eaa32006-01-12 16:45:18 +01007609TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007610M: Jon Maloy <jon.maloy@ericsson.com>
7611M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007612L: netdev@vger.kernel.org (core kernel code)
7613L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007614W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007616F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007617F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007618
Chris Metcalf867e3592010-05-28 23:09:12 -04007619TILE ARCHITECTURE
7620M: Chris Metcalf <cmetcalf@tilera.com>
7621W: http://www.tilera.com/scm/
7622S: Supported
7623F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007624F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007625F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007626F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007627
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007629M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007630L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631W: http://sourceforge.net/projects/tlan/
7632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007633F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007634F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007636TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Kentaro Takeda <takedakn@nttdata.co.jp>
7638M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007639L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7640L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007641L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7642L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7643W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007644T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007646F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007647
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007648TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007649M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007650L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007651S: Maintained
7652F: drivers/platform/x86/topstar-laptop.c
7653
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007655L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007656S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007657F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658
7659TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007660M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661L: tlinux-users@tce.toshiba-dme.co.jp
7662W: http://www.buzzard.org.uk/toshiba/
7663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007664F: drivers/char/toshiba.c
7665F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666
Pierre Ossmand719f902009-03-24 21:06:09 +01007667TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007668M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007669M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007670L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007671S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007672F: drivers/mmc/host/tmio_mmc*
7673F: drivers/mmc/host/sh_mobile_sdhi.c
7674F: include/linux/mmc/tmio.h
7675F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007676
Hugh Dickins98f32602009-05-21 20:33:58 +01007677TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007678M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007679L: linux-mm@kvack.org
7680S: Maintained
7681F: include/linux/shmem_fs.h
7682F: mm/shmem.c
7683
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007684TM6000 VIDEO4LINUX DRIVER
7685M: Mauro Carvalho Chehab <mchehab@redhat.com>
7686L: linux-media@vger.kernel.org
7687W: http://linuxtv.org
7688T: git git://linuxtv.org/media_tree.git
7689S: Odd fixes
7690F: drivers/media/usb/tm6000/
7691
Alan Cox4e688522008-04-30 00:52:11 -07007692TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007693M: Kent Yoder <key@linux.vnet.ibm.com>
7694M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007695W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007696M: Marcel Selhorst <tpmdd@selhorst.net>
7697M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007698W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007699L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007702
Joe Perchesd6f005a2009-10-26 16:49:40 -07007703TRACING
7704M: Steven Rostedt <rostedt@goodmis.org>
7705M: Frederic Weisbecker <fweisbec@gmail.com>
7706M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007707T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007708S: Maintained
7709F: Documentation/trace/ftrace.txt
7710F: arch/*/*/*/ftrace.h
7711F: arch/*/kernel/ftrace.c
7712F: include/*/ftrace.h
7713F: include/linux/trace*.h
7714F: include/trace/
7715F: kernel/trace/
7716
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007718M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007719T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007721K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007722
Alan Cox4e688522008-04-30 00:52:11 -07007723TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007724M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7725S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007726T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007727F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007728F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007729F: include/linux/serial_core.h
7730F: include/linux/serial.h
7731F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007732
Antti Palosaari91952bc2012-10-01 12:28:46 -03007733TUA9001 MEDIA DRIVER
7734M: Antti Palosaari <crope@iki.fi>
7735L: linux-media@vger.kernel.org
7736W: http://linuxtv.org/
7737W: http://palosaari.fi/linux/
7738Q: http://patchwork.linuxtv.org/project/linux-media/list/
7739T: git git://linuxtv.org/anttip/media_tree.git
7740S: Maintained
7741F: drivers/media/tuners/tua9001*
7742
Grant Grundler740db6d2008-02-17 11:53:49 -07007743TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007744M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007745L: netdev@vger.kernel.org
7746S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007747F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
7749TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007750M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751L: vtun@office.satix.net
7752W: http://vtun.sourceforge.net/tun
7753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007754F: Documentation/networking/tuntap.txt
7755F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007757TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007758M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007760F: drivers/tc/
7761F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007762
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765L: linux-scsi@vger.kernel.org
7766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007767F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007768
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007769UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007770M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007771M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007772L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007773T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007774W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007776F: Documentation/filesystems/ubifs.txt
7777F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007778
Alan Coxcc2020e2008-05-19 14:21:51 +01007779UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007780M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007781W: http://www.uclinux.org/
7782L: uclinux-dev@uclinux.org (subscribers-only)
7783S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007784F: arch/m68k/*/*_no.*
7785F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007786
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007787UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007788M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007789W: http://uclinux-h8.sourceforge.jp/
7790S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007791F: arch/h8300/
7792F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007793F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007794
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007796M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007798F: Documentation/filesystems/udf.txt
7799F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800
Alan Coxcc2020e2008-05-19 14:21:51 +01007801UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007802M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007804F: Documentation/filesystems/ufs.txt
7805F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007806
David Herrmann0a09d3a2012-06-10 15:16:28 +02007807UHID USERSPACE HID IO DRIVER:
7808M: David Herrmann <dh.herrmann@googlemail.com>
7809L: linux-input@vger.kernel.org
7810S: Maintained
7811F: drivers/hid/uhid.c
7812F: include/linux/uhid.h
7813
David Vrabel18332a82008-09-17 16:34:44 +01007814ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007815L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007816S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007817F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007818F: include/linux/uwb.h
7819F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007820
GuanXuetaob31d8272011-01-16 00:35:49 +08007821UNICORE32 ARCHITECTURE:
7822M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7823W: http://mprc.pku.edu.cn/~guanxuetao/linux
7824S: Maintained
7825T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7826F: arch/unicore32/
7827
Tony Finchd8379ab2009-11-27 15:50:30 +00007828UNIFDEF
7829M: Tony Finch <dot@dotat.at>
7830W: http://dotat.at/prog/unifdef
7831S: Maintained
7832F: scripts/unifdef.c
7833
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007835M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836W: http://www.kernel.dk
7837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007838F: Documentation/cdrom/
7839F: drivers/cdrom/cdrom.c
7840F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307842UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7843M: Vinayak Holikatti <vinholikatti@gmail.com>
7844M: Santosh Y <santoshsy@gmail.com>
7845L: linux-scsi@vger.kernel.org
7846S: Supported
7847F: Documentation/scsi/ufs.txt
7848F: drivers/scsi/ufs/
7849
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007850UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007851M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007852W: http://www.linux-mtd.infradead.org/
7853L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007854T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007855S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007856F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007857F: include/linux/mtd/ubi.h
7858F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007859
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007860UNSORTED BLOCK IMAGES (UBI) Fastmap
7861M: Richard Weinberger <richard@nod.at>
7862L: linux-mtd@lists.infradead.org
7863S: Maintained
7864F: drivers/mtd/ubi/fastmap.c
7865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007867M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007868L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007870F: Documentation/usb/acm.txt
7871F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007872
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007873USB ATTACHED SCSI
7874M: Matthew Wilcox <willy@linux.intel.com>
7875M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7876L: linux-usb@vger.kernel.org
7877L: linux-scsi@vger.kernel.org
7878S: Supported
7879F: drivers/usb/storage/uas.c
7880
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007882M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007883L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007885F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007888M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007889L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007891F: drivers/net/usb/cdc_*.c
7892F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007894USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007895M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007896L: linux-usb@vger.kernel.org
7897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007898F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007899
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007900USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007901M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007902L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007903W: http://www.linux-usb.org/usbnet
7904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007905F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007906
Alan Coxcc2020e2008-05-19 14:21:51 +01007907USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007908M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007909L: rio500-users@lists.sourceforge.net
7910W: http://rio500.sourceforge.net
7911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007912F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007913
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007915M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007916L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007918F: Documentation/usb/ehci.txt
7919F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
David Brownell69ae9e32006-11-14 02:03:31 -08007921USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007922M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007923L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007924W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007925T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007927F: drivers/usb/gadget/
7928F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007929
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007930USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007931M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007932L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007933T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007935F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007936F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937
matt mooney857aab32011-06-17 15:50:46 -07007938USB/IP DRIVERS
7939M: Matt Mooney <mfm@muteddisk.com>
7940L: linux-usb@vger.kernel.org
7941S: Maintained
7942F: drivers/staging/usbip/
7943
Olav Kongas959eea22005-11-03 17:38:14 +02007944USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007945M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007946L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007948F: drivers/usb/host/isp116x*
7949F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007950
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007952M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007953L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007955F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956
7957USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007959L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007960L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961S: Maintained
7962W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007963F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964
Clemens Ladischaf399172011-01-10 16:32:54 +01007965USB MIDI DRIVER
7966M: Clemens Ladisch <clemens@ladisch.de>
7967L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7968T: git git://git.alsa-project.org/alsa-kernel.git
7969S: Maintained
7970F: sound/usb/midi.*
7971
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007973M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007974L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007976F: Documentation/usb/ohci.txt
7977F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978
Matthias Urlichsba460e42005-07-14 00:33:47 -07007979USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007980M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007981L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007983F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007984
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007987L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007988L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989W: http://pegasus2.sourceforge.net/
7990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992
Felipe Balbid3ad5582012-05-21 16:24:49 +03007993USB PHY LAYER
7994M: Felipe Balbi <balbi@ti.com>
7995L: linux-usb@vger.kernel.org
7996T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7997S: Maintained
7998F: drivers/usb/phy/
7999F: drivers/usb/otg/
8000
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008001USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008003L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008005F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
8007USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008009L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008010L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011W: http://pegasus2.sourceforge.net/
8012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008013F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014
Alan Cox4e688522008-04-30 00:52:11 -07008015USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008016M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008017L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008019F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008020
8021USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008023L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008024S: Maintained
8025W: http://geocities.com/i0xox0i
8026W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008027F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008028
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008030M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
8035USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008036M: Peter Berger <pberger@brimson.com>
8037M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008038L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008040F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041
8042USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008043M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008044L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008046F: Documentation/usb/usb-serial.txt
8047F: drivers/usb/serial/generic.c
8048F: drivers/usb/serial/usb-serial.c
8049F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008052M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008053L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008055F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
8057USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008058M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008059L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008061F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062
8063USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008064M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008065L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008066W: http://www.connecttech.com
8067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008068F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008069
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008070USB SMSC75XX ETHERNET DRIVER
8071M: Steve Glendinning <steve.glendinning@shawell.net>
8072L: netdev@vger.kernel.org
8073S: Maintained
8074F: drivers/net/usb/smsc75xx.*
8075
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008076USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008077M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008078L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008080F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008081
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008082USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008083M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008084L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008085L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008086T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087W: http://www.linux-projects.org
8088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008089F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008090F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091
8092USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008093M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008094L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008096T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008098F: Documentation/usb/
8099F: drivers/net/usb/
8100F: drivers/usb/
8101F: include/linux/usb.h
8102F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103
8104USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008105M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008106L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008108F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008109
David Brownell69ae9e32006-11-14 02:03:31 -08008110USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008111M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008112L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008113W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008115F: drivers/net/usb/usbnet.c
8116F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008118USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008119M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008120L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008121L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008122T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008123W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008124S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008125F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008126F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008128USB VISION DRIVER
8129M: Hans Verkuil <hverkuil@xs4all.nl>
8130L: linux-media@vger.kernel.org
8131T: git git://linuxtv.org/media_tree.git
8132W: http://linuxtv.org
8133S: Odd Fixes
8134F: drivers/media/usb/usbvision/
8135
Laurent Pinchart8282da42012-10-04 02:32:42 +02008136USB WEBCAM GADGET
8137M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8138L: linux-usb@vger.kernel.org
8139S: Maintained
8140F: drivers/usb/gadget/*uvc*.c
8141F: drivers/usb/gadget/webcam.c
8142
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008143USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008144M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008145L: linux-wireless@vger.kernel.org
8146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008147F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008148
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008149USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008150M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008151L: linux-usb@vger.kernel.org
8152S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008153F: drivers/usb/host/xhci*
8154F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008155
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008157L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008159S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008160F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008162USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008163M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008164L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008165L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008166T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008167W: http://royale.zerezo.com/zr364xx/
8168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008169F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008170F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008171
Randy Dunlape7839f22008-10-12 16:11:45 -07008172USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008173M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008174M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175L: user-mode-linux-devel@lists.sourceforge.net
8176L: user-mode-linux-user@lists.sourceforge.net
8177W: http://user-mode-linux.sourceforge.net
8178S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008179F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008180F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008181F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008182F: fs/hostfs/
8183F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008184
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008185USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008186M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008187M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008189F: Documentation/DocBook/uio-howto.tmpl
8190F: drivers/uio/
8191F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008192
Karel Zak256cccb2012-06-01 10:13:09 +02008193UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008194M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008195L: util-linux@vger.kernel.org
8196W: http://en.wikipedia.org/wiki/Util-linux
8197T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008198S: Maintained
8199
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008200UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008201M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008202L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008203W: http://dev.gentoo.org/~spock/projects/uvesafb/
8204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008205F: Documentation/fb/uvesafb.txt
8206F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008207
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008208VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008209M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008211F: Documentation/filesystems/vfat.txt
8212F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213
Alex Williamsoncba33452012-07-31 08:16:22 -06008214VFIO DRIVER
8215M: Alex Williamson <alex.williamson@redhat.com>
8216L: kvm@vger.kernel.org
8217S: Maintained
8218F: Documentation/vfio.txt
8219F: drivers/vfio/
8220F: include/linux/vfio.h
8221
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008222VIDEOBUF2 FRAMEWORK
8223M: Pawel Osciak <pawel@osciak.com>
8224M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008225M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008226L: linux-media@vger.kernel.org
8227S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008228F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008229F: include/media/videobuf2-*
8230
Amit Shah9a824462010-03-23 18:23:09 +05308231VIRTIO CONSOLE DRIVER
8232M: Amit Shah <amit.shah@redhat.com>
8233L: virtualization@lists.linux-foundation.org
8234S: Maintained
8235F: drivers/char/virtio_console.c
8236F: include/linux/virtio_console.h
8237
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308238VIRTIO CORE, NET AND BLOCK DRIVERS
8239M: Rusty Russell <rusty@rustcorp.com.au>
8240M: "Michael S. Tsirkin" <mst@redhat.com>
8241L: virtualization@lists.linux-foundation.org
8242S: Maintained
8243F: drivers/virtio/
8244F: drivers/net/virtio_net.c
8245F: drivers/block/virtio_blk.c
8246F: include/linux/virtio_*.h
8247
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008248VIRTIO HOST (VHOST)
8249M: "Michael S. Tsirkin" <mst@redhat.com>
8250L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008251L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008252L: netdev@vger.kernel.org
8253S: Maintained
8254F: drivers/vhost/
8255F: include/linux/vhost.h
8256
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008258M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008260F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
Harald Weltef0bf7f62009-06-17 20:22:39 +02008262VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008263M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008264M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008265S: Maintained
8266F: drivers/mmc/host/via-sdmmc.c
8267
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008268VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008269M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008270L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008271S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008272F: include/linux/via-core.h
8273F: include/linux/via-gpio.h
8274F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008275F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008276
Francois Romieu01f20732007-01-26 00:57:17 -08008277VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008278M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008279L: netdev@vger.kernel.org
8280S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008281F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008282
Patrick McHardybe7f8272007-10-23 20:26:36 -07008283VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008284M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008285L: netdev@vger.kernel.org
8286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008287F: drivers/net/macvlan.c
8288F: include/linux/if_*vlan.h
8289F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008290
Florian Fainelli55e331c2009-06-16 15:33:53 -07008291VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008292M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008293L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008294S: Maintained
8295F: drivers/vlynq/vlynq.c
8296F: include/linux/vlynq.h
8297
Martyn Welch390beae2012-05-03 17:52:36 +01008298VME SUBSYSTEM
8299M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008300M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008301M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8302L: devel@driverdev.osuosl.org
8303S: Maintained
8304T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8305F: Documentation/vme_api.txt
8306F: drivers/staging/vme/
8307F: drivers/vme/
8308F: include/linux/vme*
8309
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008310VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008311M: Shreyas Bhatewara <sbhatewara@vmware.com>
8312M: "VMware, Inc." <pv-drivers@vmware.com>
8313L: netdev@vger.kernel.org
8314S: Maintained
8315F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008316
Alok Kataria851b1642009-10-13 14:51:05 -07008317VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008318M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008319M: VMware PV-Drivers <pv-drivers@vmware.com>
8320L: linux-scsi@vger.kernel.org
8321S: Maintained
8322F: drivers/scsi/vmw_pvscsi.c
8323F: drivers/scsi/vmw_pvscsi.h
8324
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008325VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008326M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008327M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008328W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008329W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008330T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008331S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008332F: drivers/regulator/
8333F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008334
Juerg Haefligerab413192006-09-24 20:54:04 +02008335VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008336M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008337L: lm-sensors@lm-sensors.org
8338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008339F: Documentation/hwmon/vt1211
8340F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008341
Roger Lucas1de9e372005-11-26 20:20:05 +01008342VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008343M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008344L: lm-sensors@lm-sensors.org
8345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008346F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008347
Tony Olech88095e72011-05-14 16:48:13 -04008348VUB300 USB to SDIO/SD/MMC bridge chip
8349M: Tony Olech <tony.olech@elandigitalsystems.com>
8350L: linux-mmc@vger.kernel.org
8351L: linux-usb@vger.kernel.org
8352S: Supported
8353F: drivers/mmc/host/vub300.c
8354
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008356M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008358F: Documentation/w1/
8359F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360
Charles Spirakis13927072006-07-05 18:05:15 +02008361W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008362M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008363L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008365F: Documentation/hwmon/w83791d
8366F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008367
Rudolf Marek61db0112006-12-12 18:18:30 +01008368W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008369M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008370L: lm-sensors@lm-sensors.org
8371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008372F: Documentation/hwmon/w83793
8373F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008374
Jean Delvaree3760b42010-10-28 20:31:49 +02008375W83795 HARDWARE MONITORING DRIVER
8376M: Jean Delvare <khali@linux-fr.org>
8377L: lm-sensors@lm-sensors.org
8378S: Maintained
8379F: drivers/hwmon/w83795.c
8380
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008382M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008384F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008385
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008386WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008387M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008388L: linux-watchdog@vger.kernel.org
8389W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008390T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: Documentation/watchdog/
8393F: drivers/watchdog/
8394F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008395
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008397M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398L: linux-scsi@vger.kernel.org
8399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008400F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401
David Herrmannb22e00f2011-09-06 13:50:40 +02008402WIIMOTE HID DRIVER
8403M: David Herrmann <dh.herrmann@googlemail.com>
8404L: linux-input@vger.kernel.org
8405S: Maintained
8406F: drivers/hid/hid-wiimote*
8407
David Härdemane258b802009-09-21 17:04:53 -07008408WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008409M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008410S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008411F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008412
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008413WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008414M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008415M: linux-wimax@intel.com
8416L: wimax@linuxwimax.org
8417S: Supported
8418W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008419F: Documentation/wimax/README.wimax
8420F: include/linux/wimax.h
8421F: include/linux/wimax/debug.h
8422F: include/net/wimax.h
8423F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008424
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008425WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008426M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008431M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008432L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008433W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008435F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
Mark Brownfebf1df2008-04-02 00:51:09 -04008437WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008438M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8439M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008440L: linux-input@vger.kernel.org
8441T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8442W: http://opensource.wolfsonmicro.com/node/7
8443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008444F: drivers/input/touchscreen/*wm97*
8445F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008446
Mark Brown055bcbc2010-08-13 14:18:12 +01008447WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008448M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008449L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008450T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008451T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008452W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008453S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008454F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008455F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008456F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008457F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008458F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008459F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008460F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008461F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008462F: drivers/input/misc/wm831x-on.c
8463F: drivers/input/touchscreen/wm831x-ts.c
8464F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008465F: drivers/mfd/arizona*
8466F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008467F: drivers/power/wm83*.c
8468F: drivers/rtc/rtc-wm83*.c
8469F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008470F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008471F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008472F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008473F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008474F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008475F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008476F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008477F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008478F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008479F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008480
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008481WORKQUEUE
8482M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008483T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8484S: Maintained
8485F: include/linux/workqueue.h
8486F: kernel/workqueue.c
8487F: Documentation/workqueue.txt
8488
Linus Torvalds1da177e2005-04-16 15:20:36 -07008489X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008490M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008492S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008493F: Documentation/networking/x25*
8494F: include/net/x25*
8495F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008497X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008498M: Thomas Gleixner <tglx@linutronix.de>
8499M: Ingo Molnar <mingo@redhat.com>
8500M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008501M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008502T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008504F: Documentation/x86/
8505F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008506
Matthew Garrettd0944852010-02-11 10:40:13 -05008507X86 PLATFORM DRIVERS
8508M: Matthew Garrett <mjg@redhat.com>
8509L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008510T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008511S: Maintained
8512F: drivers/platform/x86
8513
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008514X86 MCE INFRASTRUCTURE
8515M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008516M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008517L: linux-edac@vger.kernel.org
8518S: Maintained
8519F: arch/x86/kernel/cpu/mcheck/*
8520
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008521XC2028/3028 TUNER DRIVER
8522M: Mauro Carvalho Chehab <mchehab@redhat.com>
8523L: linux-media@vger.kernel.org
8524W: http://linuxtv.org
8525T: git git://linuxtv.org/media_tree.git
8526S: Maintained
8527F: drivers/media/tuners/tuner-xc2028.*
8528
Ian Campbellc4468082011-04-27 15:26:46 -07008529XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008530M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008531M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008532L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8533L: virtualization@lists.linux-foundation.org
8534S: Supported
8535F: arch/x86/xen/
8536F: drivers/*/xen-*front.c
8537F: drivers/xen/
8538F: arch/x86/include/asm/xen/
8539F: include/xen/
8540
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008541XEN HYPERVISOR ARM
8542M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8543L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8544S: Supported
8545F: arch/arm/xen/
8546F: arch/arm/include/asm/xen/
8547
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008548XEN NETWORK BACKEND DRIVER
8549M: Ian Campbell <ian.campbell@citrix.com>
8550L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8551L: netdev@vger.kernel.org
8552S: Supported
8553F: drivers/net/xen-netback/*
8554
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008555XEN PCI SUBSYSTEM
8556M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008557L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008558S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008559F: arch/x86/pci/*xen*
8560F: drivers/pci/*xen*
8561
8562XEN SWIOTLB SUBSYSTEM
8563M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008564L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008565S: Supported
8566F: arch/x86/xen/*swiotlb*
8567F: drivers/xen/*swiotlb*
8568
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569XFS FILESYSTEM
8570P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008571M: Ben Myers <bpm@sgi.com>
8572M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008573M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008574L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008575W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008576T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008578F: Documentation/filesystems/xfs.txt
8579F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008581XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008582M: Anirudha Sarangi <anirudh@xilinx.com>
8583M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008584S: Maintained
8585F: drivers/net/ethernet/xilinx/xilinx_axienet*
8586
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008587XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008588M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008589W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008591F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008592
Peter Korsgaard238b8722006-12-06 20:35:17 -08008593XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008594M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008595L: linux-serial@vger.kernel.org
8596S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008597F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008598
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008600M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601L: linux-hams@vger.kernel.org
8602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008603F: drivers/net/hamradio/yam*
8604F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
Henkaf64a5e2005-10-12 15:02:56 +02008606YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008607M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008608L: usbb2k-api-dev@nongnu.org
8609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008610F: Documentation/input/yealink.txt
8611F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008612
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008614M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008615W: http://yaina.de/jreuter/
8616W: http://www.qsl.net/dl1bke/
8617L: linux-hams@vger.kernel.org
8618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008619F: Documentation/networking/z8530drv.txt
8620F: drivers/net/hamradio/*scc.c
8621F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008623ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008624M: Daniel Drake <dsd@gentoo.org>
8625M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008626W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008627L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008628L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008630F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008631
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008634L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008636T: Mercurial http://linuxtv.org/hg/v4l-dvb
8637S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008638F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008639
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008640ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008641M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008642S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008643F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008644
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008646M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008647L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008648Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008649T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008651F: *
8652F: */