blob: 4cf5fd334a06a32cc25fdadff37355b8fc6c397f [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
Stephen Warreneb90d082013-02-27 17:02:53 -0800100 patch or file, or an affected filename. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700101 K: of_get_profile
Stephen Warreneb90d082013-02-27 17:02:53 -0800102 matches patch or file content, or filenames, that contain
103 "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: \b(printk|pr_(info|err))\b
Stephen Warreneb90d082013-02-27 17:02:53 -0800105 matches patch or file content, or filenames, that contain one or
106 more of the words printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700107 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109Note: For the hard of thinking, this list is meant to remain in alphabetical
110order. If you could add yourselves to it in alphabetical order that would be
111so much easier [Ed]
112
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700113Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700116
Steffen Klasserta6d89912007-08-10 14:05:27 -07001173C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700118M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700119L: netdev@vger.kernel.org
120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700121F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700122F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700125M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700126L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700128F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
adam radfordc4de0ce2010-03-08 12:40:36 -08001303WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
131M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800133W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800135F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
13753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700138M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139L: linux-scsi@vger.kernel.org
140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700141F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
1436PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700144M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145L: linux-hams@vger.kernel.org
146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700147F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700150M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700151M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700152L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700154F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
1568250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800157M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158L: linux-serial@vger.kernel.org
159W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700160S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700161T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800162F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700163F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700166L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000167S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700168F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001709P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700171M: Eric Van Hensbergen <ericvh@gmail.com>
172M: Ron Minnich <rminnich@sandia.gov>
173M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100174L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500175W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800176Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800177T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: Documentation/filesystems/9p.txt
180F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800181
Antti Palosaari91952bc2012-10-01 12:28:46 -0300182A8293 MEDIA DRIVER
183M: Antti Palosaari <crope@iki.fi>
184L: linux-media@vger.kernel.org
185W: http://linuxtv.org/
186W: http://palosaari.fi/linux/
187Q: http://patchwork.linuxtv.org/project/linux-media/list/
188T: git git://linuxtv.org/anttip/media_tree.git
189S: Maintained
190F: drivers/media/dvb-frontends/a8293*
191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700192AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194L: linux-scsi@vger.kernel.org
195W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700197F: Documentation/scsi/aacraid.txt
198F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100201M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202L: lm-sensors@lm-sensors.org
203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700204F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700207M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700213M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214L: linux-acenic@sunsite.dk
215S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700216F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Feuerere86435e2009-06-21 18:53:03 +0200218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700219M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500220L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700221W: http://piie.net/?section=acerhdf
222S: Maintained
223F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800226M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700229F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700232M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200233M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500234L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400235W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800236Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400237T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/acpi/
240F: drivers/pnp/pnpacpi/
241F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700242F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500243
Len Brown8b59a452007-01-08 19:03:28 -0500244ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500246L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300247W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700249F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown8b59a452007-01-08 19:03:28 -0500251ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700252M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500253L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300254W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700256F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700257
Len Brown359acec2007-02-10 01:59:24 -0500258ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700259M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500260L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300261W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700263F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500264
Carlos Corbachobff431e2008-02-05 02:17:04 +0000265ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500266L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100267S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000269
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100270AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700271M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200272W: http://wiki.parisc-linux.org/AD1889
273L: linux-parisc@vger.kernel.org
274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700275F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100276
Michael Hennerich527a1a82010-10-28 11:31:28 +0000277AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
278M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100279L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700280W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000281S: Supported
282F: drivers/misc/ad525x_dpot.c
283
284AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
285M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100286L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700287W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000288S: Supported
289F: drivers/regulator/ad5398.c
290
291AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
292M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100293L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700294W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000295S: Supported
296F: drivers/input/misc/ad714x.c
297
298AD7877 TOUCHSCREEN DRIVER
299M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100300L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700301W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000302S: Supported
303F: drivers/input/touchscreen/ad7877.c
304
305AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
306M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100307L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700308W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000309S: Supported
310F: drivers/input/touchscreen/ad7879.c
311
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700312ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
313M: Jiri Kosina <jkosina@suse.cz>
314S: Maintained
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700317M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200318L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700320F: Documentation/hwmon/adm1025
321F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Corentin Labbecae2caa2007-02-14 21:15:04 +0100323ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325L: lm-sensors@lm-sensors.org
326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328
Michael Wucc0b88c2007-08-31 01:15:25 -0400329ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400330L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200331W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700333F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400334
Sakari Ailuse8e31622012-11-12 18:14:39 -0300335ADP1653 FLASH CONTROLLER DRIVER
336M: Sakari Ailus <sakari.ailus@iki.fi>
337L: linux-media@vger.kernel.org
338S: Maintained
339F: drivers/media/i2c/adp1653.c
340F: include/media/adp1653.h
341
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100344L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700345W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346S: Supported
347F: drivers/mfd/adp5520.c
348F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700349F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800350F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351F: drivers/input/keyboard/adp5520-keys.c
352
353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100355L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700356W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357S: Supported
358F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800359F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100363L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700364W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365S: Supported
366F: drivers/video/backlight/adp8860_bl.c
367
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100368ADS1015 HARDWARE MONITOR DRIVER
369M: Dirk Eibach <eibach@gdsys.de>
370L: lm-sensors@lm-sensors.org
371S: Maintained
372F: Documentation/hwmon/ads1015
373F: drivers/hwmon/ads1015.c
374F: include/linux/i2c/ads1015.h
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700377M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Jean Delvareb058b852009-12-09 20:36:08 +0100381ADT7475 HARDWARE MONITOR DRIVER
382M: Jean Delvare <khali@linux-fr.org>
383L: lm-sensors@lm-sensors.org
384S: Maintained
385F: Documentation/hwmon/adt7475
386F: drivers/hwmon/adt7475.c
387
Michael Hennerich527a1a82010-10-28 11:31:28 +0000388ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
389M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100390L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700391W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000392S: Supported
393F: drivers/input/misc/adxl34x.c
394
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: Documentation/scsi/advansys.txt
400F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700403M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700405F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Antti Palosaari91952bc2012-10-01 12:28:46 -0300407AF9013 MEDIA DRIVER
408M: Antti Palosaari <crope@iki.fi>
409L: linux-media@vger.kernel.org
410W: http://linuxtv.org/
411W: http://palosaari.fi/linux/
412Q: http://patchwork.linuxtv.org/project/linux-media/list/
413T: git git://linuxtv.org/anttip/media_tree.git
414S: Maintained
415F: drivers/media/dvb-frontends/af9013*
416
417AF9033 MEDIA DRIVER
418M: Antti Palosaari <crope@iki.fi>
419L: linux-media@vger.kernel.org
420W: http://linuxtv.org/
421W: http://palosaari.fi/linux/
422Q: http://patchwork.linuxtv.org/project/linux-media/list/
423T: git git://linuxtv.org/anttip/media_tree.git
424S: Maintained
425F: drivers/media/dvb-frontends/af9033*
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200428L: linux-fsdevel@vger.kernel.org
429S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700430F: Documentation/filesystems/affs.txt
431F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700434M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435L: linux-afs@lists.infradead.org
436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700437F: fs/afs/
438F: include/net/af_rxrpc.h
439F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700443T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700445F: drivers/char/agp/
446F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800447F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451L: linux-scsi@vger.kernel.org
452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700453F: drivers/scsi/aha152x*
454F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Hannes Reinecke64624d42007-10-19 10:32:29 +0200456AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700457M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458L: linux-scsi@vger.kernel.org
459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700460F: drivers/scsi/aic7xxx/
461F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462
Hans Verkuil450500a2012-11-23 07:11:33 -0300463AIMSLAB FM RADIO RECEIVER DRIVER
464M: Hans Verkuil <hverkuil@xs4all.nl>
465L: linux-media@vger.kernel.org
466T: git git://linuxtv.org/media_tree.git
467W: http://linuxtv.org
468S: Maintained
469F: drivers/media/radio/radio-aimslab*
470
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700471AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700472M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473L: linux-aio@kvack.org
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: fs/aio.c
476F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700479M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700480L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481W: http://www.linux-usb.org/SpeedTouch/
482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/usb/atm/speedtch.c
484F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Pierre Ossman272f1332007-05-14 21:25:26 +0200486ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700489F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200490
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000491ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100493L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: Documentation/i2c/busses/i2c-ali1563
496F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700500M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500501M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700502S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700503L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700504F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Tobias Klauseradf92512011-02-09 10:58:29 +0100506ALTERA UART/JTAG UART SERIAL DRIVERS
507M: Tobias Klauser <tklauser@distanz.ch>
508L: linux-serial@vger.kernel.org
509L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
510S: Maintained
511F: drivers/tty/serial/altera_uart.c
512F: drivers/tty/serial/altera_jtaguart.c
513F: include/linux/altera_uart.h
514F: include/linux/altera_jtaguart.h
515
Andreas Herrmann512d1022011-05-25 20:43:31 +0200516AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100517M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518L: lm-sensors@lm-sensors.org
519S: Maintained
520F: Documentation/hwmon/fam15h_power
521F: drivers/hwmon/fam15h_power.c
522
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700523AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700525L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700527F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528
Jordan Crousef90b8112006-01-06 00:12:14 -0800529AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800530P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700531L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800532W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700534F: drivers/char/hw_random/geode-rng.c
535F: drivers/crypto/geode*
536F: drivers/video/geode/
537F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800538
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200539AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200540M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100542T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200543S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800544F: drivers/iommu/amd_iommu*.[ch]
545F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200546
Peter Orubae7f5b302008-07-28 18:44:11 +0200547AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100548M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700549L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200552
Stelian Pop284f42b2006-12-12 18:18:31 +0100553AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100555S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200556F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100557
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Tom Tucker <tom@opengridcomputing.com>
560M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700561L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564
Hans Verkuil531fca12012-11-23 06:53:24 -0300565ANALOG DEVICES INC AD9389B DRIVER
566M: Hans Verkuil <hans.verkuil@cisco.com>
567L: linux-media@vger.kernel.org
568S: Maintained
569F: drivers/media/i2c/ad9389b*
570
571ANALOG DEVICES INC ADV7604 DRIVER
572M: Hans Verkuil <hans.verkuil@cisco.com>
573L: linux-media@vger.kernel.org
574S: Maintained
575F: drivers/media/i2c/adv7604*
576
Michael Hennerich527a1a82010-10-28 11:31:28 +0000577ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200578M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100579L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000580L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700581W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100583F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200584F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000585F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000586F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100587F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400589ANALOG DEVICES INC ASOC DRIVERS
590L: uclinux-dist-devel@blackfin.uclinux.org
591L: alsa-devel@alsa-project.org (moderated for non-subscribers)
592W: http://blackfin.uclinux.org/
593S: Supported
594F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400595
Johannes Berg42269062006-07-25 16:15:50 +0200596AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000598L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700599L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200604M: Jiri Kosina <jkosina@suse.cz>
605S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700606F: arch/x86/kernel/apm_32.c
607F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800608F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200609F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700611APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700612M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613L: linux-input@vger.kernel.org
614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700617APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200618M: Henrik Rydberg <rydberg@euromail.se>
619L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700626F: drivers/net/appletalk/
627F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Viresh Kumara4801672011-02-22 15:46:07 +0530629ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700630M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530631L: linux-ide@vger.kernel.org
632S: Maintained
633F: include/linux/pata_arasan_cf_data.h
634F: drivers/ata/pata_arasan_cf.c
635
Jaya Kumar1154ea72005-06-21 17:17:04 -0700636ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700639F: drivers/video/arcfb.c
640F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700645F: arch/arm/lib/floppydma.S
646F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Will Deacon6f965212011-07-01 14:38:53 +0100648ARM PMU PROFILING AND DEBUGGING
649M: Will Deacon <will.deacon@arm.com>
650S: Maintained
651F: arch/arm/kernel/perf_event*
652F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100653F: arch/arm/include/asm/pmu.h
654F: arch/arm/kernel/hw_breakpoint.c
655F: arch/arm/include/asm/hw_breakpoint.h
656
Russell Kingd4275352009-04-16 14:05:27 +0100657ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700658M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700659L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100660W: http://www.arm.linux.org.uk/
661S: Maintained
662F: arch/arm/
663
Stephen Boydd323c2432012-10-24 11:00:29 -0700664ARM SUB-ARCHITECTURES
665L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800666S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700667F: arch/arm/mach-*/
668F: arch/arm/plat-*/
669T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
670
Russell Kingcefbf4e2009-11-22 17:40:28 +0000671ARM PRIMECELL AACI PL041 DRIVER
672M: Russell King <linux@arm.linux.org.uk>
673S: Maintained
674F: sound/arm/aaci.*
675
676ARM PRIMECELL CLCD PL110 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/video/amba-clcd.*
680
681ARM PRIMECELL KMI PL050 DRIVER
682M: Russell King <linux@arm.linux.org.uk>
683S: Maintained
684F: drivers/input/serio/ambakmi.*
685F: include/linux/amba/kmi.h
686
Russell King2761f5c2007-05-24 06:56:08 +0200687ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000688M: Russell King <linux@arm.linux.org.uk>
689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700690F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000691F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200692
Russell King1b4304e2013-02-11 15:26:27 +0000693ARM PRIMECELL UART PL010 AND PL011 DRIVERS
694M: Russell King <linux@arm.linux.org.uk>
695S: Maintained
696F: drivers/tty/serial/amba-pl01*.c
697F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800698
Russell Kingcefbf4e2009-11-22 17:40:28 +0000699ARM PRIMECELL BUS SUPPORT
700M: Russell King <linux@arm.linux.org.uk>
701S: Maintained
702F: drivers/amba/
703F: include/linux/amba/bus.h
704
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708S: Maintained
709
Sergey Lapin9c784f92008-08-03 02:29:48 +0100710ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100713S: Maintained
714
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800715ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718S: Maintained
719
Maxime Ripard1b106692012-11-15 21:51:26 +0100720ARM/Allwinner A1X SoC support
721M: Maxime Ripard <maxime.ripard@free-electrons.com>
722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
723S: Maintained
724F: arch/arm/mach-sunxi/
725
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800726ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700727M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728M: Nicolas Ferre <nicolas.ferre@atmel.com>
729M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200731W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800732W: http://www.linux4sam.org
733S: Supported
734F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100735
Rob Herring986cf2e2011-06-22 11:28:53 -0500736ARM/CALXEDA HIGHBANK ARCHITECTURE
737M: Rob Herring <rob.herring@calxeda.com>
738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S: Maintained
740F: arch/arm/mach-highbank/
741
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300742ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
743M: Anton Vorontsov <avorontsov@mvista.com>
744S: Maintained
745F: arch/arm/mach-cns3xxx/
746T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
747
Alexander Shiyan386ab512012-11-17 17:57:24 +0400748ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
749M: Alexander Shiyan <shc_work@mail.ru>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Odd Fixes
752F: arch/arm/mach-clps711x/
753
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800754ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100755M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000756M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700757L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100759F: arch/arm/mach-ep93xx/
760F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761
762ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800765S: Maintained
766
Russell Kingd4275352009-04-16 14:05:27 +0100767ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700770S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100771F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700772F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100773
Mike Rapoportd48134e2008-08-20 09:03:26 +0100774ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100777S: Maintained
778
Hubert Feurstein94150092009-10-07 08:36:07 +0100779ARM/CONTEC MICRO9 MACHINE SUPPORT
780M: Hubert Feurstein <hubert.feurstein@contec.at>
781S: Maintained
782F: arch/arm/mach-ep93xx/micro9.c
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700785M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786S: Maintained
787
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200788ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100789M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791T: git git://git.berlios.de/gemini-board
792S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300793F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200794
Barry Songa990cbd2011-07-12 21:44:10 +0800795ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
796M: Barry Song <baohua.song@csr.com>
797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S: Maintained
799F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800800F: drivers/dma/sirf-dma.c
801F: drivers/i2c/busses/i2c-sirf.c
802F: drivers/pinctrl/pinctrl-sirf.c
803F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700811F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100812
Russell Kinga9da4f72008-07-12 21:42:04 +0100813ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Daniel Ribeiro <drwyrm@gmail.com>
815M: Stefan Schmidt <stefan@openezx.org>
816M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200817L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100818W: http://www.openezx.org/
819S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200820T: topgit git://git.openezx.org/openezx.git
821F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100822
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200823ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100824M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300828F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200829
Russell Kingd4275352009-04-16 14:05:27 +0100830ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700831M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100833W: http://www.arm.linux.org.uk/
834S: Maintained
835F: arch/arm/include/asm/hardware/dec21285.h
836F: arch/arm/mach-footbridge/
837
Sascha Hauer86183a52008-07-24 23:50:35 +0200838ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700839M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200841S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700842T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100843F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700844F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200845
Shawn Guo8bcb9762011-10-07 22:24:18 +0800846ARM/FREESCALE IMX6
847M: Shawn Guo <shawn.guo@linaro.org>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S: Maintained
850T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
851F: arch/arm/mach-imx/*imx6*
852
Shawn Guoa9866a092011-10-21 11:53:34 +0800853ARM/FREESCALE MXS ARM ARCHITECTURE
854M: Shawn Guo <shawn.guo@linaro.org>
855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
856S: Maintained
857T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
858F: arch/arm/mach-mxs/
859
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863S: Maintained
864
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100865ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100868S: Maintained
869
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200870ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100872M: Paul Parsons <lost.distance@yahoo.com>
873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200874S: Maintained
875F: arch/arm/mach-pxa/hx4700.c
876F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100877F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200878
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100879ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200881W: www.jlime.com
882S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700883T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
884F: arch/arm/mach-sa1100/jornada720.c
885F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100886
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200887ARM/IGEP MACHINE SUPPORT
888M: Enric Balletbo i Serra <eballetbo@gmail.com>
889M: Javier Martinez Canillas <javier@dowhile0.org>
890L: linux-omap@vger.kernel.org
891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892S: Maintained
893F: arch/arm/mach-omap2/board-igep0020.c
894
Marek Vasut403d2972010-05-22 00:29:39 +0200895ARM/INCOME PXA270 SUPPORT
896M: Marek Vasut <marek.vasut@gmail.com>
897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
898S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700899F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700903M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700905S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100906
907ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700908M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700910S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911
912ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700914M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700916S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800917
918ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200929ARM/INTEL IXP4XX ARM ARCHITECTURE
930M: Imre Kaloz <kaloz@openwrt.org>
931M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200933S: Maintained
934F: arch/arm/mach-ixp4xx/
935
Joe Perches838553c2010-10-26 14:22:59 -0700936ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100937M: Jonathan Cameron <jic23@cam.ac.uk>
938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939S: Maintained
940F: arch/arm/mach-pxa/stargate2.c
941F: drivers/pcmcia/pxa2xx_stargate2.c
942
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700945M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700947S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948
949ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700950M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800952S: Maintained
953
954ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700955M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957S: Maintained
958
Philipp Zabel3b8861712008-07-09 21:27:15 +0100959ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700960M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100961S: Maintained
962
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200963ARM/Marvell Armada 370 and Armada XP SOC support
964M: Jason Cooper <jason@lakedaemon.net>
965M: Andrew Lunn <andrew@lunn.ch>
966M: Gregory Clement <gregory.clement@free-electrons.com>
967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968S: Maintained
969F: arch/arm/mach-mvebu/
970
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400971ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
972M: Jason Cooper <jason@lakedaemon.net>
973M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400975S: Maintained
976F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400977F: arch/arm/mach-kirkwood/
978F: arch/arm/mach-mv78xx0/
979F: arch/arm/mach-orion5x/
980F: arch/arm/plat-orion/
981
Alexander Clouterd69ac132011-04-14 15:22:02 -0700982ARM/Orion SoC/Technologic Systems TS-78xx platform support
983M: Alexander Clouter <alex@digriz.org.uk>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985W: http://www.digriz.org.uk/ts78xx/kernel
986S: Maintained
987F: arch/arm/mach-orion5x/ts78xx-*
988
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000989ARM/MICREL KS8695 ARCHITECTURE
990M: Greg Ungerer <gerg@uclinux.org>
991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992F: arch/arm/mach-ks8695
993S: Odd Fixes
994
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200995ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700996M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200998F: arch/arm/mach-pxa/mioa701.c
999S: Maintained
1000
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001001ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001003S: Maintained
1004
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001005ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001006M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001007M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001008M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1009L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010S: Maintained
1011F: arch/arm/mach-nomadik/
1012F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001013F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001014T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001015
Andy Green9d762952009-05-19 06:41:42 -03001016ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001018L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1019W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1020S: Supported
1021
Daniel Walker0c19d212009-12-07 16:53:51 -08001022ARM/QUALCOMM MSM MACHINE SUPPORT
1023M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001024M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001025M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001026L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001027F: arch/arm/mach-msm/
1028F: drivers/video/msm/
1029F: drivers/mmc/host/msm_sdcc.c
1030F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001031F: drivers/tty/serial/msm_serial.h
1032F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001033F: drivers/*/pm8???-*
1034F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001035T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001036S: Maintained
1037
Dirk Opfer8459c152005-11-06 14:27:52 +00001038ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1040M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001041S: Maintained
1042
Marek Vasut5d783a22009-07-16 13:26:48 +02001043ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001044M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001045L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001046W: http://hackndev.com
1047S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001048F: arch/arm/mach-pxa/include/mach/palmtx.h
1049F: arch/arm/mach-pxa/palmtx.c
1050F: arch/arm/mach-pxa/include/mach/palmt5.h
1051F: arch/arm/mach-pxa/palmt5.c
1052F: arch/arm/mach-pxa/include/mach/palmld.h
1053F: arch/arm/mach-pxa/palmld.c
1054F: arch/arm/mach-pxa/include/mach/palmte2.h
1055F: arch/arm/mach-pxa/palmte2.c
1056F: arch/arm/mach-pxa/include/mach/palmtc.h
1057F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001058
Joe Perchesb57fe922009-12-14 18:00:52 -08001059ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001061L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001062W: http://hackndev.com
1063S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001064F: arch/arm/mach-pxa/include/mach/palmtreo.h
1065F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001066
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001067ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001069L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001070W: http://hackndev.com
1071S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001072F: arch/arm/mach-pxa/include/mach/palmz72.h
1073F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001076M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1078S: Maintained
1079
1080ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001082L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083W: http://www.arm.linux.org.uk/
1084S: Maintained
1085
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001086ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001087M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001088L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089S: Maintained
1090
Russell Kingd4275352009-04-16 14:05:27 +01001091ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001093L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001094W: http://www.arm.linux.org.uk/
1095S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001096F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1097F: arch/arm/include/asm/hardware/ioc.h
1098F: arch/arm/include/asm/hardware/iomd.h
1099F: arch/arm/include/asm/hardware/memc.h
1100F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001101F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001102F: drivers/net/ethernet/i825xx/ether1*
1103F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001104F: drivers/scsi/arm/
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108W: http://www.shark-linux.de/shark.html
1109S: Maintained
1110
Ben Dooksb21477f2009-06-13 10:46:34 +01001111ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001112M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001116W: http://www.fluff.org/ben/linux/
1117S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001118F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001119F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001120F: arch/arm/mach-s3c24*/
1121F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001122F: drivers/*/*s3c2410*
1123F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001124F: drivers/spi/spi-s3c*
1125F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001127ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001128M: Kukjin Kim <kgene.kim@samsung.com>
1129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1131S: Maintained
1132F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001133F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001134
Kyungmin Park10ffa962011-03-04 17:36:26 -08001135ARM/SAMSUNG MOBILE MACHINE SUPPORT
1136M: Kyungmin Park <kyungmin.park@samsung.com>
1137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S: Maintained
1139F: arch/arm/mach-s5pv210/mach-aquila.c
1140F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001141F: arch/arm/mach-exynos/mach-universal_c210.c
1142F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001143
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001144ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1145M: Kyungmin Park <kyungmin.park@samsung.com>
1146M: Kamil Debski <k.debski@samsung.com>
1147L: linux-arm-kernel@lists.infradead.org
1148L: linux-media@vger.kernel.org
1149S: Maintained
1150F: drivers/media/platform/s5p-g2d/
1151
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001152ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1153M: Kyungmin Park <kyungmin.park@samsung.com>
1154M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1155L: linux-arm-kernel@lists.infradead.org
1156L: linux-media@vger.kernel.org
1157S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001158F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001159F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001160
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001161ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1162M: Kyungmin Park <kyungmin.park@samsung.com>
1163M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001164M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001165L: linux-arm-kernel@lists.infradead.org
1166L: linux-media@vger.kernel.org
1167S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001168F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001169F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001170
1171ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1172M: Kyungmin Park <kyungmin.park@samsung.com>
1173M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1174L: linux-arm-kernel@lists.infradead.org
1175L: linux-media@vger.kernel.org
1176S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001177F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001178
Paul Mundtd48d38e2010-02-08 12:50:24 +09001179ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001180M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001181M: Magnus Damm <magnus.damm@gmail.com>
1182L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001184Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001185T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186S: Supported
1187F: arch/arm/mach-shmobile/
1188F: drivers/sh/
1189
Dinh Nguyen66314222012-07-18 16:07:18 -06001190ARM/SOCFPGA ARCHITECTURE
1191M: Dinh Nguyen <dinguyen@altera.com>
1192S: Maintained
1193F: arch/arm/mach-socfpga/
1194
1195ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1196M: Dinh Nguyen <dinguyen@altera.com>
1197S: Maintained
1198F: drivers/clk/socfpga/
1199
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001200ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001203S: Maintained
1204
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001205ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001206M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208S: Maintained
1209
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001211M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213S: Maintained
1214
wanzongshun98ad6e32009-02-13 06:04:32 +01001215ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001216M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001218W: http://www.mcuos.com
1219S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001220F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001221F: drivers/input/keyboard/w90p910_keypad.c
1222F: drivers/input/touchscreen/w90p910_ts.c
1223F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001224F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001225F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001226F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001227F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001228F: drivers/usb/host/ehci-w90x900.c
1229F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001230
Linus Walleij54274d72010-04-04 10:58:03 +01001231ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001232M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S: Supported
1235F: arch/arm/mach-u300/
1236F: drivers/i2c/busses/i2c-stu300.c
1237F: drivers/rtc/rtc-coh901331.c
1238F: drivers/watchdog/coh901327_wdt.c
1239F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001240F: drivers/mfd/ab3100*
1241F: drivers/rtc/rtc-ab3100.c
1242F: drivers/rtc/rtc-coh901331.c
1243T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001244
Linus Walleij87572882010-12-22 09:18:29 +01001245ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001246M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001247M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001251F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001252F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001253F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001254F: drivers/mfd/abx500*
1255F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/mfd/dbx500*
1257F: drivers/mfd/db8500*
1258F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001259F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001260F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001261T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001262
Russell Kingd4275352009-04-16 14:05:27 +01001263ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001264M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001265L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001266W: http://www.arm.linux.org.uk/
1267S: Maintained
1268F: arch/arm/vfp/
1269
Marek Vasute66b6d82010-03-26 06:51:32 +01001270ARM/VOIPAC PXA270 SUPPORT
1271M: Marek Vasut <marek.vasut@gmail.com>
1272L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273S: Maintained
1274F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001275F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001276
Tony Prisk04529fe2012-07-24 04:19:37 +12001277ARM/VT8500 ARM ARCHITECTURE
1278M: Tony Prisk <linux@prisktech.co.nz>
1279L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280S: Maintained
1281F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001282F: drivers/clocksource/vt8500_timer.c
1283F: drivers/gpio/gpio-vt8500.c
1284F: drivers/mmc/host/wmt-sdmmc.c
1285F: drivers/pwm/pwm-vt8500.c
1286F: drivers/rtc/rtc-vt8500.c
1287F: drivers/tty/serial/vt8500_serial.c
1288F: drivers/usb/host/ehci-vt8500.c
1289F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001290F: drivers/video/vt8500lcdfb.*
1291F: drivers/video/wm8505fb*
1292F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001293
Marek Vasute66b6d82010-03-26 06:51:32 +01001294ARM/ZIPIT Z2 SUPPORT
1295M: Marek Vasut <marek.vasut@gmail.com>
1296L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297S: Maintained
1298F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001299F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001300
Michal Simek51f29d42013-01-21 17:41:46 +01001301ARM/ZYNQ ARCHITECTURE
1302M: Michal Simek <michal.simek@xilinx.com>
1303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304W: http://wiki.xilinx.com
1305T: git git://git.xilinx.com/linux-xlnx.git
1306S: Supported
1307F: arch/arm/mach-zynq/
1308
Catalin Marinas38074222012-03-05 11:49:34 +00001309ARM64 PORT (AARCH64 ARCHITECTURE)
1310M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001311M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001312L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313S: Maintained
1314F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001315F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001316
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001317AS3645A LED FLASH CONTROLLER DRIVER
1318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1319L: linux-media@vger.kernel.org
1320T: git git://linuxtv.org/media_tree.git
1321S: Maintained
1322F: drivers/media/i2c/as3645a.c
1323F: include/media/as3645a.h
1324
George Josephd58de032010-03-05 22:17:25 +01001325ASC7621 HARDWARE MONITOR DRIVER
1326M: George Joseph <george.joseph@fairview5.com>
1327L: lm-sensors@lm-sensors.org
1328S: Maintained
1329F: Documentation/hwmon/asc7621
1330F: drivers/hwmon/asc7621.c
1331
Corentin Charyb229ece2011-02-26 10:20:40 +01001332ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001333M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001335L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001336W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001338F: drivers/platform/x86/asus*.c
1339F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Andrew Morton953a6472008-11-06 12:53:28 -08001341ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001342M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001343W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001345F: Documentation/crypto/async-tx-api.txt
1346F: crypto/async_tx/
1347F: drivers/dma/
1348F: include/linux/dmaengine.h
1349F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001350
Wolfram Sanga1867d32009-09-18 22:45:51 +02001351AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001352M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001353L: linux-i2c@vger.kernel.org
1354S: Maintained
1355F: drivers/misc/eeprom/at24.c
1356F: include/linux/i2c/at24.h
1357
Randy Dunlape7839f22008-10-12 16:11:45 -07001358ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001360W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: Documentation/aoe/
1363F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Joe Perches9a10a872010-12-01 09:37:55 -08001365ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001366M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001367L: linux-wireless@vger.kernel.org
1368S: Supported
1369F: drivers/net/wireless/ath/*
1370
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001371ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Jiri Slaby <jirislaby@gmail.com>
1373M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001374M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001375L: linux-wireless@vger.kernel.org
1376L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001377W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001378S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001379F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001380
Kalle Valo12e62d62011-09-13 10:21:25 +03001381ATHEROS ATH6KL WIRELESS DRIVER
1382M: Kalle Valo <kvalo@qca.qualcomm.com>
1383L: linux-wireless@vger.kernel.org
1384W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1385T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1386S: Supported
1387F: drivers/net/wireless/ath/ath6kl/
1388
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001390M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1391M: Jouni Malinen <jouni@qca.qualcomm.com>
1392M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1393M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394L: linux-wireless@vger.kernel.org
1395L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001396W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001398F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001400WILOCITY WIL6210 WIRELESS DRIVER
1401M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1402L: linux-wireless@vger.kernel.org
1403L: wil6210@qca.qualcomm.com
1404S: Supported
1405W: http://wireless.kernel.org/en/users/Drivers/wil6210
1406F: drivers/net/wireless/ath/wil6210/
1407
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001408CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1409M: Christian Lamparter <chunkeey@googlemail.com>
1410L: linux-wireless@vger.kernel.org
1411W: http://wireless.kernel.org/en/users/Drivers/carl9170
1412S: Maintained
1413F: drivers/net/wireless/ath/carl9170/
1414
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001415ATK0110 HWMON DRIVER
1416M: Luca Tettamanti <kronos.it@gmail.com>
1417L: lm-sensors@lm-sensors.org
1418S: Maintained
1419F: drivers/hwmon/asus_atk0110.c
1420
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001421ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001422M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001425
Chris Snook7ae115b2008-09-09 03:26:57 -04001426ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001428M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001429L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001430W: http://sourceforge.net/projects/atl1
1431W: http://atl1.sourceforge.net
1432S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001433F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001436M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001437L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001438L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439W: http://linux-atm.sourceforge.net
1440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/atm/
1442F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001443F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001445ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001446M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001447S: Maintained
1448F: drivers/mmc/host/atmel-mci.c
1449F: drivers/mmc/host/atmel-mci-regs.h
1450
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001451ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001452M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001453S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001454F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001455
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001456ATMEL DMA DRIVER
1457M: Nicolas Ferre <nicolas.ferre@atmel.com>
1458L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459S: Supported
1460F: drivers/dma/at_hdmac.c
1461F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001462F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001463
Ludovic Desroches888f2802013-03-15 05:32:57 +00001464ATMEL I2C DRIVER
1465M: Ludovic Desroches <ludovic.desroches@atmel.com>
1466L: linux-i2c@vger.kernel.org
1467S: Supported
1468F: drivers/i2c/busses/i2c-at91.c
1469
Josh Wu15515542012-03-23 17:56:29 +08001470ATMEL ISI DRIVER
1471M: Josh Wu <josh.wu@atmel.com>
1472L: linux-media@vger.kernel.org
1473S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001474F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001475F: include/media/atmel-isi.h
1476
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001477ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001479L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/video/atmel_lcdfb.c
1482F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001483
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001484ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001485M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001486S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001487F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001488
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001489ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001490M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001491S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001492F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001494ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1495M: Nicolas Ferre <nicolas.ferre@atmel.com>
1496L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497S: Supported
1498F: drivers/misc/atmel_tclib.c
1499F: drivers/clocksource/tcb_clksrc.c
1500
Josh Wuff2675d2012-03-23 17:56:55 +08001501ATMEL TSADCC DRIVER
1502M: Josh Wu <josh.wu@atmel.com>
1503L: linux-input@vger.kernel.org
1504S: Supported
1505F: drivers/input/touchscreen/atmel_tsadcc.c
1506
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001507ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001508M: Nicolas Ferre <nicolas.ferre@atmel.com>
1509L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001514M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001515L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516W: http://www.thekelleys.org.uk/atmel
1517W: http://atmelwlandriver.sourceforge.net/
1518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Chris Wrighta92b7b82005-07-07 18:12:23 -07001521AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001522M: Al Viro <viro@zeniv.linux.org.uk>
1523M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001524L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001525W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001526T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001529F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001530F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001532AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001534W: http://miguelojeda.es/auxdisplay.htm
1535W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001537F: drivers/auxdisplay/
1538F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001539
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001540AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001541M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1542M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001543W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001544W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001545W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001547F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548
1549AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1551M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001553F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001556M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001558W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001560F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001561F: include/net/ax25.h
1562F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001564AZ6007 DVB DRIVER
1565M: Mauro Carvalho Chehab <mchehab@redhat.com>
1566L: linux-media@vger.kernel.org
1567W: http://linuxtv.org
1568T: git git://linuxtv.org/media_tree.git
1569S: Maintained
1570F: drivers/media/usb/dvb-usb-v2/az6007.c
1571
Hans Verkuil67773762012-11-23 07:09:23 -03001572AZTECH FM RADIO RECEIVER DRIVER
1573M: Hans Verkuil <hverkuil@xs4all.nl>
1574L: linux-media@vger.kernel.org
1575T: git git://linuxtv.org/media_tree.git
1576W: http://linuxtv.org
1577S: Maintained
1578F: drivers/media/radio/radio-aztech*
1579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001581M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001583L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001584W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587
1588B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Larry Finger <Larry.Finger@lwfinger.net>
1590M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001592L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001593W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001596
Richard Purdie300abeb2007-02-07 22:21:07 +00001597BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/video/backlight/
1601F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001602
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001603BATMAN ADVANCED
1604M: Marek Lindner <lindner_marek@yahoo.de>
1605M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001606M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607L: b.a.t.m.a.n@lists.open-mesh.org
1608W: http://www.open-mesh.org/
1609S: Maintained
1610F: net/batman-adv/
1611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001612BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614L: linux-hams@vger.kernel.org
1615W: http://www.baycom.org/~tom/ham/ham.html
1616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618
1619BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001620S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001621F: Documentation/filesystems/befs.txt
1622F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623
1624BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: Documentation/filesystems/bfs.txt
1628F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001629F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630
Bryan Wu1394f032007-05-06 14:50:22 -07001631BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001633L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001634W: http://blackfin.uclinux.org
1635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001636F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001637
Bryan Wue190d6b2007-07-17 14:43:44 +08001638BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001639L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001640W: http://blackfin.uclinux.org
1641S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001642F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001643
Mike Frysinger566da5b2007-06-11 15:31:30 +08001644BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001646L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001647W: http://blackfin.uclinux.org
1648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001649F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001650
Mike Frysinger936ed492010-03-10 15:20:38 -08001651BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001652M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001653L: uclinux-dist-devel@blackfin.uclinux.org
1654W: http://blackfin.uclinux.org
1655S: Supported
1656F: drivers/mmc/host/bfin_sdh.c
1657
Bryan Wu1394f032007-05-06 14:50:22 -07001658BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001660L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001661W: http://blackfin.uclinux.org
1662S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001663F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001664
Bryan Wu1e6d3202007-07-15 02:50:02 +08001665BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001666M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001667L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001668W: http://blackfin.uclinux.org
1669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001670F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001671
Bryan Wud24ecfc2007-05-01 23:26:32 +02001672BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001674L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001675W: http://blackfin.uclinux.org/
1676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001677F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001678
Scott Jiang1e204372013-01-18 17:09:47 -03001679BLACKFIN MEDIA DRIVER
1680M: Scott Jiang <scott.jiang.linux@gmail.com>
1681L: uclinux-dist-devel@blackfin.uclinux.org
1682W: http://blackfin.uclinux.org/
1683S: Supported
1684F: drivers/media/platform/blackfin/
1685F: drivers/media/i2c/adv7183*
1686F: drivers/media/i2c/vs6624*
1687
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001688BLINKM RGB LED DRIVER
1689M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1690S: Maintained
1691F: drivers/leds/leds-blinkm.c
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001694M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001695T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001697F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Joern Engel2b54aae2008-02-06 01:38:02 -08001699BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001700M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001701L: linux-mtd@lists.infradead.org
1702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001703F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001704
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001705BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001707M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001708M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001709L: linux-bluetooth@vger.kernel.org
1710W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001711T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1712T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001720L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: net/bluetooth/
1726F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001729M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001730M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001731L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001732W: http://sourceforge.net/projects/bonding/
1733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001734F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001735F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Gary Zambrano39105892006-06-22 17:26:20 -07001737BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001738M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001739L: netdev@vger.kernel.org
1740S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001741F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001742
Michael Chan948c51e2006-06-04 02:51:39 -07001743BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001744M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001745L: netdev@vger.kernel.org
1746S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001747F: drivers/net/ethernet/broadcom/bnx2.*
1748F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001749
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001750BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001752L: netdev@vger.kernel.org
1753S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001754F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755
Stephen Warrenf680f252012-09-15 00:18:54 -06001756BROADCOM BCM2835 ARM ARCHICTURE
1757M: Stephen Warren <swarren@wwwdotorg.org>
1758L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1759T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1760S: Maintained
1761F: arch/arm/mach-bcm2835/
1762F: arch/arm/boot/dts/bcm2835*
1763F: arch/arm/configs/bcm2835_defconfig
1764F: drivers/*/*bcm2835*
1765
Michael Chan948c51e2006-06-04 02:51:39 -07001766BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Matt Carlson <mcarlson@broadcom.com>
1768M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001769L: netdev@vger.kernel.org
1770S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001771F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001772
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001773BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1774M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001775M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001776M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001777M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001778L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001779L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001780S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001781F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001782
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001783BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1784M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1785L: linux-scsi@vger.kernel.org
1786S: Supported
1787F: drivers/scsi/bnx2fc/
1788
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001789BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1790M: Rafał Miłecki <zajec5@gmail.com>
1791L: linux-wireless@vger.kernel.org
1792S: Maintained
1793F: drivers/bcma/
1794F: include/linux/bcma/
1795
Jing Huang7725ccf2009-09-23 17:46:15 -07001796BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001797M: Anil Gurumurthy <agurumur@brocade.com>
1798M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001799L: linux-scsi@vger.kernel.org
1800S: Supported
1801F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001802
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001803BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1804M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001805L: netdev@vger.kernel.org
1806S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001807F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001809BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001811L: linux-scsi@vger.kernel.org
1812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001813F: block/bsg.c
1814F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001815F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001816
Clemens Ladischaf399172011-01-10 16:32:54 +01001817BT87X AUDIO DRIVER
1818M: Clemens Ladisch <clemens@ladisch.de>
1819L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1820T: git git://git.alsa-project.org/alsa-kernel.git
1821S: Maintained
1822F: Documentation/sound/alsa/Bt87x.txt
1823F: sound/pci/bt87x.c
1824
Michael Bueschff1d5c22008-07-25 01:46:10 -07001825BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001826M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001827W: http://bu3sch.de/btgpio.php
1828S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001829F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830
Joe Percheseb1eb042009-01-21 10:49:16 -05001831BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001832M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001833L: linux-btrfs@vger.kernel.org
1834W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001835Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001836T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/filesystems/btrfs.txt
1839F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001842M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001843L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001844W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001845T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001846S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001848F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Clemens Ladischaf399172011-01-10 16:32:54 +01001850C-MEDIA CMI8788 DRIVER
1851M: Clemens Ladisch <clemens@ladisch.de>
1852L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1853T: git git://git.alsa-project.org/alsa-kernel.git
1854S: Maintained
1855F: sound/pci/oxygen/
1856
Mark Salter21413552011-10-04 11:21:42 -04001857C6X ARCHITECTURE
1858M: Mark Salter <msalter@redhat.com>
1859M: Aurelien Jacquiot <a-jacquiot@ti.com>
1860L: linux-c6x-dev@linux-c6x.org
1861W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1862S: Maintained
1863F: arch/c6x/
1864
David Howellsa5432f52009-04-20 15:46:45 +01001865CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001867L: linux-cachefs@redhat.com
1868S: Supported
1869F: Documentation/filesystems/caching/cachefiles.txt
1870F: fs/cachefiles/
1871
Hans Verkuilc815ca32012-11-23 07:05:54 -03001872CADET FM/AM RADIO RECEIVER DRIVER
1873M: Hans Verkuil <hverkuil@xs4all.nl>
1874L: linux-media@vger.kernel.org
1875T: git git://linuxtv.org/media_tree.git
1876W: http://linuxtv.org
1877S: Maintained
1878F: drivers/media/radio/radio-cadet*
1879
Jonathan Corbet77d51402007-03-22 19:44:17 -03001880CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001883T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001885F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001886F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001887
Joe Perches201b6ba2010-09-07 20:33:24 +00001888CAIF NETWORK LAYER
1889M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1890L: netdev@vger.kernel.org
1891S: Supported
1892F: Documentation/networking/caif/
1893F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001894F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001895F: include/net/caif/
1896F: net/caif/
1897
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001898CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001899M: Muli Ben-Yehuda <muli@il.ibm.com>
1900M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001901L: discuss@x86-64.org
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: arch/x86/kernel/pci-calgary_64.c
1904F: arch/x86/kernel/tce_64.c
1905F: arch/x86/include/asm/calgary.h
1906F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001907
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001908CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001909M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001910L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001911W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001912T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001913S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001914F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001915F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001916F: include/uapi/linux/can.h
1917F: include/uapi/linux/can/bcm.h
1918F: include/uapi/linux/can/raw.h
1919F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001920
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001921CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001923M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001924L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001925W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001926T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001927S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001928F: drivers/net/can/
1929F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001930F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001931F: include/uapi/linux/can/error.h
1932F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001933
James Morris95d16c72012-03-16 12:05:48 +11001934CAPABILITIES
1935M: Serge Hallyn <serge.hallyn@canonical.com>
1936L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001937S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001938F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001939F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001940F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001941F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001942F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001943
Arnd Bergmannb8154542008-05-16 11:10:59 +02001944CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001946L: linuxppc-dev@lists.ozlabs.org
1947L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001948W: http://www.ibm.com/developerworks/power/cell/
1949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001950F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001951F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001952F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001953F: arch/powerpc/oprofile/*cell*
1954F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955
Sage Weil9030aaf2009-10-06 11:31:15 -07001956CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001957M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001958L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001959W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001960T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001961S: Supported
1962F: Documentation/filesystems/ceph.txt
1963F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001964F: net/ceph
1965F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001966F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001967
David Vrabel18332a82008-09-17 16:34:44 +01001968CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001969L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001970S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001971F: Documentation/usb/WUSB-Design-overview.txt
1972F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001973F: drivers/usb/host/hwa-hc.c
1974F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001975F: drivers/usb/wusbcore/
1976F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001977
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001978CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001980W: http://miguelojeda.es/auxdisplay.htm
1981W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/auxdisplay/cfag12864b.c
1984F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985
1986CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001987M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001988W: http://miguelojeda.es/auxdisplay.htm
1989W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001991F: drivers/auxdisplay/cfag12864bfb.c
1992F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993
Johannes Berg704232c2007-04-23 12:20:05 -07001994CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001995M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001996L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001997W: http://wireless.kernel.org/
1998T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1999T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002000S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002001F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002002F: include/net/cfg80211.h
2003F: net/wireless/*
2004X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002005
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002006CHAR and MISC DRIVERS
2007M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002008M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002009T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002010S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002011F: drivers/char/*
2012F: drivers/misc/*
2013
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002014CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002016M: Joe Perches <joe@perches.com>
2017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002019
Harry Weif8407f262011-02-25 14:44:15 -08002020CHINESE DOCUMENTATION
2021M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002022L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002023L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2024S: Maintained
2025F: Documentation/zh_CN/
2026
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002027CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2028M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2029L: linux-usb@vger.kernel.org
2030S: Maintained
2031F: drivers/usb/chipidea/
2032
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002033CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002034M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002035M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002036M: Neel Patel <neepatel@cisco.com>
2037M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002038S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002039F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002040
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002041CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002042M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002043L: netdev@vger.kernel.org
2044S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002045F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002047CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002049L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052
Timur Tabid9e9d822008-04-24 08:45:26 +10002053CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002054M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002055L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002056S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002057F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002058
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002059CLEANCACHE API
2060M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2061L: linux-kernel@vger.kernel.org
2062S: Maintained
2063F: mm/cleancache.c
2064F: include/linux/cleancache.h
2065
Russell Kingd4275352009-04-16 14:05:27 +01002066CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002068S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002069F: include/linux/clk.h
2070
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002071CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002072M: Hiral Patel <hiralpat@cisco.com>
2073M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002074M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002075L: linux-scsi@vger.kernel.org
2076S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002077F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002078
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002079CMPC ACPI DRIVER
2080M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2081M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002082L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002083S: Supported
2084F: drivers/platform/x86/classmate-laptop.c
2085
Nicolas Palix74425ee2010-06-06 17:15:01 +02002086COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002087M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002088M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002089M: Nicolas Palix <nicolas.palix@imag.fr>
2090L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091W: http://coccinelle.lip6.fr/
2092S: Supported
2093F: scripts/coccinelle/
2094F: scripts/coccicheck
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002097M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098M: coda@cs.cmu.edu
2099L: codalist@coda.cs.cmu.edu
2100W: http://www.coda.cs.cmu.edu/
2101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: Documentation/filesystems/coda.txt
2103F: fs/coda/
2104F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002105F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Mike Turquette7704add2012-05-02 18:37:45 -07002107COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002108M: Mike Turquette <mturquette@linaro.org>
2109L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2110T: git git://git.linaro.org/people/mturquette/linux.git
2111S: Maintained
2112F: drivers/clk/clk.c
2113F: drivers/clk/clk-*
2114F: include/linux/clk-pr*
2115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002116COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002118L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002119L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002120W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002121Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002122T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002124F: Documentation/filesystems/cifs.txt
2125F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002129L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002134M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002135L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002141L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002143F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002145COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002147L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002150
Simon Arlott949be0f2007-03-06 02:47:46 -08002151CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002152M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002153L: accessrunner-general@lists.sourceforge.net
2154W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002158CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002159M: Joel Becker <jlbec@evilplan.org>
2160T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002162F: fs/configfs/
2163F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002165CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002167L: netdev@vger.kernel.org
2168S: Maintained
2169F: drivers/connector/
2170
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002171CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002172M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002173M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002174L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002175L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002176T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: include/linux/cgroup*
2179F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002180F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002181
Rudolf Marekbebe4672007-05-08 17:22:02 +02002182CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002183M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002184L: lm-sensors@lm-sensors.org
2185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/hwmon/coretemp
2187F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002190M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191W: http://www.fi.muni.cz/~kas/cosa/
2192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002193F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Florian Fainelli4371ee32009-06-01 02:43:17 -07002195CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002196M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002197L: netdev@vger.kernel.org
2198S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002199F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002202M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002203L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002204L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/cpufreq/
2207F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: arch/x86/kernel/cpuid.c
2213F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002215CPU POWER MONITORING SUBSYSTEM
2216M: Dominik Brodowski <linux@dominikbrodowski.net>
2217M: Thomas Renninger <trenn@suse.de>
2218S: Maintained
2219F: tools/power/cpupower
2220
Paul Jacksoned90fb42005-09-27 21:45:37 -07002221CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002222M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002223W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002224W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: Documentation/cgroups/cpusets.txt
2227F: include/linux/cpuset.h
2228F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002231W: http://sourceforge.net/projects/cramfs/
2232S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002233F: Documentation/filesystems/cramfs.txt
2234F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Mikael Starvik <starvik@axis.com>
2238M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002239L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://developer.axis.com
2241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002243F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Herbert Xu <herbert@gondor.apana.org.au>
2247M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002249T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: Documentation/crypto/
2252F: arch/*/crypto/
2253F: crypto/
2254F: drivers/crypto/
2255F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Neil Horman5b07bd52009-02-05 16:03:04 +11002257CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002259L: linux-crypto@vger.kernel.org
2260S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002261F: crypto/ansi_cprng.c
2262F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002263
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002264CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002268
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002269CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002270M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002271L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002272L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002273T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002274W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002275W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002278F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002279F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002280
Hans Verkuil3f101d92012-11-23 07:00:02 -03002281CX2341X MPEG ENCODER HELPER MODULE
2282M: Hans Verkuil <hverkuil@xs4all.nl>
2283L: linux-media@vger.kernel.org
2284T: git git://linuxtv.org/media_tree.git
2285W: http://linuxtv.org
2286S: Maintained
2287F: drivers/media/i2c/cx2341x*
2288F: include/media/cx2341x*
2289
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002290CX88 VIDEO4LINUX DRIVER
2291M: Mauro Carvalho Chehab <mchehab@redhat.com>
2292L: linux-media@vger.kernel.org
2293W: http://linuxtv.org
2294T: git git://linuxtv.org/media_tree.git
2295S: Odd fixes
2296F: Documentation/video4linux/cx88/
2297F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002298
Antti Palosaari91952bc2012-10-01 12:28:46 -03002299CXD2820R MEDIA DRIVER
2300M: Antti Palosaari <crope@iki.fi>
2301L: linux-media@vger.kernel.org
2302W: http://linuxtv.org/
2303W: http://palosaari.fi/linux/
2304Q: http://patchwork.linuxtv.org/project/linux-media/list/
2305T: git git://linuxtv.org/anttip/media_tree.git
2306S: Maintained
2307F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002308
Steve Wisee5ec3782008-05-20 14:06:33 -07002309CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002311L: netdev@vger.kernel.org
2312W: http://www.chelsio.com
2313S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002314F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002315
2316CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002318L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002319W: http://www.openfabrics.org
2320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002322
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002323CXGB4 ETHERNET DRIVER (CXGB4)
2324M: Dimitris Michailidis <dm@chelsio.com>
2325L: netdev@vger.kernel.org
2326W: http://www.chelsio.com
2327S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002328F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002329
2330CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2331M: Steve Wise <swise@chelsio.com>
2332L: linux-rdma@vger.kernel.org
2333W: http://www.openfabrics.org
2334S: Supported
2335F: drivers/infiniband/hw/cxgb4/
2336
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002337CXGB4VF ETHERNET DRIVER (CXGB4VF)
2338M: Casey Leedom <leedom@chelsio.com>
2339L: netdev@vger.kernel.org
2340W: http://www.chelsio.com
2341S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002342F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002343
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002344STMMAC ETHERNET DRIVER
2345M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2346L: netdev@vger.kernel.org
2347W: http://www.stlinux.com
2348S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002349F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354W: http://www.arm.linux.org.uk/
2355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002360S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002361F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002362F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002363F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002368F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002370CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002371M: Javier Martinez Canillas <javier@dowhile0.org>
2372L: linux-input@vger.kernel.org
2373S: Maintained
2374F: drivers/input/touchscreen/cyttsp*
2375F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://yaina.de/jreuter/
2380W: http://www.qsl.net/dl1bke/
2381L: linux-hams@vger.kernel.org
2382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: net/ax25/af_ax25.c
2384F: net/ax25/ax25_dev.c
2385F: net/ax25/ax25_ds_*
2386F: net/ax25/ax25_in.c
2387F: net/ax25/ax25_out.c
2388F: net/ax25/ax25_timer.c
2389F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002391DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002392L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002393S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002394F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002395F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002396
2397DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002398M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002399W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002400M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002402F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002405M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Ali Akcaagac <aliakc@web.de>
2407M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002409L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410L: http://lists.twibble.org/mailman/listinfo/dc395x/
2411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: Documentation/scsi/dc395x.txt
2413F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002415DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002416M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002417L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002418W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002420F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002421F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002422F: include/linux/tfrc.h
2423F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426W: http://linux-decnet.sourceforge.net
2427L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002428S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/networking/decnet.txt
2430F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002433M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002435F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002437DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002438M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002439L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002441F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445W: http://www.debian.org/~dz/i8k/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002448F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Doug Warzecha90563ec2005-09-06 15:17:15 -07002450DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002453F: Documentation/dcdbas.txt
2454F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002455
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002456DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002457M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002458S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002459F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002460
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002461DESIGNWARE USB3 DRD IP DRIVER
2462M: Felipe Balbi <balbi@ti.com>
2463L: linux-usb@vger.kernel.org
2464L: linux-omap@vger.kernel.org
2465T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2466S: Maintained
2467F: drivers/usb/dwc3/
2468
Kyungmin Park89d07762012-01-10 15:09:09 -08002469DEVICE FREQUENCY (DEVFREQ)
2470M: MyungJoo Ham <myungjoo.ham@samsung.com>
2471M: Kyungmin Park <kyungmin.park@samsung.com>
2472L: linux-kernel@vger.kernel.org
2473S: Maintained
2474F: drivers/devfreq/
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002477M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479S: Maintained
2480
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002481DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002482M: Alasdair Kergon <agk@redhat.com>
2483M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002484L: dm-devel@redhat.com
2485W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002486Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002487T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002489F: Documentation/device-mapper/
2490F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002491F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002492F: include/linux/device-mapper.h
2493F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494
Guenter Roeck335d7c52011-01-26 11:45:49 -08002495DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002496M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002497L: linux-i2c@vger.kernel.org
2498S: Maintained
2499F: drivers/i2c/busses/i2c-diolan-u2c.c
2500
Randy Dunlape7839f22008-10-12 16:11:45 -07002501DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002502M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: Documentation/filesystems/dnotify.txt
2505F: fs/notify/dnotify/
2506F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002509M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2511W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2512W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2513S: Maintained
2514
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002515DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002518F: Documentation/filesystems/quota.txt
2519F: fs/quota/
2520F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002521F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Bernie Thompson702686a2012-03-01 13:52:13 -08002523DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2524M: Bernie Thompson <bernie@plugable.com>
2525L: linux-fbdev@vger.kernel.org
2526S: Maintained
2527W: http://plugable.com/category/projects/udlfb/
2528F: drivers/video/udlfb.c
2529F: include/video/udlfb.h
2530F: Documentation/fb/udlfb.txt
2531
Randy Dunlape7839f22008-10-12 16:11:45 -07002532DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Christine Caulfield <ccaulfie@redhat.com>
2534M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002535L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002536W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002537T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002539F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002540
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302541DMA BUFFER SHARING FRAMEWORK
2542M: Sumit Semwal <sumit.semwal@linaro.org>
2543S: Maintained
2544L: linux-media@vger.kernel.org
2545L: dri-devel@lists.freedesktop.org
2546L: linaro-mm-sig@lists.linaro.org
2547F: drivers/base/dma-buf*
2548F: include/linux/dma-buf*
2549F: Documentation/dma-buf-sharing.txt
2550T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2551
Dan Williamsb3e5f262007-08-07 10:26:35 -07002552DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002553M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002554M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002555S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/dma/
2557F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302558T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2559T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002560
Juerg Haefligerb8250372007-06-09 10:11:16 -04002561DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002562M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002563L: lm-sensors@lm-sensors.org
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/hwmon/dme1737
2566F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002567
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002568DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002569M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002570L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002572F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002573
Joe Perches7d2c86b2009-04-07 20:59:01 -07002574DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002575M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002576L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002577T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002579F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002582M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583L: blinux-list@redhat.com
2584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002585F: drivers/char/dtlk.c
2586F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002588DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002589M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002590L: linux-scsi@vger.kernel.org
2591W: http://www.adaptec.com/
2592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002593F: drivers/scsi/dpt*
2594F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002595
Philipp Reisnerb411b362009-09-25 16:07:19 -07002596DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002597P: Philipp Reisner
2598P: Lars Ellenberg
2599M: drbd-dev@lists.linbit.com
2600L: drbd-user@lists.linbit.com
2601W: http://www.drbd.org
2602T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2603T: git git://git.drbd.org/drbd-8.3.git
2604S: Supported
2605F: drivers/block/drbd/
2606F: lib/lru_cache.c
2607F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002608
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002609DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002610M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002611T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002613F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002614F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002615F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002616F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002617F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002618F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002619F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002622M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002623L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002624T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002626F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002627F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002628F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Chris Wilson8daf7472010-09-28 14:07:26 +01002630INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002631M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002632L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002633L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002634T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002635S: Supported
2636F: drivers/gpu/drm/i915
2637F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002638F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002639
Kyungmin Park398a6d42011-11-02 11:33:16 +09002640DRM DRIVERS FOR EXYNOS
2641M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002642M: Joonyoung Shim <jy0922.shim@samsung.com>
2643M: Seung-Woo Kim <sw0312.kim@samsung.com>
2644M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002645L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002646T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002647S: Supported
2648F: drivers/gpu/drm/exynos
2649F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002650F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002651
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002652DRM DRIVERS FOR NVIDIA TEGRA
2653M: Thierry Reding <thierry.reding@avionic-design.de>
2654L: dri-devel@lists.freedesktop.org
2655L: linux-tegra@vger.kernel.org
2656T: git git://gitorious.org/thierryreding/linux.git
2657S: Maintained
2658F: drivers/gpu/drm/tegra/
2659F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2660
Alexey Klimov598df1a2012-11-28 17:16:32 -03002661DSBR100 USB FM RADIO DRIVER
2662M: Alexey Klimov <klimov.linux@gmail.com>
2663L: linux-media@vger.kernel.org
2664T: git git://linuxtv.org/media_tree.git
2665S: Maintained
2666F: drivers/media/radio/dsbr100.c
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002669M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002670L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002672F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Antti Palosaari91952bc2012-10-01 12:28:46 -03002674DVB_USB_AF9015 MEDIA DRIVER
2675M: Antti Palosaari <crope@iki.fi>
2676L: linux-media@vger.kernel.org
2677W: http://linuxtv.org/
2678W: http://palosaari.fi/linux/
2679Q: http://patchwork.linuxtv.org/project/linux-media/list/
2680T: git git://linuxtv.org/anttip/media_tree.git
2681S: Maintained
2682F: drivers/media/usb/dvb-usb-v2/af9015*
2683
2684DVB_USB_AF9035 MEDIA DRIVER
2685M: Antti Palosaari <crope@iki.fi>
2686L: linux-media@vger.kernel.org
2687W: http://linuxtv.org/
2688W: http://palosaari.fi/linux/
2689Q: http://patchwork.linuxtv.org/project/linux-media/list/
2690T: git git://linuxtv.org/anttip/media_tree.git
2691S: Maintained
2692F: drivers/media/usb/dvb-usb-v2/af9035*
2693
2694DVB_USB_ANYSEE MEDIA DRIVER
2695M: Antti Palosaari <crope@iki.fi>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://palosaari.fi/linux/
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/anttip/media_tree.git
2701S: Maintained
2702F: drivers/media/usb/dvb-usb-v2/anysee*
2703
2704DVB_USB_AU6610 MEDIA DRIVER
2705M: Antti Palosaari <crope@iki.fi>
2706L: linux-media@vger.kernel.org
2707W: http://linuxtv.org/
2708W: http://palosaari.fi/linux/
2709Q: http://patchwork.linuxtv.org/project/linux-media/list/
2710T: git git://linuxtv.org/anttip/media_tree.git
2711S: Maintained
2712F: drivers/media/usb/dvb-usb-v2/au6610*
2713
2714DVB_USB_CE6230 MEDIA DRIVER
2715M: Antti Palosaari <crope@iki.fi>
2716L: linux-media@vger.kernel.org
2717W: http://linuxtv.org/
2718W: http://palosaari.fi/linux/
2719Q: http://patchwork.linuxtv.org/project/linux-media/list/
2720T: git git://linuxtv.org/anttip/media_tree.git
2721S: Maintained
2722F: drivers/media/usb/dvb-usb-v2/ce6230*
2723
Michael Krufkyd099dea2012-10-02 00:56:20 -03002724DVB_USB_CXUSB MEDIA DRIVER
2725M: Michael Krufky <mkrufky@linuxtv.org>
2726L: linux-media@vger.kernel.org
2727W: http://linuxtv.org/
2728W: http://github.com/mkrufky
2729Q: http://patchwork.linuxtv.org/project/linux-media/list/
2730T: git git://linuxtv.org/media_tree.git
2731S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002732F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002733
Antti Palosaari91952bc2012-10-01 12:28:46 -03002734DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2735M: Antti Palosaari <crope@iki.fi>
2736L: linux-media@vger.kernel.org
2737W: http://linuxtv.org/
2738W: http://palosaari.fi/linux/
2739Q: http://patchwork.linuxtv.org/project/linux-media/list/
2740T: git git://linuxtv.org/anttip/media_tree.git
2741S: Maintained
2742F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2743
2744DVB_USB_EC168 MEDIA DRIVER
2745M: Antti Palosaari <crope@iki.fi>
2746L: linux-media@vger.kernel.org
2747W: http://linuxtv.org/
2748W: http://palosaari.fi/linux/
2749Q: http://patchwork.linuxtv.org/project/linux-media/list/
2750T: git git://linuxtv.org/anttip/media_tree.git
2751S: Maintained
2752F: drivers/media/usb/dvb-usb-v2/ec168*
2753
Michael Krufky8856f5f2012-10-02 00:55:50 -03002754DVB_USB_MXL111SF MEDIA DRIVER
2755M: Michael Krufky <mkrufky@linuxtv.org>
2756L: linux-media@vger.kernel.org
2757W: http://linuxtv.org/
2758W: http://github.com/mkrufky
2759Q: http://patchwork.linuxtv.org/project/linux-media/list/
2760T: git git://linuxtv.org/mkrufky/mxl111sf.git
2761S: Maintained
2762F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2763
Antti Palosaari91952bc2012-10-01 12:28:46 -03002764DVB_USB_RTL28XXU MEDIA DRIVER
2765M: Antti Palosaari <crope@iki.fi>
2766L: linux-media@vger.kernel.org
2767W: http://linuxtv.org/
2768W: http://palosaari.fi/linux/
2769Q: http://patchwork.linuxtv.org/project/linux-media/list/
2770T: git git://linuxtv.org/anttip/media_tree.git
2771S: Maintained
2772F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2773
2774DVB_USB_V2 MEDIA DRIVER
2775M: Antti Palosaari <crope@iki.fi>
2776L: linux-media@vger.kernel.org
2777W: http://linuxtv.org/
2778W: http://palosaari.fi/linux/
2779Q: http://patchwork.linuxtv.org/project/linux-media/list/
2780T: git git://linuxtv.org/anttip/media_tree.git
2781S: Maintained
2782F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2783F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2784
Jason Baronac0ac382011-08-11 14:36:43 -04002785DYNAMIC DEBUG
2786M: Jason Baron <jbaron@redhat.com>
2787S: Maintained
2788F: lib/dynamic_debug.c
2789F: include/linux/dynamic_debug.h
2790
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002791DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002793S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002794F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002795
Antti Palosaari91952bc2012-10-01 12:28:46 -03002796E4000 MEDIA DRIVER
2797M: Antti Palosaari <crope@iki.fi>
2798L: linux-media@vger.kernel.org
2799W: http://linuxtv.org/
2800W: http://palosaari.fi/linux/
2801Q: http://patchwork.linuxtv.org/project/linux-media/list/
2802T: git git://linuxtv.org/anttip/media_tree.git
2803S: Maintained
2804F: drivers/media/tuners/e4000*
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002807M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002808L: linux-eata@i-connect.net
2809L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002814M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815L: linux-scsi@vger.kernel.org
2816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002817F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002821L: linux-eata@i-connect.net
2822L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002827M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002828L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829W: http://ebtables.sourceforge.net/
2830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002831F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002832F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002833F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Antti Palosaari91952bc2012-10-01 12:28:46 -03002835EC100 MEDIA DRIVER
2836M: Antti Palosaari <crope@iki.fi>
2837L: linux-media@vger.kernel.org
2838W: http://linuxtv.org/
2839W: http://palosaari.fi/linux/
2840Q: http://patchwork.linuxtv.org/project/linux-media/list/
2841T: git git://linuxtv.org/anttip/media_tree.git
2842S: Maintained
2843F: drivers/media/dvb-frontends/ec100*
2844
Michael Halcrow237fead2006-10-04 02:16:22 -07002845ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002846M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002847M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002848L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002849W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002851F: Documentation/filesystems/ecryptfs.txt
2852F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002853
Alan Coxda9bb1d2006-01-18 17:44:13 -08002854EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002856L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002857W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002859F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002860F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002861F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002862
Borislav Petkovc476c232009-05-20 20:31:58 +02002863EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002865M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002866L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002867W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002868S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002869F: drivers/edac/amd64_edac*
2870
Ralf Baechlef65aad42012-10-17 00:39:09 +02002871EDAC-CAVIUM
2872M: Ralf Baechle <ralf@linux-mips.org>
2873M: David Daney <david.daney@cavium.com>
2874L: linux-edac@vger.kernel.org
2875L: linux-mips@linux-mips.org
2876W: bluesmoke.sourceforge.net
2877S: Supported
2878F: drivers/edac/octeon_edac*
2879
Dave Peterson0e438e32006-03-26 01:38:55 -08002880EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Mark Gross <mark.gross@intel.com>
2882M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002883L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002884W: bluesmoke.sourceforge.net
2885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002887
2888EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002889M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002890L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002891W: bluesmoke.sourceforge.net
2892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002893F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002894
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002895EDAC-GHES
2896M: Mauro Carvalho Chehab <mchehab@redhat.com>
2897L: linux-edac@vger.kernel.org
2898W: bluesmoke.sourceforge.net
2899S: Maintained
2900F: drivers/edac/ghes-edac.c
2901
Douglas Thompson6bc78402007-07-19 01:50:12 -07002902EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002903M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002904L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002905W: bluesmoke.sourceforge.net
2906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002907F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002908
2909EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002911L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002912W: bluesmoke.sourceforge.net
2913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002915
2916EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002917M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002918L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002919W: bluesmoke.sourceforge.net
2920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002922
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002923EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002925L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002926W: bluesmoke.sourceforge.net
2927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002929
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002930EDAC-I7300
2931M: Mauro Carvalho Chehab <mchehab@redhat.com>
2932L: linux-edac@vger.kernel.org
2933W: bluesmoke.sourceforge.net
2934S: Maintained
2935F: drivers/edac/i7300_edac.c
2936
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002937EDAC-I7CORE
2938M: Mauro Carvalho Chehab <mchehab@redhat.com>
2939L: linux-edac@vger.kernel.org
2940W: bluesmoke.sourceforge.net
2941S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002942F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002943
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002944EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002945M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302946M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002947L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002948W: bluesmoke.sourceforge.net
2949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002950F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002951
2952EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002953M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002954L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002955W: bluesmoke.sourceforge.net
2956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002958
Dave Peterson0e438e32006-03-26 01:38:55 -08002959EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002961L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002962W: bluesmoke.sourceforge.net
2963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002964F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002965
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002966EDAC-SBRIDGE
2967M: Mauro Carvalho Chehab <mchehab@redhat.com>
2968L: linux-edac@vger.kernel.org
2969W: bluesmoke.sourceforge.net
2970S: Maintained
2971F: drivers/edac/sb_edac.c
2972
Clemens Ladischaf399172011-01-10 16:32:54 +01002973EDIROL UA-101/UA-1000 DRIVER
2974M: Clemens Ladisch <clemens@ladisch.de>
2975L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2976T: git git://git.alsa-project.org/alsa-kernel.git
2977S: Maintained
2978F: sound/usb/misc/ua101.c
2979
Matt Fleming1f7df952012-10-03 10:04:02 +01002980EXTENSIBLE FIRMWARE INTERFACE (EFI)
2981M: Matt Fleming <matt.fleming@intel.com>
2982L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002983T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002984S: Maintained
2985F: Documentation/x86/efi-stub.txt
2986F: arch/ia64/kernel/efi.c
2987F: arch/x86/boot/compressed/eboot.[ch]
2988F: arch/x86/include/asm/efi.h
2989F: arch/x86/platform/efi/*
2990F: drivers/firmware/efivars.c
2991F: include/linux/efi*.h
2992
Peter Jones85a00d92010-09-22 13:05:04 -07002993EFIFB FRAMEBUFFER DRIVER
2994L: linux-fbdev@vger.kernel.org
2995M: Peter Jones <pjones@redhat.com>
2996S: Maintained
2997F: drivers/video/efifb.c
2998
Josh Triplett0bee8d22006-07-30 03:03:58 -07002999EFS FILESYSTEM
3000W: http://aeschi.ch.eu.org/efs/
3001S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003002F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003003
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003004EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003005M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3006M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003007L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003010
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003011EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003012M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003013L: netdev@vger.kernel.org
3014S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003015F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003016
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003017EM28XX VIDEO4LINUX DRIVER
3018M: Mauro Carvalho Chehab <mchehab@redhat.com>
3019L: linux-media@vger.kernel.org
3020W: http://linuxtv.org
3021T: git git://linuxtv.org/media_tree.git
3022S: Maintained
3023F: drivers/media/usb/em28xx/
3024
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003025EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Paul Gortmaker <paul.gortmaker@windriver.com>
3027M: Matt Mackall <mpm@selenic.com>
3028M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003029L: linux-embedded@vger.kernel.org
3030S: Maintained
3031
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003032EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003034L: linux-scsi@vger.kernel.org
3035W: http://sourceforge.net/projects/lpfcxxxx
3036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003037F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003038
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003039ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003040M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003041S: Maintained
3042F: drivers/misc/cb710/
3043F: drivers/mmc/host/cb710-mmc.*
3044F: include/linux/cb710.h
3045
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003046ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3047M: Maxim Levitsky <maximlevitsky@gmail.com>
3048S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003049F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003050
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003051EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003053S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003054T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/video/s1d13xxxfb.c
3056F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003059M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003060L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003061L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003062W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: include/linux/netfilter_bridge/
3065F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003068M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003069L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003071F: Documentation/filesystems/ext2.txt
3072F: fs/ext2/
3073F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003076M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003077M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003078M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003079L: linux-ext4@vger.kernel.org
3080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: Documentation/filesystems/ext3.txt
3082F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003083
3084EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003086M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003087L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003088W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003089Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: Documentation/filesystems/ext4.txt
3092F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Mimi Zoharc5532b02011-08-17 18:52:24 -04003094Extended Verification Module (EVM)
3095M: Mimi Zohar <zohar@us.ibm.com>
3096S: Supported
3097F: security/integrity/evm/
3098
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003099EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3100M: MyungJoo Ham <myungjoo.ham@samsung.com>
3101M: Chanwoo Choi <cw00.choi@samsung.com>
3102L: linux-kernel@vger.kernel.org
3103S: Maintained
3104F: drivers/extcon/
3105F: Documentation/extcon/
3106
Jingoo Han0a799512012-02-06 11:30:39 +09003107EXYNOS DP DRIVER
3108M: Jingoo Han <jg1.han@samsung.com>
3109L: linux-fbdev@vger.kernel.org
3110S: Maintained
3111F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003112F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003113
Donghwa Lee33ad3912012-03-06 11:44:58 +09003114EXYNOS MIPI DISPLAY DRIVERS
3115M: Inki Dae <inki.dae@samsung.com>
3116M: Donghwa Lee <dh09.lee@samsung.com>
3117M: Kyungmin Park <kyungmin.park@samsung.com>
3118L: linux-fbdev@vger.kernel.org
3119S: Maintained
3120F: drivers/video/exynos/exynos_mipi*
3121F: include/video/exynos_mipi*
3122
Jean Delvaree53004e2006-01-09 23:26:14 +01003123F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003125L: lm-sensors@lm-sensors.org
3126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003127F: Documentation/hwmon/f71805f
3128F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003129
Michael Büscheea977e2012-04-02 12:14:32 -03003130FC0011 TUNER DRIVER
3131M: Michael Buesch <m@bues.ch>
3132L: linux-media@vger.kernel.org
3133S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003134F: drivers/media/tuners/fc0011.h
3135F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003136
Antti Palosaari91952bc2012-10-01 12:28:46 -03003137FC2580 MEDIA DRIVER
3138M: Antti Palosaari <crope@iki.fi>
3139L: linux-media@vger.kernel.org
3140W: http://linuxtv.org/
3141W: http://palosaari.fi/linux/
3142Q: http://patchwork.linuxtv.org/project/linux-media/list/
3143T: git git://linuxtv.org/anttip/media_tree.git
3144S: Maintained
3145F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Eric Paris88b2dbd2010-08-18 12:25:50 -04003147FANOTIFY
3148M: Eric Paris <eparis@redhat.com>
3149S: Maintained
3150F: fs/notify/fanotify/
3151F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003152F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003155M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156W: http://www.farsite.co.uk/
3157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003158F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Akinobu Mitac5408b82007-04-23 14:41:20 -07003160FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003163F: Documentation/fault-injection/
3164F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003165
Robert Lovecae727d2010-02-16 12:16:00 -08003166FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3167M: Robert Love <robert.w.love@intel.com>
3168L: devel@open-fcoe.org
3169W: www.Open-FCoE.org
3170S: Supported
3171F: drivers/scsi/libfc/
3172F: drivers/scsi/fcoe/
3173F: include/scsi/fc/
3174F: include/scsi/libfc.h
3175F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003176F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003178FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003180L: linux-fsdevel@vger.kernel.org
3181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: include/linux/fcntl.h
3183F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003184F: include/uapi/linux/fcntl.h
3185F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003186F: fs/fcntl.c
3187F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003188
3189FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003190M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003191L: linux-fsdevel@vger.kernel.org
3192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003195FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003196M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003197L: lm-sensors@lm-sensors.org
3198S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003199F: drivers/hwmon/f75375s.c
3200F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003201
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003202FIREWIRE AUDIO DRIVERS
3203M: Clemens Ladisch <clemens@ladisch.de>
3204L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3205T: git git://git.alsa-project.org/alsa-kernel.git
3206S: Maintained
3207F: sound/firewire/
3208
Stefan Richtereb86ec52012-11-03 09:25:20 +01003209FIREWIRE MEDIA DRIVERS (firedtv)
3210M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3211L: linux-media@vger.kernel.org
3212L: linux1394-devel@lists.sourceforge.net
3213T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3214S: Maintained
3215F: drivers/media/firewire/
3216
Chris Boota511ce32012-04-14 17:50:35 -07003217FIREWIRE SBP-2 TARGET
3218M: Chris Boot <bootc@bootc.net>
3219L: linux-scsi@vger.kernel.org
3220L: target-devel@vger.kernel.org
3221L: linux1394-devel@lists.sourceforge.net
3222T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3223S: Maintained
3224F: drivers/target/sbp/
3225
Joe Perches7d2c86b2009-04-07 20:59:01 -07003226FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003228L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003229W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003230T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003232F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003233F: include/linux/firewire.h
3234F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003235F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236
3237FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003238M: Ming Lei <ming.lei@canonical.com>
3239L: linux-kernel@vger.kernel.org
3240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: Documentation/firmware_class/
3242F: drivers/base/firmware*.c
3243F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003244
Jiri Kosina8206f662012-05-18 13:52:29 +02003245FLOPPY DRIVER
3246M: Jiri Kosina <jkosina@suse.cz>
3247T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3248S: Odd fixes
3249F: drivers/block/floppy.c
3250
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003251FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003252M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003253W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003255F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003256
3257FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003258L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003259S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003260F: drivers/net/wan/dlci.c
3261F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003264M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003265L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003267Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003268T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003271F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003272F: drivers/video/
3273F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003274F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003275F: include/uapi/video/
3276F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Timur Tabia57c1882012-10-16 17:33:42 -05003278FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003279M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003280L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003281S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003282F: drivers/video/fsl-diu-fb.*
3283
Zhang Wei173acc72008-03-01 07:42:48 -07003284FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Li Yang <leoli@freescale.com>
3286M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003287L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003289F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003290
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003291FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003292M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003293L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003294L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003296F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003297
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003298FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003299M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003300L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003301L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003302S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003303F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003305
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003306FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003307M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3308M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003309L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003310L: netdev@vger.kernel.org
3311S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003312F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003313F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003314
Timur Tabid9e9d822008-04-24 08:45:26 +10003315FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003316L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003317S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003318F: arch/powerpc/sysdev/qe_lib/
3319F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003320
Joe Perchesb55ef9292009-10-26 16:49:46 -07003321FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003323L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003324L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003325S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003326F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003327
Li Yangbeaf53b2007-05-25 13:54:02 +08003328FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003330L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003331L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003332S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003333F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003334
Timur Tabid9e9d822008-04-24 08:45:26 +10003335FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003336M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003337L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003338S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003339F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003340
3341FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003342M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003343L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003344L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003345S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003346F: sound/soc/fsl/fsl*
3347F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003350M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003353F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Pavel Machek71038f52009-01-15 13:51:02 -08003355FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Pavel Machek <pavel@ucw.cz>
3357M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003358L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003359S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003360F: Documentation/power/freezing-of-tasks.txt
3361F: include/linux/freezer.h
3362F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003363
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003364FRONTSWAP API
3365M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3366L: linux-kernel@vger.kernel.org
3367S: Maintained
3368F: mm/frontswap.c
3369F: include/linux/frontswap.h
3370
David Howellsa5432f52009-04-20 15:46:45 +01003371FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003373L: linux-cachefs@redhat.com
3374S: Supported
3375F: Documentation/filesystems/caching/
3376F: fs/fscache/
3377F: include/linux/fscache*.h
3378
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003379F2FS FILE SYSTEM
3380M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3381L: linux-f2fs-devel@lists.sourceforge.net
3382W: http://en.wikipedia.org/wiki/F2FS
3383T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3384S: Maintained
3385F: Documentation/filesystems/f2fs.txt
3386F: fs/f2fs/
3387F: include/linux/f2fs_fs.h
3388
David Howells5ab7ffe2007-04-10 15:10:45 +01003389FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003390M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003392F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Jonathan Woithe20b93732008-06-11 10:14:56 +09303394FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303395M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003396L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003398F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303399
Heungjun Kim4da621b2011-11-11 08:05:33 -03003400FUJITSU M-5MO LS CAMERA ISP DRIVER
3401M: Kyungmin Park <kyungmin.park@samsung.com>
3402M: Heungjun Kim <riverful.kim@samsung.com>
3403L: linux-media@vger.kernel.org
3404S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003405F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003406F: include/media/m5mols.h
3407
Robert Gerlach2d24c492012-01-18 14:26:22 +01003408FUJITSU TABLET EXTRAS
3409M: Robert Gerlach <khnz@gmx.de>
3410L: platform-driver-x86@vger.kernel.org
3411S: Maintained
3412F: drivers/platform/x86/fujitsu-tablet.c
3413
Miklos Szeredi04578f12005-09-09 13:10:22 -07003414FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003415M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003416L: fuse-devel@lists.sourceforge.net
3417W: http://fuse.sourceforge.net/
3418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003419F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003420F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003423M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003425S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003426F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430L: linux-scsi@vger.kernel.org
3431W: http://www.icp-vortex.com/
3432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003433F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003435GEMTEK FM RADIO RECEIVER DRIVER
3436M: Hans Verkuil <hverkuil@xs4all.nl>
3437L: linux-media@vger.kernel.org
3438T: git git://linuxtv.org/media_tree.git
3439W: http://linuxtv.org
3440S: Maintained
3441F: drivers/media/radio/radio-gemtek*
3442
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003443GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003444M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003446F: drivers/i2c/busses/i2c-gpio.c
3447F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003448
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003449GENERIC GPIO I2C MULTIPLEXER DRIVER
3450M: Peter Korsgaard <peter.korsgaard@barco.com>
3451L: linux-i2c@vger.kernel.org
3452S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003453F: drivers/i2c/muxes/i2c-mux-gpio.c
3454F: include/linux/i2c-mux-gpio.h
3455F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003456
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003457GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003458M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003461F: drivers/net/wan/c101.c
3462F: drivers/net/wan/hd6457*
3463F: drivers/net/wan/hdlc*
3464F: drivers/net/wan/n2.c
3465F: drivers/net/wan/pc300too.c
3466F: drivers/net/wan/pci200syn.c
3467F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003469GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003470M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003471L: linux-arch@vger.kernel.org
3472T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3473S: Maintained
3474F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003475F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003476
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003477GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003478M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003479L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003480S: Supported
3481F: drivers/uio/uio_pci_generic.c
3482
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003483GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003484M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003485L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003486W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003487T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3488T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003490F: Documentation/filesystems/gfs2*.txt
3491F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003492F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003493
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003494GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Hansjoerg Lipp <hjlipp@web.de>
3496M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003497L: gigaset307x-common@lists.sourceforge.net
3498W: http://gigaset307x.sourceforge.net/
3499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003500F: Documentation/isdn/README.gigaset
3501F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003502F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003503
Grant Likelya0dc00b2011-02-12 01:48:14 -07003504GPIO SUBSYSTEM
3505M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003506M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003507S: Maintained
3508T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003509F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003510F: drivers/gpio/
3511F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003512F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003513
Harry Wei71a6d0a2011-05-11 15:13:33 -07003514GRE DEMULTIPLEXER DRIVER
3515M: Dmitry Kozlov <xeb@mail.ru>
3516L: netdev@vger.kernel.org
3517S: Maintained
3518F: net/ipv4/gre.c
3519F: include/net/gre.h
3520
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003521GRETH 10/100/1G Ethernet MAC device driver
3522M: Kristoffer Glembo <kristoffer@gaisler.com>
3523L: netdev@vger.kernel.org
3524S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003525F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003526
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003527GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003529L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003530T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003531S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003532F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003533
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003534GSPCA GL860 SUBDRIVER
3535M: Olivier Lorin <o.lorin@laposte.net>
3536L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003537T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003538S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003539F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003540
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003541GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003542M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003543L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003544T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003545S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003546F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003547
3548GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003550L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003551T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003552S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003553F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003554
Brian Johnson261982f2009-07-19 15:58:56 -03003555GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003556M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003557L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003558T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003559S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003560F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003561
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003562GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003563M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003564L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003565T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003566S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003567F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003568
3569GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003570M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003571L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003572T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003573S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003574F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003575
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003576STK1160 USB VIDEO CAPTURE DRIVER
3577M: Ezequiel Garcia <elezegarcia@gmail.com>
3578L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003579T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003580S: Maintained
3581F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003582
Harry Wei71a6d0a2011-05-11 15:13:33 -07003583HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3584M: Frank Seidel <frank@f-seidel.de>
3585L: platform-driver-x86@vger.kernel.org
3586W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3587S: Maintained
3588F: drivers/platform/x86/hdaps.c
3589
3590HWPOISON MEMORY FAILURE HANDLING
3591M: Andi Kleen <andi@firstfloor.org>
3592L: linux-mm@kvack.org
3593T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3594S: Maintained
3595F: mm/memory-failure.c
3596F: mm/hwpoison-inject.c
3597
3598HYPERVISOR VIRTUAL CONSOLE DRIVER
3599L: linuxppc-dev@lists.ozlabs.org
3600S: Odd Fixes
3601F: drivers/tty/hvc/
3602
Michael Buesch844dd052006-06-26 00:24:59 -07003603HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003604M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003605M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003606L: lm-sensors@lm-sensors.org
3607W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003608T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003609T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003610S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003611F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003612F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003613F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003614
3615HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003616M: Matt Mackall <mpm@selenic.com>
3617M: Herbert Xu <herbert@gondor.apana.org.au>
3618S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003619F: Documentation/hw_random.txt
3620F: drivers/char/hw_random/
3621F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003622
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003623HARDWARE SPINLOCK CORE
3624M: Ohad Ben-Cohen <ohad@wizery.com>
3625S: Maintained
3626F: Documentation/hwspinlock.txt
3627F: drivers/hwspinlock/hwspinlock_*
3628F: include/linux/hwspinlock.h
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003631L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Antti Palosaari91952bc2012-10-01 12:28:46 -03003635HD29L2 MEDIA DRIVER
3636M: Antti Palosaari <crope@iki.fi>
3637L: linux-media@vger.kernel.org
3638W: http://linuxtv.org/
3639W: http://palosaari.fi/linux/
3640Q: http://patchwork.linuxtv.org/project/linux-media/list/
3641T: git git://linuxtv.org/anttip/media_tree.git
3642S: Maintained
3643F: drivers/media/dvb-frontends/hd29l2*
3644
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003645HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003646M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003647L: iss_storagedev@hp.com
3648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003649F: Documentation/blockdev/cpqarray.txt
3650F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003651
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003652HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003653M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003654L: iss_storagedev@hp.com
3655S: Supported
3656F: Documentation/scsi/hpsa.txt
3657F: drivers/scsi/hpsa*.[ch]
3658F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003659F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003660
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003661HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003662M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003663L: iss_storagedev@hp.com
3664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003665F: Documentation/blockdev/cciss.txt
3666F: drivers/block/cciss*
3667F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003668F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003671L: linux-fsdevel@vger.kernel.org
3672S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003673F: Documentation/filesystems/hfs.txt
3674F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
3676HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003677M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678L: linux-nvidia@lists.surfsouth.com
3679W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003681F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003683HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003684M: Pavel Machek <pavel@ucw.cz>
3685M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003686L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003688F: arch/x86/power/
3689F: drivers/base/power/
3690F: kernel/power/
3691F: include/linux/suspend.h
3692F: include/linux/freezer.h
3693F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003694F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003695
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003696HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003697M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003698L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003699T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: drivers/hid/
3702F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003703F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003704
Ingo Molnar38bed542007-02-22 09:09:34 +01003705HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003707T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003709F: Documentation/timers/
3710F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003711F: kernel/time/clockevents.c
3712F: kernel/time/tick*.*
3713F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003714F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003715F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003719S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003720F: drivers/net/hamradio/dmascc.c
3721F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003723HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003724M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003725W: http://www.highpoint-tech.com
3726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003727F: Documentation/scsi/hptiop.txt
3728F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003729
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003731M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732L: linux-hippi@sunsite.dk
3733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003734F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003735F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003736F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003737F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Jouni Malinenff1d2762005-05-12 22:54:16 -04003739HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003740M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003741L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003742L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003743W: http://hostap.epitest.fi/
3744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003745F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003746
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003747HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003748L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003749S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003750F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003751
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003752HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003754S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003755F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003756
Joe Perches7d2c86b2009-04-07 20:59:01 -07003757HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: Documentation/timers/hpet.txt
3761F: drivers/char/hpet.c
3762F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003763F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003764
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003765HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003766M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: arch/x86/kernel/hpet.c
3769F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003770
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003772M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003775F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Joe Perches7d2c86b2009-04-07 20:59:01 -07003777HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003779W: http://www.pharscape.org
3780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003782
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003783HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003785L: linux-input@vger.kernel.org
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003790M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003794Hyper-V CORE AND DRIVERS
3795M: K. Y. Srinivasan <kys@microsoft.com>
3796M: Haiyang Zhang <haiyangz@microsoft.com>
3797L: devel@linuxdriverproject.org
3798S: Maintained
3799F: drivers/hv/
3800F: drivers/hid/hid-hyperv.c
3801F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003802
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003803I2C OVER PARALLEL PORT
3804M: Jean Delvare <khali@linux-fr.org>
3805L: linux-i2c@vger.kernel.org
3806S: Maintained
3807F: Documentation/i2c/busses/i2c-parport
3808F: Documentation/i2c/busses/i2c-parport-light
3809F: drivers/i2c/busses/i2c-parport.c
3810F: drivers/i2c/busses/i2c-parport-light.c
3811
3812I2C/SMBUS CONTROLLER DRIVERS FOR PC
3813M: Jean Delvare <khali@linux-fr.org>
3814L: linux-i2c@vger.kernel.org
3815S: Maintained
3816F: Documentation/i2c/busses/i2c-ali1535
3817F: Documentation/i2c/busses/i2c-ali1563
3818F: Documentation/i2c/busses/i2c-ali15x3
3819F: Documentation/i2c/busses/i2c-amd756
3820F: Documentation/i2c/busses/i2c-amd8111
3821F: Documentation/i2c/busses/i2c-i801
3822F: Documentation/i2c/busses/i2c-nforce2
3823F: Documentation/i2c/busses/i2c-piix4
3824F: Documentation/i2c/busses/i2c-sis5595
3825F: Documentation/i2c/busses/i2c-sis630
3826F: Documentation/i2c/busses/i2c-sis96x
3827F: Documentation/i2c/busses/i2c-via
3828F: Documentation/i2c/busses/i2c-viapro
3829F: drivers/i2c/busses/i2c-ali1535.c
3830F: drivers/i2c/busses/i2c-ali1563.c
3831F: drivers/i2c/busses/i2c-ali15x3.c
3832F: drivers/i2c/busses/i2c-amd756.c
3833F: drivers/i2c/busses/i2c-amd756-s4882.c
3834F: drivers/i2c/busses/i2c-amd8111.c
3835F: drivers/i2c/busses/i2c-i801.c
3836F: drivers/i2c/busses/i2c-isch.c
3837F: drivers/i2c/busses/i2c-nforce2.c
3838F: drivers/i2c/busses/i2c-nforce2-s4985.c
3839F: drivers/i2c/busses/i2c-piix4.c
3840F: drivers/i2c/busses/i2c-sis5595.c
3841F: drivers/i2c/busses/i2c-sis630.c
3842F: drivers/i2c/busses/i2c-sis96x.c
3843F: drivers/i2c/busses/i2c-via.c
3844F: drivers/i2c/busses/i2c-viapro.c
3845
Neil Hormancb7f07a2013-02-10 11:59:03 -05003846I2C/SMBUS ISMT DRIVER
3847M: Seth Heasley <seth.heasley@intel.com>
3848M: Neil Horman <nhorman@tuxdriver.com>
3849L: linux-i2c@vger.kernel.org
3850F: drivers/i2c/busses/i2c-ismt.c
3851F: Documentation/i2c/busses/i2c-ismt
3852
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003853I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003854M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003855L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003856S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003857F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003858
Jean Delvare5b543962005-08-15 19:51:02 +02003859I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003860M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003861M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003862L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003863W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003864T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: Documentation/i2c/
3867F: drivers/i2c/
3868F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003869F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003870F: include/uapi/linux/i2c.h
3871F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003873I2C-TAOS-EVM DRIVER
3874M: Jean Delvare <khali@linux-fr.org>
3875L: linux-i2c@vger.kernel.org
3876S: Maintained
3877F: Documentation/i2c/busses/i2c-taos-evm
3878F: drivers/i2c/busses/i2c-taos-evm.c
3879
Till Harbaume8c76ee2007-05-01 23:26:35 +02003880I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003881M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003882L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003883W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003890F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003893M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003894T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Maintained
3896
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003898M: Tony Luck <tony.luck@intel.com>
3899M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003901T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Kent Yoder956c2032012-09-07 04:17:01 +08003905IBM Power in-Nest Crypto Acceleration
3906M: Kent Yoder <key@linux.vnet.ibm.com>
3907L: linux-crypto@vger.kernel.org
3908S: Supported
3909F: drivers/crypto/nx/
3910
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003911IBM Power 842 compression accelerator
3912M: Robert Jennings <rcj@linux.vnet.ibm.com>
3913S: Supported
3914F: drivers/crypto/nx/nx-842.c
3915F: include/linux/nx842.h
3916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003918M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003920F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Santiago Leon9d348af2010-09-03 18:29:53 +00003922IBM Power Virtual Ethernet Device Driver
3923M: Santiago Leon <santil@linux.vnet.ibm.com>
3924L: netdev@vger.kernel.org
3925S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003926F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003927
Robert Jennings4b7652c2012-07-31 12:34:36 -05003928IBM Power Virtual SCSI/FC Device Drivers
3929M: Robert Jennings <rcj@linux.vnet.ibm.com>
3930L: linux-scsi@vger.kernel.org
3931S: Supported
3932F: drivers/scsi/ibmvscsi/
3933X: drivers/scsi/ibmvscsi/ibmvstgt.c
3934
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935IBM ServeRAID RAID DRIVER
3936P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003940F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003942ICH LPC AND GPIO DRIVER
3943M: Peter Tyser <ptyser@xes-inc.com>
3944S: Maintained
3945F: drivers/mfd/lpc_ich.c
3946F: drivers/gpio/gpio-ich.c
3947
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003948IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003951Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003952T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: Documentation/ide/
3955F: drivers/ide/
3956F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Ike Panhc6cb8c132011-08-25 22:28:45 +08003958IDEAPAD LAPTOP EXTRAS DRIVER
3959M: Ike Panhc <ike.pan@canonical.com>
3960L: platform-driver-x86@vger.kernel.org
3961W: http://launchpad.net/ideapad-laptop
3962S: Maintained
3963F: drivers/platform/x86/ideapad-laptop.c
3964
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003965IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003966M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003967L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003969F: Documentation/cdrom/ide-cd
3970F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Andy Henroid27471fd2008-10-09 11:45:22 -07003972IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003974L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003977
Sergey Lapin02cf2282009-06-08 12:18:50 +00003978IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003979M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003980M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003981L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003982W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003983T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003984S: Maintained
3985F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003986F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003987F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003988
Sean Young40ad4a32012-11-19 10:32:53 -03003989IGUANAWORKS USB IR TRANSCEIVER
3990M: Sean Young <sean@mess.org>
3991L: linux-media@vger.kernel.org
3992S: Maintained
3993F: drivers/media/rc/iguanair.c
3994
Ameya Palande9545f862012-01-10 09:00:58 -08003995IIO SUBSYSTEM AND DRIVERS
3996M: Jonathan Cameron <jic23@cam.ac.uk>
3997L: linux-iio@vger.kernel.org
3998S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003999F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004000F: drivers/staging/iio/
4001
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004002IKANOS/ADI EAGLE ADSL USB DRIVER
4003M: Matthieu Castet <castet.matthieu@free.fr>
4004M: Stanislaw Gruszka <stf_xl@wp.pl>
4005S: Maintained
4006F: drivers/usb/atm/ueagle-atm.c
4007
Guenter Roecke89ab512013-03-08 08:13:09 -08004008INA209 HARDWARE MONITOR DRIVER
4009M: Guenter Roeck <linux@roeck-us.net>
4010L: lm-sensors@lm-sensors.org
4011S: Maintained
4012F: Documentation/hwmon/ina209
4013F: Documentation/devicetree/bindings/i2c/ina209.txt
4014F: drivers/hwmon/ina209.c
4015
4016INA2XX HARDWARE MONITOR DRIVER
4017M: Guenter Roeck <linux@roeck-us.net>
4018L: lm-sensors@lm-sensors.org
4019S: Maintained
4020F: Documentation/hwmon/ina2xx
4021F: drivers/hwmon/ina2xx.c
4022F: include/linux/platform_data/ina2xx.h
4023
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004024INDUSTRY PACK SUBSYSTEM (IPACK)
4025M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4026M: Jens Taprogge <jens.taprogge@taprogge.org>
4027M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4028L: industrypack-devel@lists.sourceforge.net
4029W: http://industrypack.sourceforge.net
4030S: Maintained
4031F: drivers/ipack/
4032
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004033INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004034M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004036F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004039L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004040S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004041F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
4043INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004044M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004045M: Sean Hefty <sean.hefty@intel.com>
4046M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004047L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004048W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004049Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004050T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004052F: Documentation/infiniband/
4053F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004054F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Robert Lovec9f04f52005-07-15 12:21:07 -04004056INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: John McCutchan <john@johnmccutchan.com>
4058M: Robert Love <rlove@rlove.org>
4059M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004061F: Documentation/filesystems/inotify.txt
4062F: fs/notify/inotify/
4063F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004064F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004065
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004066INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004067M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4068M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004069L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004070Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004071T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004073F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004074F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004075F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004076F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004077
Henrik Rydberg3267a872010-06-24 19:10:40 -07004078INPUT MULTITOUCH (MT) PROTOCOL
4079M: Henrik Rydberg <rydberg@euromail.se>
4080L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004081T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004082S: Maintained
4083F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004084F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004085K: \b(ABS|SYN)_MT_
4086
Dave Jiang4ac13e12011-07-29 17:16:55 -07004087INTEL C600 SERIES SAS CONTROLLER DRIVER
4088M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004089M: Lukasz Dorau <lukasz.dorau@intel.com>
4090M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004091M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004092L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004093T: git git://git.code.sf.net/p/intel-sas/isci
4094S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004095F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004096
Len Brown26717172010-03-08 14:07:30 -05004097INTEL IDLE DRIVER
4098M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004099L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004100T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004101S: Supported
4102F: drivers/idle/intel_idle.c
4103
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004104INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004105M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004106L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004108F: Documentation/fb/intelfb.txt
4109F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004110
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004113L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004115F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304117INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004119L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304120W: http://www.lesswatts.org/projects/acpi/
4121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004122F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304123
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004125M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004127F: arch/x86/kernel/microcode_core.c
4128F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004130INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004131M: Dan Williams <djbw@fb.com>
4132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004134
David Woodhouse6c8909b2008-10-18 16:12:17 +01004135INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004136M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004137L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004138T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004139S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004140F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004141F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004142
Dan Williamsb3e5f262007-08-07 10:26:35 -07004143INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004144M: Dan Williams <djbw@fb.com>
4145S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004146F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004147
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004148INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004151F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4152F: arch/arm/mach-ixp4xx/include/mach/npe.h
4153F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4154F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004155F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004156F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004157
Michael Buesch844dd052006-06-26 00:24:59 -07004158INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004159M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004162
Jeff Kirsher0d164402010-10-05 01:15:17 +00004163INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4165M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4166M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004167M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4168M: Don Skidmore <donald.c.skidmore@intel.com>
4169M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004170M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004171M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004173M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004174L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004175W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004176W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004177T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4178T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004180F: Documentation/networking/e100.txt
4181F: Documentation/networking/e1000.txt
4182F: Documentation/networking/e1000e.txt
4183F: Documentation/networking/igb.txt
4184F: Documentation/networking/igbvf.txt
4185F: Documentation/networking/ixgb.txt
4186F: Documentation/networking/ixgbe.txt
4187F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004188F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004190INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4191M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004192L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004194F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004195F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004196F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004197
Shane Wang4bd96a72010-03-10 14:36:10 +08004198INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004199M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4200M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004201M: Shane Wang <shane.wang@intel.com>
4202L: tboot-devel@lists.sourceforge.net
4203W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004204T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004205S: Supported
4206F: Documentation/intel_txt.txt
4207F: include/linux/tboot.h
4208F: arch/x86/kernel/tboot.c
4209
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004210INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004212M: linux-wimax@intel.com
4213L: wimax@linuxwimax.org
4214S: Supported
4215W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004216F: Documentation/wimax/README.i2400m
4217F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004218F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004219
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004220INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4221M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004222L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004223S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004224F: drivers/net/wireless/iwlegacy/
4225
Zhu Yib481de92007-09-25 17:54:57 -07004226INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004227M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004228M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004229M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004230L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004231W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004232T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004234F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004235
Tomas Winklerde8fe022012-05-09 16:39:02 +03004236INTEL MANAGEMENT ENGINE (mei)
4237M: Tomas Winkler <tomas.winkler@intel.com>
4238L: linux-kernel@vger.kernel.org
4239S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004240F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004241F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004242F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004243
Ralf Baechlecb109a02007-08-30 23:56:30 -07004244IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004245M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246L: linux-mips@linux-mips.org
4247S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004248F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Ralf Baechlecb109a02007-08-30 23:56:30 -07004250IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004252L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004253S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004254F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004255
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004256IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Francois Romieu1202d6f2007-09-17 17:13:55 -07004261IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Francois Romieu <romieu@fr.zoreil.com>
4263M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004264L: netdev@vger.kernel.org
4265S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004266F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004267
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004268IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004269M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004270L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004272F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004273
Corey Minyard4409ebe2006-04-20 02:43:12 -07004274IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004275M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004276L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004277W: http://openipmi.sourceforge.net/
4278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/IPMI.txt
4280F: drivers/char/ipmi/
4281F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004282F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004283
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004284IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004285M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004286L: linux-scsi@vger.kernel.org
4287W: http://www.adaptec.com/
4288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004289F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004290
4291IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: Wensong Zhang <wensong@linux-vs.org>
4293M: Simon Horman <horms@verge.net.au>
4294M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004295L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004298F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004299F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004300F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004301F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Randy Dunlape7839f22008-10-12 16:11:45 -07004303IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Jiri Kosina <jkosina@suse.cz>
4305M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004306S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004307F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004308
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004309IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004311L: netdev@vger.kernel.org
4312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004314F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004315F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004316
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004319L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004320L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004322S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004323T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004324F: Documentation/networking/irda.txt
4325F: drivers/net/irda/
4326F: include/net/irda/
4327F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004329IRQ SUBSYSTEM
4330M: Thomas Gleixner <tglx@linutronix.de>
4331S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004332T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004333F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004334F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004335
Grant Likely7ab3a832012-02-14 14:06:47 -07004336IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4337M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4338M: Grant Likely <grant.likely@secretlab.ca>
4339T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4340S: Maintained
4341F: Documentation/IRQ-domain.txt
4342F: include/linux/irqdomain.h
4343F: kernel/irq/irqdomain.c
4344
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004345ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/isapnp.txt
4349F: drivers/pnp/isapnp/
4350F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004351
Hans Verkuild39b8422012-11-23 07:07:02 -03004352ISA RADIO MODULE
4353M: Hans Verkuil <hverkuil@xs4all.nl>
4354L: linux-media@vger.kernel.org
4355T: git git://linuxtv.org/media_tree.git
4356W: http://linuxtv.org
4357S: Maintained
4358F: drivers/media/radio/radio-isa*
4359
Harry Wei71a6d0a2011-05-11 15:13:33 -07004360iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4361M: Peter Jones <pjones@redhat.com>
4362M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4363S: Maintained
4364F: drivers/firmware/iscsi_ibft*
4365
Mike Christie14816b1e2007-11-28 16:22:06 -08004366ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004367M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004368L: open-iscsi@googlegroups.com
4369W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004370T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004372F: drivers/scsi/*iscsi*
4373F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004376M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004377L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004378L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004380T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004382F: Documentation/isdn/
4383F: drivers/isdn/
4384F: include/linux/isdn.h
4385F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004386F: include/uapi/linux/isdn.h
4387F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
4389ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004391L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392W: http://www.melware.de
4393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
Jean Delvared6248702010-03-05 22:17:20 +01004396IT87 HARDWARE MONITORING DRIVER
4397M: Jean Delvare <khali@linux-fr.org>
4398L: lm-sensors@lm-sensors.org
4399S: Maintained
4400F: Documentation/hwmon/it87
4401F: drivers/hwmon/it87.c
4402
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004403IT913X MEDIA DRIVER
4404M: Malcolm Priestley <tvboxspy@gmail.com>
4405L: linux-media@vger.kernel.org
4406W: http://linuxtv.org/
4407Q: http://patchwork.linuxtv.org/project/linux-media/list/
4408S: Maintained
4409F: drivers/media/usb/dvb-usb-v2/it913x*
4410
4411IT913X FE MEDIA DRIVER
4412M: Malcolm Priestley <tvboxspy@gmail.com>
4413L: linux-media@vger.kernel.org
4414W: http://linuxtv.org/
4415Q: http://patchwork.linuxtv.org/project/linux-media/list/
4416S: Maintained
4417F: drivers/media/dvb-frontends/it913x-fe*
4418
Hans Verkuil91821ff2007-12-02 09:35:33 -03004419IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004420M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004421L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004422L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004423T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004424W: http://www.ivtvdriver.org
4425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004426F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004427F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004428F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004429
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004430IX2505V MEDIA DRIVER
4431M: Malcolm Priestley <tvboxspy@gmail.com>
4432L: linux-media@vger.kernel.org
4433W: http://linuxtv.org/
4434Q: http://patchwork.linuxtv.org/project/linux-media/list/
4435S: Maintained
4436F: drivers/media/dvb-frontends/ix2505v*
4437
Guenter Roeck4453d732010-08-09 17:21:08 -07004438JC42.4 TEMPERATURE SENSOR DRIVER
4439M: Guenter Roeck <linux@roeck-us.net>
4440L: lm-sensors@lm-sensors.org
4441S: Maintained
4442F: drivers/hwmon/jc42.c
4443F: Documentation/hwmon/jc42
4444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004445JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004446M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004447L: jfs-discussion@lists.sourceforge.net
4448W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004449T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/filesystems/jfs.txt
4452F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004453
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004454JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004455M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004456L: netdev@vger.kernel.org
4457S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004458F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004462L: linux-mtd@lists.infradead.org
4463W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004465F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004466F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Josh Triplettde456d32006-07-30 03:04:00 -07004468JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004469M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004470M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004471L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004472S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004473F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004474F: include/linux/jbd.h
4475
4476JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4477M: "Theodore Ts'o" <tytso@mit.edu>
4478L: linux-ext4@vger.kernel.org
4479S: Maintained
4480F: fs/jbd2/
4481F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004482
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004483JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004484M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004485L: linux-serial@vger.kernel.org
4486S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004487F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004488
Clemens Ladischaf399172011-01-10 16:32:54 +01004489K10TEMP HARDWARE MONITORING DRIVER
4490M: Clemens Ladisch <clemens@ladisch.de>
4491L: lm-sensors@lm-sensors.org
4492S: Maintained
4493F: Documentation/hwmon/k10temp
4494F: drivers/hwmon/k10temp.c
4495
Rudolf Marek4660cb32006-10-08 22:01:26 +02004496K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004498L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004500F: Documentation/hwmon/k8temp
4501F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004504M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004505L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004506S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004507F: Documentation/kbuild/kconfig-language.txt
4508F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509
Vivek Goyalea6c2082006-05-20 14:59:55 -07004510KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004511M: Vivek Goyal <vgoyal@redhat.com>
4512M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004513L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004514W: http://lse.sourceforge.net/kdump/
4515S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004516F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004517
Hans Verkuilf41bf022012-11-23 07:04:36 -03004518KEENE FM RADIO TRANSMITTER DRIVER
4519M: Hans Verkuil <hverkuil@xs4all.nl>
4520L: linux-media@vger.kernel.org
4521T: git git://linuxtv.org/media_tree.git
4522W: http://linuxtv.org
4523S: Maintained
4524F: drivers/media/radio/radio-keene*
4525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004527M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004528L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
Michal Marek70fb7ba2010-01-29 14:22:43 +01004532KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004533M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004534T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4535T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004536L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004538F: Documentation/kbuild/
4539F: Makefile
4540F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004541F: scripts/basic/
4542F: scripts/mk*
4543F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
4545KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004546L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004547W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004548S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004550KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004552L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004554S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004555F: fs/nfsd/
4556F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004557F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004558F: fs/lockd/
4559F: fs/nfs_common/
4560F: net/sunrpc/
4561F: include/linux/lockd/
4562F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004563F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Avi Kivity426d62e2006-12-13 00:34:03 -08004565KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004566M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004567M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004568L: kvm@vger.kernel.org
4569W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/*/kvm.txt
4572F: arch/*/kvm/
4573F: arch/*/include/asm/kvm*
4574F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004575F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004576F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004577
Joerg Roedelad8003d2008-09-10 20:01:07 +02004578KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004579M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004580L: kvm@vger.kernel.org
4581W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004583F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004584F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004585
Hollis Blanchard513014b2008-04-16 23:28:08 -05004586KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004587M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004588L: kvm-ppc@vger.kernel.org
4589W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004590T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004591S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004592F: arch/powerpc/include/asm/kvm*
4593F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004594
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004595KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004597L: kvm-ia64@vger.kernel.org
4598W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004600F: Documentation/ia64/kvm.txt
4601F: arch/ia64/include/asm/kvm*
4602F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004603
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004604KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004605M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004606M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004607M: linux390@de.ibm.com
4608L: linux-s390@vger.kernel.org
4609W: http://www.ibm.com/developerworks/linux/linux390/
4610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004611F: Documentation/s390/kvm.txt
4612F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004613F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004614F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004615
Christoffer Dalla7494742013-01-20 18:42:26 -05004616KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4617M: Christoffer Dall <cdall@cs.columbia.edu>
4618L: kvmarm@lists.cs.columbia.edu
4619W: http://systems.cs.columbia.edu/projects/kvm-arm
4620S: Maintained
4621F: arch/arm/include/uapi/asm/kvm*
4622F: arch/arm/include/asm/kvm*
4623F: arch/arm/kvm/
4624
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004625KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004626M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004627W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004628L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004630F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004631F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004632F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004633
David Howellse9714612010-03-29 23:42:09 +01004634KEYS/KEYRINGS:
4635M: David Howells <dhowells@redhat.com>
4636L: keyrings@linux-nfs.org
4637S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004638F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004639F: include/linux/key.h
4640F: include/linux/key-type.h
4641F: include/keys/
4642F: security/keys/
4643
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004644KEYS-TRUSTED
4645M: David Safford <safford@watson.ibm.com>
4646M: Mimi Zohar <zohar@us.ibm.com>
4647L: linux-security-module@vger.kernel.org
4648L: keyrings@linux-nfs.org
4649S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004650F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004651F: include/keys/trusted-type.h
4652F: security/keys/trusted.c
4653F: security/keys/trusted.h
4654
4655KEYS-ENCRYPTED
4656M: Mimi Zohar <zohar@us.ibm.com>
4657M: David Safford <safford@watson.ibm.com>
4658L: linux-security-module@vger.kernel.org
4659L: keyrings@linux-nfs.org
4660S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004661F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004662F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004663F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004664
Jason Wessel5b778da2010-05-20 21:04:28 -05004665KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004667W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004668L: kgdb-bugreport@lists.sourceforge.net
4669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004670F: Documentation/DocBook/kgdb.tmpl
4671F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004672F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004673F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004674F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004675F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004676
Pekka Enberg456db8c2008-04-28 22:47:29 +03004677KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004679M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004680S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004681F: Documentation/kmemcheck.txt
4682F: arch/x86/include/asm/kmemcheck.h
4683F: arch/x86/mm/kmemcheck/
4684F: include/linux/kmemcheck.h
4685F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004686
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004687KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004688M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004689S: Maintained
4690F: Documentation/kmemleak.txt
4691F: include/linux/kmemleak.h
4692F: mm/kmemleak.c
4693F: mm/kmemleak-test.c
4694
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004695KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004696M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4697M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4698M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004699M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004701F: Documentation/kprobes.txt
4702F: include/linux/kprobes.h
4703F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004704
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004705KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004706M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004707W: http://miguelojeda.es/auxdisplay.htm
4708W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004710F: Documentation/auxdisplay/ks0108
4711F: drivers/auxdisplay/ks0108.c
4712F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004713
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004716S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004717F: Documentation/networking/lapb-module.txt
4718F: include/*/lapb.h
4719F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
4721LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004722M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723L: linux-scsi@vger.kernel.org
4724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: Documentation/scsi/53c700.txt
4726F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Richard Purdie263de9b2006-05-15 09:44:16 -07004728LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004729M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004730M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004731L: linux-leds@vger.kernel.org
4732T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004734F: drivers/leds/
4735F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004736
Jean Delvareb0461a42011-06-15 15:08:46 -07004737LEGACY EEPROM DRIVER
4738M: Jean Delvare <khali@linux-fr.org>
4739S: Maintained
4740F: Documentation/misc-devices/eeprom
4741F: drivers/misc/eeprom/eeprom.c
4742
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004744M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745L: legousb-devel@lists.sourceforge.net
4746W: http://legousb.sourceforge.net/
4747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Michael Krufky055616a2012-10-02 00:56:06 -03004750LG2160 MEDIA DRIVER
4751M: Michael Krufky <mkrufky@linuxtv.org>
4752L: linux-media@vger.kernel.org
4753W: http://linuxtv.org/
4754W: http://github.com/mkrufky
4755Q: http://patchwork.linuxtv.org/project/linux-media/list/
4756T: git git://linuxtv.org/mkrufky/tuners.git
4757S: Maintained
4758F: drivers/media/dvb-frontends/lg2160.*
4759
Michael Krufky6f0e7722012-10-02 00:56:00 -03004760LGDT3305 MEDIA DRIVER
4761M: Michael Krufky <mkrufky@linuxtv.org>
4762L: linux-media@vger.kernel.org
4763W: http://linuxtv.org/
4764W: http://github.com/mkrufky
4765Q: http://patchwork.linuxtv.org/project/linux-media/list/
4766T: git git://linuxtv.org/mkrufky/tuners.git
4767S: Maintained
4768F: drivers/media/dvb-frontends/lgdt3305.*
4769
Rusty Russell568a17f2007-10-25 14:12:24 +10004770LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004771M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004772L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004773W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004774S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004775F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004776F: arch/x86/lguest/
4777F: drivers/lguest/
4778F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004779F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004780
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004782M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783W: http://www.ibm.com/linux/ltc/projects/ppc
4784S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004785F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004787LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4789M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004791L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004792Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004793T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004795F: Documentation/powerpc/
4796F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
4798LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004801L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004803F: arch/powerpc/platforms/powermac/
4804F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
Grant Likely77a76362008-07-12 12:11:43 -06004806LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004807M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004808L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004809T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004811F: arch/powerpc/platforms/512x/
4812F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
4814LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004815M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004816M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004818L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004819T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004821F: arch/powerpc/platforms/40x/
4822F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Grant Likely260c02a2007-10-02 12:15:34 +10004824LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004825M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004826W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004827L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004828T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004830F: arch/powerpc/*/*virtex*
4831F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Tom Rinie93adf12005-07-26 12:49:53 -07004833LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004834M: Vitaly Bordug <vitb@kernel.crashing.org>
4835M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004836W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004837L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004838S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004839F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004843W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004844L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004845S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004846F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004847F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Olof Johanssonab06ff32006-09-06 14:44:54 -05004849LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004850M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004851L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004852S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004853F: arch/powerpc/platforms/pasemi/
4854F: drivers/*/*pasemi*
4855F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004856
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004858M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004859L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860S: Supported
4861
Harry Weia23ce6d2011-02-11 16:52:20 +01004862LIS3LV02D ACCELEROMETER DRIVER
4863M: Eric Piel <eric.piel@tremplin-utc.net>
4864S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004865F: Documentation/misc-devices/lis3lv02d
4866F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004867F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004868
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004869LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004870M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004872F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004873F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004874F: include/net/llc*
4875F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004876
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004877LM73 HARDWARE MONITOR DRIVER
4878M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4879L: lm-sensors@lm-sensors.org
4880S: Maintained
4881F: drivers/hwmon/lm73.c
4882
Jean Delvare156e2d12011-07-25 21:46:11 +02004883LM78 HARDWARE MONITOR DRIVER
4884M: Jean Delvare <khali@linux-fr.org>
4885L: lm-sensors@lm-sensors.org
4886S: Maintained
4887F: Documentation/hwmon/lm78
4888F: drivers/hwmon/lm78.c
4889
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004892L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: Documentation/hwmon/lm83
4895F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
4897LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004899L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: Documentation/hwmon/lm90
4902F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004904LME2510 MEDIA DRIVER
4905M: Malcolm Priestley <tvboxspy@gmail.com>
4906L: linux-media@vger.kernel.org
4907W: http://linuxtv.org/
4908Q: http://patchwork.linuxtv.org/project/linux-media/list/
4909S: Maintained
4910F: drivers/media/usb/dvb-usb-v2/lmedm04*
4911
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004912LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004913M: Peter Zijlstra <peterz@infradead.org>
4914M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004915T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004917F: Documentation/lockdep*.txt
4918F: Documentation/lockstat.txt
4919F: include/linux/lockdep.h
4920F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004921
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004922LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004923M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004924L: linux-ntfs-dev@lists.sourceforge.net
4925W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004927F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004928F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
Joern Engelef6ada32009-11-20 22:17:12 +01004930LogFS
4931M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304932M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004933L: logfs@logfs.org
4934W: logfs.org
4935S: Maintained
4936F: fs/logfs/
4937
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004938LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304939M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4940M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004941M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004942L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004943L: linux-scsi@vger.kernel.org
4944W: http://www.lsilogic.com/support
4945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004946F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304947F: drivers/scsi/mpt2sas/
4948F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004949
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004951M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952L: linux-scsi@vger.kernel.org
4953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004954F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Guenter Roecke5f5c992010-06-25 11:59:54 -07004956LTC4261 HARDWARE MONITOR DRIVER
4957M: Guenter Roeck <linux@roeck-us.net>
4958L: lm-sensors@lm-sensors.org
4959S: Maintained
4960F: Documentation/hwmon/ltc4261
4961F: drivers/hwmon/ltc4261.c
4962
Mike Frysinger81365c32008-10-29 14:01:12 -07004963LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004964M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004965M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004966M: Cyril Hrubis <chrubis@suse.cz>
4967M: Caspar Zhang <caspar@casparzhang.com>
4968M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004969L: ltp-list@lists.sourceforge.net (subscribers-only)
4970W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004971T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004972T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004973S: Maintained
4974
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004975M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004976M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004977L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004978L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4979W: http://www.linux-m32r.org/
4980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004981F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004984M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985L: linux-m68k@lists.linux-m68k.org
4986W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004987T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004990F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
4992M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004995L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004997F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
4999M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005000M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001W: http://www.tazenda.demon.co.uk/phil/linux-hp
5002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005003F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005005M88RS2000 MEDIA DRIVER
5006M: Malcolm Priestley <tvboxspy@gmail.com>
5007L: linux-media@vger.kernel.org
5008W: http://linuxtv.org/
5009Q: http://patchwork.linuxtv.org/project/linux-media/list/
5010S: Maintained
5011F: drivers/media/dvb-frontends/m88rs2000*
5012
Alexey Klimov07a092f2012-11-12 02:57:32 -03005013MA901 MASTERKIT USB FM RADIO DRIVER
5014M: Alexey Klimov <klimov.linux@gmail.com>
5015L: linux-media@vger.kernel.org
5016T: git git://linuxtv.org/media_tree.git
5017S: Maintained
5018F: drivers/media/radio/radio-ma901.c
5019
Jiri Benc64a327a2007-05-05 11:47:08 -07005020MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005021M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005022L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005023W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005024T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5025T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005027F: Documentation/networking/mac80211-injection.txt
5028F: include/net/mac80211.h
5029F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005030
Stefano Brivio1036d862007-12-23 04:46:27 +01005031MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Stefano Brivio <stefano.brivio@polimi.it>
5033M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005034L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005035W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005036T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5037T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005039F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005040
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005041MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005042M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005043L: netdev@vger.kernel.org
5044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: drivers/net/macvlan.c
5046F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005047
Michael Kerriskfaf16682005-07-31 22:34:47 -07005048MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005050W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005051L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005052S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005053
stephen hemminger44c14c12012-04-02 12:59:47 +00005054MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5055M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005056M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005057L: netdev@vger.kernel.org
5058S: Maintained
5059F: drivers/net/ethernet/marvell/sk*
5060
Stefano Brivio74cda162007-11-19 20:27:46 +01005061MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005062M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01005063L: libertas-dev@lists.infradead.org
5064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005066
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005067MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005068M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005069L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005070S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005071F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005072F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005074MARVELL MVNETA ETHERNET DRIVER
5075M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5076L: netdev@vger.kernel.org
5077S: Maintained
5078F: drivers/net/ethernet/marvell/mvneta.*
5079
Bing Zhaofcad5842011-07-13 13:11:58 -07005080MARVELL MWIFIEX WIRELESS DRIVER
5081M: Bing Zhao <bzhao@marvell.com>
5082L: linux-wireless@vger.kernel.org
5083S: Maintained
5084F: drivers/net/wireless/mwifiex/
5085
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005086MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005087M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005088L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005089S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005090F: drivers/net/wireless/mwl8k.c
5091
Pierre Ossman2a695672009-03-16 19:52:26 +01005092MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005093M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005094S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005095F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005098L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005099S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005100F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005101F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Guenter Roeckca462082012-06-01 23:28:23 -07005103MAX16065 HARDWARE MONITOR DRIVER
5104M: Guenter Roeck <linux@roeck-us.net>
5105L: lm-sensors@lm-sensors.org
5106S: Maintained
5107F: Documentation/hwmon/max16065
5108F: drivers/hwmon/max16065.c
5109
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005110MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005111M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005112L: lm-sensors@lm-sensors.org
5113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005114F: Documentation/hwmon/max6650
5115F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005116
Guenter Roecke89ab512013-03-08 08:13:09 -08005117MAX6697 HARDWARE MONITOR DRIVER
5118M: Guenter Roeck <linux@roeck-us.net>
5119L: lm-sensors@lm-sensors.org
5120S: Maintained
5121F: Documentation/hwmon/max6697
5122F: Documentation/devicetree/bindings/i2c/max6697.txt
5123F: drivers/hwmon/max6697.c
5124F: include/linux/platform_data/max6697.h
5125
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005126MAXIRADIO FM RADIO RECEIVER DRIVER
5127M: Hans Verkuil <hverkuil@xs4all.nl>
5128L: linux-media@vger.kernel.org
5129T: git git://linuxtv.org/media_tree.git
5130W: http://linuxtv.org
5131S: Maintained
5132F: drivers/media/radio/radio-maxiradio*
5133
Joe Perches127c49a2009-04-08 08:34:04 -07005134MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005135M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005136P: LinuxTV.org Project
5137L: linux-media@vger.kernel.org
5138W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005139Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005140T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005141S: Maintained
5142F: Documentation/dvb/
5143F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005144F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005145F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005146F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005147F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005148F: include/uapi/linux/dvb/
5149F: include/uapi/linux/videodev2.h
5150F: include/uapi/linux/media.h
5151F: include/uapi/linux/v4l2-*
5152F: include/uapi/linux/meye.h
5153F: include/uapi/linux/ivtv*
5154F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005155
Hans Verkuil6149a932012-11-23 07:21:19 -03005156MEDIAVISION PRO MOVIE STUDIO DRIVER
5157M: Hans Verkuil <hverkuil@xs4all.nl>
5158L: linux-media@vger.kernel.org
5159T: git git://linuxtv.org/media_tree.git
5160W: http://linuxtv.org
5161S: Odd Fixes
5162F: drivers/media/parport/pms*
5163
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005164MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005165M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005166L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005167W: http://megaraid.lsilogic.com
5168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005169F: Documentation/scsi/megaraid.txt
5170F: drivers/scsi/megaraid.*
5171F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005172
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005173MELLANOX ETHERNET DRIVER (mlx4_en)
5174M: Amir Vadai <amirv@mellanox.com>
5175L: netdev@vger.kernel.org
5176S: Supported
5177W: http://www.mellanox.com
5178Q: http://patchwork.ozlabs.org/project/netdev/list/
5179F: drivers/net/ethernet/mellanox/mlx4/en_*
5180
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005181MEMORY MANAGEMENT
5182L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005183W: http://www.linux-mm.org
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005186F: include/linux/gfp.h
5187F: include/linux/mmzone.h
5188F: include/linux/memory_hotplug.h
5189F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005190F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005191
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005192MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005193M: Johannes Weiner <hannes@cmpxchg.org>
5194M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005195M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005196M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005197L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005198L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005200F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005201F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005202
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005203MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005204M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005206W: http://www.linux-mtd.infradead.org/
5207Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005208T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: drivers/mtd/
5211F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005212F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
James Hogan12285942012-10-10 12:59:49 +01005214METAG ARCHITECTURE
5215M: James Hogan <james.hogan@imgtec.com>
5216S: Supported
5217F: arch/metag/
5218F: Documentation/metag/
5219F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005220F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005221F: drivers/irqchip/irq-metag.c
5222F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005223F: drivers/tty/metag_da.c
5224F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005225
Michal Simekc6375b02009-03-27 14:25:52 +01005226MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005228L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005229W: http://www.monstr.eu/fdt/
5230T: git git://git.monstr.eu/linux-2.6-microblaze.git
5231S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005232F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233
5234MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005235M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005237F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
5239MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005240M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005242W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005243T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005244Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005246F: Documentation/mips/
5247F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248
Hans Verkuil08b76202012-11-23 07:15:42 -03005249MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5250M: Hans Verkuil <hverkuil@xs4all.nl>
5251L: linux-media@vger.kernel.org
5252T: git git://linuxtv.org/media_tree.git
5253W: http://linuxtv.org
5254S: Odd Fixes
5255F: drivers/media/radio/radio-miropcm20*
5256
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005258M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005260F: include/linux/module.h
5261F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
5263MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005266F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005267F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005268F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
Jiri Slabyb9705b62008-04-30 00:53:48 -07005270MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005271M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005273F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005274F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005275
Alexey Klimov889b2f82012-11-16 17:43:59 -03005276MR800 AVERMEDIA USB FM RADIO DRIVER
5277M: Alexey Klimov <klimov.linux@gmail.com>
5278L: linux-media@vger.kernel.org
5279T: git git://linuxtv.org/media_tree.git
5280S: Maintained
5281F: drivers/media/radio/radio-mr800.c
5282
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005283MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005284M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005285L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005288
Anisse Astier0f1006b2009-12-17 11:28:49 +01005289MSI WMI SUPPORT
5290M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005291L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005292S: Supported
5293F: drivers/platform/x86/msi-wmi.c
5294
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005295MT9M032 SENSOR DRIVER
5296M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5297L: linux-media@vger.kernel.org
5298T: git git://linuxtv.org/media_tree.git
5299S: Maintained
5300F: drivers/media/i2c/mt9m032.c
5301F: include/media/mt9m032.h
5302
5303MT9P031 SENSOR DRIVER
5304M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5305L: linux-media@vger.kernel.org
5306T: git git://linuxtv.org/media_tree.git
5307S: Maintained
5308F: drivers/media/i2c/mt9p031.c
5309F: include/media/mt9p031.h
5310
5311MT9T001 SENSOR DRIVER
5312M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5313L: linux-media@vger.kernel.org
5314T: git git://linuxtv.org/media_tree.git
5315S: Maintained
5316F: drivers/media/i2c/mt9t001.c
5317F: include/media/mt9t001.h
5318
5319MT9V032 SENSOR DRIVER
5320M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5321L: linux-media@vger.kernel.org
5322T: git git://linuxtv.org/media_tree.git
5323S: Maintained
5324F: drivers/media/i2c/mt9v032.c
5325F: include/media/mt9v032.h
5326
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005327MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005328M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005329T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005331F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005332
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005333MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005334M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005335L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005336T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005338F: drivers/mmc/
5339F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005340F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005341
David Brownell15a05802007-08-08 09:12:54 -07005342MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005343S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005344F: drivers/mmc/host/mmc_spi.c
5345F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005346
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005348M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005350F: Documentation/sound/oss/MultiSound
5351F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
Jiri Slabyd7354102006-12-08 02:38:35 -08005353MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005354S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005355F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005356F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005357
Felipe Balbi550a7372008-07-24 12:27:36 +03005358MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005359M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005360L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005361T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005364
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005365MXL5007T MEDIA DRIVER
5366M: Michael Krufky <mkrufky@linuxtv.org>
5367L: linux-media@vger.kernel.org
5368W: http://linuxtv.org/
5369W: http://github.com/mkrufky
5370Q: http://patchwork.linuxtv.org/project/linux-media/list/
5371T: git git://linuxtv.org/mkrufky/tuners.git
5372S: Maintained
5373F: drivers/media/tuners/mxl5007t.*
5374
Brice Goglin2d3cf582008-05-17 12:45:36 +02005375MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005377L: netdev@vger.kernel.org
5378W: http://www.myri.com/scs/download-Myri10GE.html
5379S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005380F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005381
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005383S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005384F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Daniel Mack23dc05a2011-05-18 11:28:38 +02005386NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5387M: Daniel Mack <zonque@gmail.com>
5388S: Maintained
5389L: alsa-devel@alsa-project.org
5390W: http://www.native-instruments.com
5391F: sound/usb/caiaq/
5392
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005394M: Petr Vandrovec <petr@vandrovec.name>
5395S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005396F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
5398NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005399M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400L: linux-scsi@vger.kernel.org
5401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005402F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005404NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005405M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005406L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005407W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005408S: Supported
5409F: drivers/infiniband/hw/nes/
5410
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005411NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005412M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005413L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005416
Jon Masonb2f5a052010-07-15 08:47:27 +00005417NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005418M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005419L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005421F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005422F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005423F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005424
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426P: Harald Welte
5427P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005428M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005429M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005430L: netfilter-devel@vger.kernel.org
5431L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005432L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433W: http://www.netfilter.org/
5434W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005435T: git git://1984.lsi.us.es/nf
5436T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005438F: include/linux/netfilter*
5439F: include/linux/netfilter/
5440F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005441F: include/uapi/linux/netfilter*
5442F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005443F: net/*/netfilter.c
5444F: net/*/netfilter/
5445F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Paul Moore4cc67732006-09-25 15:57:13 -07005447NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005448M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005449W: http://netlabel.sf.net
5450L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005451S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005452F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005453F: include/net/netlabel.h
5454F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005455
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005457M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005459W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005461F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005462F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005463F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005465NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005466M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005468L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005469F: Documentation/blockdev/nbd.txt
5470F: drivers/block/nbd.c
5471F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005472F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Neil Horman6e436502009-10-05 03:56:55 +00005474NETWORK DROP MONITOR
5475M: Neil Horman <nhorman@tuxdriver.com>
5476L: netdev@vger.kernel.org
5477S: Maintained
5478W: https://fedorahosted.org/dropwatch/
5479F: net/core/drop_monitor.c
5480
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005483L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005484W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005485Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005486T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5487T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: net/
5490F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005491F: include/linux/in.h
5492F: include/linux/net.h
5493F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005494F: include/uapi/linux/in.h
5495F: include/uapi/linux/net.h
5496F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497
5498NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005499M: "David S. Miller" <davem@davemloft.net>
5500M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: James Morris <jmorris@namei.org>
5502M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5503M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005504L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005505T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005507F: net/ipv4/
5508F: net/ipv6/
5509F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005510F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
David S. Miller73b76562012-10-16 14:08:40 -04005512NETWORKING [IPSEC]
5513M: Steffen Klassert <steffen.klassert@secunet.com>
5514M: Herbert Xu <herbert@gondor.apana.org.au>
5515M: "David S. Miller" <davem@davemloft.net>
5516L: netdev@vger.kernel.org
5517T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5518S: Maintained
5519F: net/xfrm/
5520F: net/key/
5521F: net/ipv4/xfrm*
5522F: net/ipv6/xfrm*
5523F: include/uapi/linux/xfrm.h
5524F: include/net/xfrm.h
5525
James Morris10e2ff12007-08-25 14:41:28 -07005526NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005527M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005528L: netdev@vger.kernel.org
5529S: Maintained
5530
John W. Linville29f8f632006-01-18 14:52:48 -08005531NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005532M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005533L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005534Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005535T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005536S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005537F: net/mac80211/
5538F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005539F: net/wireless/
5540F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005541F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005542F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005543F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005544F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005545
Joe Perches788873a2009-04-16 09:38:45 +00005546NETWORKING DRIVERS
5547L: netdev@vger.kernel.org
5548W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005549Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005550T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5551T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005552S: Odd Fixes
5553F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005554F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005555F: include/linux/netdevice.h
5556F: include/linux/arcdevice.h
5557F: include/linux/etherdevice.h
5558F: include/linux/fcdevice.h
5559F: include/linux/fddidevice.h
5560F: include/linux/hippidevice.h
5561F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005562F: include/uapi/linux/if_*
5563F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005564
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005565NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005566M: Sony Chacko <sony.chacko@qlogic.com>
5567M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005568L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005569W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005570S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005571F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005572
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005573NFC SUBSYSTEM
5574M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5575M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5576M: Samuel Ortiz <sameo@linux.intel.com>
5577L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005578L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005579S: Maintained
5580F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005581F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005582F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005583F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005584F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005586NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005588L: linux-nfs@vger.kernel.org
5589W: http://client.linux-nfs.org
5590T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005592F: fs/lockd/
5593F: fs/nfs/
5594F: fs/nfs_common/
5595F: net/sunrpc/
5596F: include/linux/lockd/
5597F: include/linux/nfs*
5598F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005599F: include/uapi/linux/nfs*
5600F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005602NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005603M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005604L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005605W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005606T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005608F: Documentation/filesystems/nilfs2.txt
5609F: fs/nilfs2/
5610F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005611
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005613M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005616F: Documentation/scsi/NinjaSCSI.txt
5617F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
5619NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: GOTO Masanori <gotom@debian.or.jp>
5621M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005624F: Documentation/scsi/NinjaSCSI.txt
5625F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Jon Masonfce8a7b2012-11-16 19:27:12 -07005627NTB DRIVER
5628M: Jon Mason <jon.mason@intel.com>
5629S: Supported
5630F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005631F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005632F: include/linux/ntb.h
5633
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005635M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005637W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005638T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005640F: Documentation/filesystems/ntfs.txt
5641F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005643NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005644M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005645L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005647F: drivers/video/riva/
5648F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Matthew Wilcox79461682012-11-10 08:54:53 -05005650NVM EXPRESS DRIVER
5651M: Matthew Wilcox <willy@linux.intel.com>
5652L: linux-nvme@lists.infradead.org
5653T: git git://git.infradead.org/users/willy/linux-nvme.git
5654S: Supported
5655F: drivers/block/nvme.c
5656F: include/linux/nvme.h
5657
Tony Lindgrenf5525782009-05-28 13:23:53 -07005658OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005659M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005660L: linux-omap@vger.kernel.org
5661W: http://www.muru.com/linux/omap/
5662W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005663Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005664T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005665S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005666F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005667F: drivers/i2c/busses/i2c-omap.c
5668F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005669
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005670OMAP DEVICE TREE SUPPORT
5671M: Benoît Cousson <b-cousson@ti.com>
5672M: Tony Lindgren <tony@atomide.com>
5673L: linux-omap@vger.kernel.org
5674L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5675S: Maintained
5676F: arch/arm/boot/dts/*omap*
5677F: arch/arm/boot/dts/*am3*
5678
Tony Lindgrenf5525782009-05-28 13:23:53 -07005679OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005680M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005681L: linux-omap@vger.kernel.org
5682S: Maintained
5683F: arch/arm/*omap*/*clock*
5684
5685OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005686M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005687L: linux-omap@vger.kernel.org
5688S: Maintained
5689F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005690F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005691
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005692OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5693M: Rajendra Nayak <rnayak@ti.com>
5694M: Paul Walmsley <paul@pwsan.com>
5695L: linux-omap@vger.kernel.org
5696S: Maintained
5697F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5698F: arch/arm/mach-omap2/powerdomain44xx.c
5699F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5700F: arch/arm/mach-omap2/clockdomain44xx.c
5701
Tony Lindgrenf5525782009-05-28 13:23:53 -07005702OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005703M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005704M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005705L: alsa-devel@alsa-project.org (subscribers-only)
5706L: linux-omap@vger.kernel.org
5707S: Maintained
5708F: sound/soc/omap/
5709
5710OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005711M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005712L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005713L: linux-omap@vger.kernel.org
5714S: Maintained
5715F: drivers/video/omap/
5716
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005717OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005718M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005719L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005720L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005721S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005722F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005723F: Documentation/arm/OMAP/DSS
5724
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005725OMAP HARDWARE SPINLOCK SUPPORT
5726M: Ohad Ben-Cohen <ohad@wizery.com>
5727L: linux-omap@vger.kernel.org
5728S: Maintained
5729F: drivers/hwspinlock/omap_hwspinlock.c
5730F: arch/arm/mach-omap2/hwspinlock.c
5731
Tony Lindgrenf5525782009-05-28 13:23:53 -07005732OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005733M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005734L: linux-omap@vger.kernel.org
5735S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005736F: drivers/mmc/host/omap.c
5737
5738OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305739M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305740L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005741L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305742S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005743F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005744
5745OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005746M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005747S: Maintained
5748F: drivers/char/hw_random/omap-rng.c
5749
Paul Walmsleyf400c822010-12-06 19:08:54 -07005750OMAP HWMOD SUPPORT
5751M: Benoît Cousson <b-cousson@ti.com>
5752M: Paul Walmsley <paul@pwsan.com>
5753L: linux-omap@vger.kernel.org
5754S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005755F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005756
5757OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5758M: Benoît Cousson <b-cousson@ti.com>
5759L: linux-omap@vger.kernel.org
5760S: Maintained
5761F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5762
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005763OMAP IMAGE SIGNAL PROCESSOR (ISP)
5764M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5765L: linux-media@vger.kernel.org
5766S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005767F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005768
Tony Lindgrenf5525782009-05-28 13:23:53 -07005769OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005770M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005771L: linux-usb@vger.kernel.org
5772L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005773T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005774S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005775F: drivers/usb/*/*omap*
5776F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005777
Kevin Hilman6d994712012-07-16 10:05:07 -07005778OMAP GPIO DRIVER
5779M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5780M: Kevin Hilman <khilman@ti.com>
5781L: linux-omap@vger.kernel.org
5782S: Maintained
5783F: drivers/gpio/gpio-omap.c
5784
Bob Copeland0ad122d2008-07-25 19:45:18 -07005785OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005786M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005787L: linux-karma-devel@lists.sourceforge.net
5788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005789F: Documentation/filesystems/omfs.txt
5790F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005791
Harald Weltec1986ee2005-11-13 16:06:29 -08005792OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005793M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: drivers/char/pcmcia/cm4000_cs.c
5796F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005797F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005798
Harald Welte77c44ab2005-11-13 16:06:26 -08005799OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005800M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005802F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005803
Jonathan Corbet77d51402007-03-22 19:44:17 -03005804OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005805M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005806L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005807T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005808S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005809F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005810
Thomas Gleixner431bca72007-05-02 09:31:35 +02005811ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005812M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005813L: linux-mtd@lists.infradead.org
5814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005815F: drivers/mtd/onenand/
5816F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005817
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005819M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820L: osst-users@lists.sourceforge.net
5821L: linux-scsi@vger.kernel.org
5822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: drivers/scsi/osst*
5824F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005826OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005828L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005830F: Documentation/i2c/busses/i2c-ocores
5831F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005832
Grant Likely860c44c2009-10-26 16:49:49 -07005833OPEN FIRMWARE AND FLATTENED DEVICE TREE
5834M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005835M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005836L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005837W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005838T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005839S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005840F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005841F: drivers/of
5842F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005843F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005844K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005845K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005846
Jonas Bonn19f9d392011-06-04 22:00:38 +03005847OPENRISC ARCHITECTURE
5848M: Jonas Bonn <jonas@southpole.se>
5849W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005850L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005851S: Maintained
5852T: git git://openrisc.net/~jonas/linux
5853F: arch/openrisc
5854
Jesse Grossccb13522011-10-25 19:26:31 -07005855OPENVSWITCH
5856M: Jesse Gross <jesse@nicira.com>
5857L: dev@openvswitch.org
5858W: http://openvswitch.org
5859T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5860S: Maintained
5861F: net/openvswitch/
5862
Clemens Ladischaf399172011-01-10 16:32:54 +01005863OPL4 DRIVER
5864M: Clemens Ladisch <clemens@ladisch.de>
5865L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5866T: git git://git.alsa-project.org/alsa-kernel.git
5867S: Maintained
5868F: sound/drivers/opl4/
5869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005871M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872L: oprofile-list@lists.sf.net
5873S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005874F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005875F: arch/*/oprofile/
5876F: drivers/oprofile/
5877F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005880M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005881M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005882L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5883W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005884T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005886F: Documentation/filesystems/ocfs2.txt
5887F: Documentation/filesystems/dlmfs.txt
5888F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005889
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005891L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005892W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005893W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005894S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005895F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005897OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005898M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005899M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005900L: osd-dev@open-osd.org
5901W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005902T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005903S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005904F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005905F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005906F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005907
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005908P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005909M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005910L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005911W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005913F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005914
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005915PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005916M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005917L: netdev@vger.kernel.org
5918S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005919F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005920
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005921PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005922M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005923L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005925F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005926
Steffen Klassert48fc2672010-08-13 10:10:46 -04005927PADATA PARALLEL EXECUTION MECHANISM
5928M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005929L: linux-crypto@vger.kernel.org
5930S: Maintained
5931F: kernel/padata.c
5932F: include/linux/padata.h
5933F: Documentation/padata.txt
5934
Harald Welte709ee532008-09-23 17:46:57 +02005935PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005936M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005937L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005939F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005940
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005941PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: David Howells <dhowells@redhat.com>
5943M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005944L: linux-am33-list@redhat.com (moderated for non-subscribers)
5945W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005947F: Documentation/mn10300/
5948F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005949
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005951L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005952S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005953F: drivers/parport/
5954F: include/linux/parport*.h
5955F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005956F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005958PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005959M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005960M: Chris Wright <chrisw@sous-sol.org>
5961M: Alok Kataria <akataria@vmware.com>
5962M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005963L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005964S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005965F: Documentation/ia64/paravirt_ops.txt
5966F: arch/*/kernel/paravirt*
5967F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005968
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005971L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972W: http://www.torque.net/linux-pp.html
5973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005974F: Documentation/blockdev/paride.txt
5975F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
5977PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005978M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005979M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005980L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005982Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005983T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: arch/parisc/
5986F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
Jim Cromie1662d322006-10-06 00:43:59 -07005988PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005989M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005990L: lm-sensors@lm-sensors.org
5991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005992F: Documentation/hwmon/pc87360
5993F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005994
5995PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005998F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005999
Jean Delvare1ad107f2010-08-14 21:09:00 +02006000PC87427 HARDWARE MONITORING DRIVER
6001M: Jean Delvare <khali@linux-fr.org>
6002L: lm-sensors@lm-sensors.org
6003S: Maintained
6004F: Documentation/hwmon/pc87427
6005F: drivers/hwmon/pc87427.c
6006
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006007PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006009S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006010F: drivers/leds/leds-pca9532.c
6011F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006012
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006013PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006014M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006015L: linux-i2c@vger.kernel.org
6016S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006017F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006018
Khalid Aziz3971dae2012-04-12 12:49:13 -07006019PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006020M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006021S: Maintained
6022F: drivers/firmware/pcdp.*
6023
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006024PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006025M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006026L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006028F: Documentation/PCI/pci-error-recovery.txt
6029F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006030
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006032M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006033L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006034Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006035T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006037F: Documentation/PCI/
6038F: drivers/pci/
6039F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006042P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006043L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006044W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006045T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006047F: Documentation/pcmcia/
6048F: drivers/pcmcia/
6049F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
6051PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006052M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006053L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006055F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Steffen Klassert48fc2672010-08-13 10:10:46 -04006057PCRYPT PARALLEL CRYPTO ENGINE
6058M: Steffen Klassert <steffen.klassert@secunet.com>
6059L: linux-crypto@vger.kernel.org
6060S: Maintained
6061F: crypto/pcrypt.c
6062F: include/crypto/pcrypt.h
6063
Tejun Heoe72df0b2010-12-10 17:02:49 +01006064PER-CPU MEMORY ALLOCATOR
6065M: Tejun Heo <tj@kernel.org>
6066M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006067T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6068S: Maintained
6069F: include/linux/percpu*.h
6070F: mm/percpu*.c
6071F: arch/*/include/asm/percpu.h
6072
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006073PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006074M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006076F: include/linux/delayacct.h
6077F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006078
Ingo Molnar57c0c152009-09-21 12:20:38 +02006079PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006080M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6081M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006082M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006083M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006085S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006086F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006087F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006088F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006089F: arch/*/kernel/perf_event*.c
6090F: arch/*/kernel/*/perf_event*.c
6091F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006092F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006093F: arch/*/kernel/perf_callchain.c
6094F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006095
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006096PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006097M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006098L: linux-abi-devel@lists.sourceforge.net
6099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006100F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006101F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006102
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006103PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006104M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006105S: Supported
6106F: Documentation/networking/phonet.txt
6107F: include/linux/phonet.h
6108F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006109F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006110F: net/phonet/
6111
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006113M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114L: linux-mtd@lists.infradead.org
6115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
Bruno Prémontefdbb102012-07-30 21:39:03 +02006118PICOLCD HID DRIVER
6119M: Bruno Prémont <bonbons@linux-vserver.org>
6120L: linux-input@vger.kernel.org
6121S: Maintained
6122F: drivers/hid/hid-picolcd*
6123
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006124PICOXCELL SUPPORT
6125M: Jamie Iles <jamie@jamieiles.com>
6126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6127T: git git://github.com/jamieiles/linux-2.6-ji.git
6128S: Supported
6129F: arch/arm/mach-picoxcell
6130F: drivers/*/picoxcell*
6131F: drivers/*/*/picoxcell*
6132
Linus Walleij2744e8a2011-05-02 20:50:54 +02006133PIN CONTROL SUBSYSTEM
6134M: Linus Walleij <linus.walleij@linaro.org>
6135S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006136F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006137F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006138
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006139PIN CONTROLLER - ATMEL AT91
6140M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6142S: Maintained
6143F: drivers/pinctrl/pinctrl-at91.c
6144
Viresh Kumardeda8282012-03-28 22:27:07 +05306145PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006146M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306147L: spear-devel@list.st.com
6148L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6149W: http://www.st.com/spear
6150S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006151F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306152
Peter Osterlund249a6772005-09-27 21:45:30 -07006153PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006154M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: drivers/block/pktcdvd.c
6157F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006158F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006159
GuanXuetaob31d8272011-01-16 00:35:49 +08006160PKUNITY SOC DRIVERS
6161M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6162W: http://mprc.pku.edu.cn/~guanxuetao/linux
6163S: Maintained
6164T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6165F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006166F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006167F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006168F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006169
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006170PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006171M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006172L: lm-sensors@lm-sensors.org
6173W: http://www.lm-sensors.org/
6174W: http://www.roeck-us.net/linux/drivers/
6175T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6176S: Maintained
6177F: Documentation/hwmon/pmbus
6178F: drivers/hwmon/pmbus/
6179F: include/linux/i2c/pmbus.h
6180
Anil Ravindranath89a36812009-08-25 17:35:18 -07006181PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006182M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006183L: linux-scsi@vger.kernel.org
6184W: http://www.pmc-sierra.com/
6185S: Supported
6186F: drivers/scsi/pmcraid.*
6187
jack wangdbf9bfe2009-10-14 16:19:21 +08006188PMC SIERRA PM8001 DRIVER
6189M: jack_wang@usish.com
6190M: lindar_liu@usish.com
6191L: linux-scsi@vger.kernel.org
6192S: Supported
6193F: drivers/scsi/pm8001/
6194
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006196M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006197T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006199F: fs/timerfd.c
6200F: include/linux/timer*
6201F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Anton Vorontsov3be86142007-07-15 04:43:36 +04006203POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006204M: Anton Vorontsov <cbou@mail.ru>
6205M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006206T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006208F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006209F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006210
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006212M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006213M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Vitaly Wool999445d2007-01-04 13:07:03 +01006217PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006218M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006219L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006222
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006224M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225L: linux-ppp@vger.kernel.org
6226S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006227F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228
6229PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006230M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006232F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006233F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234
6235PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006236M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006238F: drivers/net/ppp/pppoe.c
6239F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
James Chapmana6d23702007-06-27 15:53:17 -07006241PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006243S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006244F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006245F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006246F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006247
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006248PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006249M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006250W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6251L: linuxpps@ml.enneenne.com (subscribers-only)
6252S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006253F: Documentation/pps/
6254F: drivers/pps/
6255F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006256
Harry Wei71a6d0a2011-05-11 15:13:33 -07006257PPTP DRIVER
6258M: Dmitry Kozlov <xeb@mail.ru>
6259L: netdev@vger.kernel.org
6260S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006261F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006262W: http://sourceforge.net/projects/accel-pptp
6263
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006265M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266L: kpreempt-tech@lists.sourceforge.net
6267W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006269F: Documentation/preempt-locking.txt
6270F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271
6272PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006274L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006275W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006276S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006277F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006279PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006281L: linux-ide@vger.kernel.org
6282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006284
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006285PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006286M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006287L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006288L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006289S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006290F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006291
Geoff Levandf58a9d12006-11-23 00:46:51 +01006292PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006293M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006294L: linuxppc-dev@lists.ozlabs.org
6295L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006297F: arch/powerpc/boot/ps3*
6298F: arch/powerpc/include/asm/lv1call.h
6299F: arch/powerpc/include/asm/ps3*.h
6300F: arch/powerpc/platforms/ps3/
6301F: drivers/*/ps3*
6302F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006303F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006304F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006305F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006306
Jim Pariscffb4add2009-01-06 11:32:10 +00006307PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006308M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006309L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006310S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006311F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006312
Anton Vorontsov8defe592012-08-03 18:07:20 -07006313PSTORE FILESYSTEM
6314M: Anton Vorontsov <cbouatmailru@gmail.com>
6315M: Colin Cross <ccross@android.com>
6316M: Kees Cook <keescook@chromium.org>
6317M: Tony Luck <tony.luck@intel.com>
6318S: Maintained
6319T: git git://git.infradead.org/users/cbou/linux-pstore.git
6320F: fs/pstore/
6321F: include/linux/pstore*
6322F: drivers/firmware/efivars.c
6323F: drivers/acpi/apei/erst.c
6324
Richard Cochran7fbc4152012-03-10 01:55:53 +00006325PTP HARDWARE CLOCK SUPPORT
6326M: Richard Cochran <richardcochran@gmail.com>
6327S: Maintained
6328W: http://linuxptp.sourceforge.net/
6329F: Documentation/ABI/testing/sysfs-ptp
6330F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006331F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006332F: drivers/net/phy/dp83640*
6333F: drivers/ptp/*
6334F: include/linux/ptp_cl*
6335
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006336PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Roland McGrath <roland@redhat.com>
6338M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006339S: Maintained
6340F: include/asm-generic/syscall.h
6341F: include/linux/ptrace.h
6342F: include/linux/regset.h
6343F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006344F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006345F: kernel/ptrace.c
6346
Michael Krufky83202042006-07-03 00:24:18 -07006347PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006348M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006349L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006350L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006351W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006352T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006354F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006355F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006356
Hans de Goede39532e62012-11-04 17:05:59 -03006357PWC WEBCAM DRIVER
6358M: Hans de Goede <hdegoede@redhat.com>
6359L: linux-media@vger.kernel.org
6360T: git git://linuxtv.org/media_tree.git
6361S: Maintained
6362F: drivers/media/usb/pwc/*
6363
Thierry Reding200efed2012-03-27 13:16:18 +02006364PWM SUBSYSTEM
6365M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006366L: linux-kernel@vger.kernel.org
6367S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006368W: http://gitorious.org/linux-pwm
6369T: git git://gitorious.org/linux-pwm/linux-pwm.git
6370F: Documentation/pwm.txt
6371F: Documentation/devicetree/bindings/pwm/
6372F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006373F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006374F: drivers/video/backlight/pwm_bl.c
6375F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006376
Eric Miao30ec2612008-06-12 15:21:41 -07006377PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Eric Miao <eric.y.miao@gmail.com>
6379M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006380M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006381L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006382T: git git://github.com/hzhuang1/linux.git
6383T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006385F: arch/arm/mach-pxa/
6386F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006387F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006388F: drivers/usb/gadget/pxa2*
6389F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006390F: sound/arm/pxa*
6391F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006393MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006395M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006396L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006397T: git git://github.com/hzhuang1/linux.git
6398T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006399S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006400F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006401
Pierre Ossman272f1332007-05-14 21:25:26 +02006402PXA MMCI DRIVER
6403S: Orphan
6404
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006405PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006407L: rtc-linux@googlegroups.com
6408S: Maintained
6409
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006410QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006411M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006412L: linux-rdma@vger.kernel.org
6413S: Supported
6414F: drivers/infiniband/hw/qib/
6415
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006416QLOGIC QLA1280 SCSI DRIVER
6417M: Michael Reed <mdr@sgi.com>
6418L: linux-scsi@vger.kernel.org
6419S: Maintained
6420F: drivers/scsi/qla1280.[ch]
6421
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006424M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425L: linux-scsi@vger.kernel.org
6426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006427F: Documentation/scsi/LICENSE.qla2xxx
6428F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429
Ravi Anand883c98f2010-04-28 11:45:49 +05306430QLOGIC QLA4XXX iSCSI DRIVER
6431M: Ravi Anand <ravi.anand@qlogic.com>
6432M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6433M: iscsi-driver@qlogic.com
6434L: linux-scsi@vger.kernel.org
6435S: Supported
6436F: drivers/scsi/qla4xxx/
6437
Ron Mercer5a4faa872006-07-25 00:40:21 -07006438QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006439M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006441M: linux-driver@qlogic.com
6442L: netdev@vger.kernel.org
6443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006444F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006445F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006446
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006447QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006448M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6449M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006450M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006451M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006452M: linux-driver@qlogic.com
6453L: netdev@vger.kernel.org
6454S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006455F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006456
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006457QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006458M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006459M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006460M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006461L: netdev@vger.kernel.org
6462S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006463F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006464
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467W: http://www.alarsen.net/linux/qnx4fs/
6468S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006469F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006470F: include/uapi/linux/qnx4_fs.h
6471F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472
Antti Palosaari91952bc2012-10-01 12:28:46 -03006473QT1010 MEDIA DRIVER
6474M: Antti Palosaari <crope@iki.fi>
6475L: linux-media@vger.kernel.org
6476W: http://linuxtv.org/
6477W: http://palosaari.fi/linux/
6478Q: http://patchwork.linuxtv.org/project/linux-media/list/
6479T: git git://linuxtv.org/anttip/media_tree.git
6480S: Maintained
6481F: drivers/media/tuners/qt1010*
6482
Richard Kuo4f4567c2011-10-31 18:56:38 -05006483QUALCOMM HEXAGON ARCHITECTURE
6484M: Richard Kuo <rkuo@codeaurora.org>
6485L: linux-hexagon@vger.kernel.org
6486S: Supported
6487F: arch/hexagon/
6488
Hans Verkuil35e35402012-11-23 07:02:29 -03006489QUICKCAM PARALLEL PORT WEBCAMS
6490M: Hans Verkuil <hverkuil@xs4all.nl>
6491L: linux-media@vger.kernel.org
6492T: git git://linuxtv.org/media_tree.git
6493W: http://linuxtv.org
6494S: Odd Fixes
6495F: drivers/media/parport/*-qcam*
6496
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006497RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006498M: Yehuda Sadeh <yehuda@inktank.com>
6499M: Sage Weil <sage@inktank.com>
6500M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006501M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006502W: http://ceph.com/
6503T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006504S: Supported
6505F: drivers/block/rbd.c
6506F: drivers/block/rbd_types.h
6507
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006509M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006510L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006512F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006513F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Hans de Goedec6c9b342012-11-04 17:03:58 -03006515RADIOSHARK RADIO DRIVER
6516M: Hans de Goede <hdegoede@redhat.com>
6517L: linux-media@vger.kernel.org
6518T: git git://linuxtv.org/media_tree.git
6519S: Maintained
6520F: drivers/media/radio/radio-shark.c
6521
6522RADIOSHARK2 RADIO DRIVER
6523M: Hans de Goede <hdegoede@redhat.com>
6524L: linux-media@vger.kernel.org
6525T: git git://linuxtv.org/media_tree.git
6526S: Maintained
6527F: drivers/media/radio/radio-shark2.c
6528F: drivers/media/radio/radio-tea5777.c
6529
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006531M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006532L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006534F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
Randy Dunlape7839f22008-10-12 16:11:45 -07006536RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006537P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006538M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006539M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006540M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006541L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006542L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006543W: http://rt2x00.serialmonkey.com/
6544S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006545T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006546F: drivers/net/wireless/rt2x00/
6547
Nick Piggin9db55792008-02-08 04:19:49 -08006548RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006549M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006551F: Documentation/blockdev/ramdisk.txt
6552F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006553
josh.h.morris@us.ibm.com8722ff82013-02-05 14:15:02 +01006554RAMSAM DRIVER (IBM RamSan 70/80 PCI SSD Flash Card)
6555M: Joshua Morris <josh.h.morris@us.ibm.com>
6556M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
6557S: Maintained
6558F: drivers/block/rsxx/
6559
Matt Mackall9e95ce22005-04-16 15:25:56 -07006560RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006561M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006563F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006564
Matt Porter394b7012005-11-07 01:00:15 -08006565RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006566M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006567M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006569F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006571RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006572L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006573S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006574F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006575
6576RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Josh Triplett <josh@freedesktop.org>
6578M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006579S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006580T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006581F: Documentation/RCU/torture.txt
6582F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006583
Florian Fainellic1f766b2008-02-06 22:39:44 +01006584RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006586S: Maintained
6587
Florian Fainellidb17f392007-12-19 11:30:30 +01006588RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006589M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006590L: netdev@vger.kernel.org
6591S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006592F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006593
Andy Grovera09ed662009-02-24 15:30:41 +00006594RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006595M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006596L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006598F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006599
Josh Triplett595182b2006-10-04 02:17:21 -07006600READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006601M: Dipankar Sarma <dipankar@in.ibm.com>
6602M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006603W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006604S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006605T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006606F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006607X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006608F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006609F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006610X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006611
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006612REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006613M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006614L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006615Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006617F: Documentation/rtc.txt
6618F: drivers/rtc/
6619F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006620F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006623L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006625F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626
Mark Brownb83a3132011-05-11 19:59:58 +02006627REGISTER MAP ABSTRACTION
6628M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6629T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6630S: Supported
6631F: drivers/base/regmap/
6632F: include/linux/regmap.h
6633
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006634REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6635M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006636T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006637S: Maintained
6638F: drivers/remoteproc/
6639F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006640F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006641
Ivo van Doorne08976452008-04-12 19:23:55 +02006642RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006644L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006645W: http://wireless.kernel.org/
6646T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6647T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006648S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006649F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006650F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006651
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006652RICOH SMARTMEDIA/XD DRIVER
6653M: Maxim Levitsky <maximlevitsky@gmail.com>
6654S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006655F: drivers/mtd/nand/r852.c
6656F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006657
Maxim Levitsky92634122011-03-25 01:56:59 -07006658RICOH R5C592 MEMORYSTICK DRIVER
6659M: Maxim Levitsky <maximlevitsky@gmail.com>
6660S: Maintained
6661F: drivers/memstick/host/r592.*
6662
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663ROCKETPORT DRIVER
6664P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665W: http://www.comtrol.com
6666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006667F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006668F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669
6670ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006673W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006675F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006676F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006677F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
Antti Palosaari91952bc2012-10-01 12:28:46 -03006679RTL2830 MEDIA DRIVER
6680M: Antti Palosaari <crope@iki.fi>
6681L: linux-media@vger.kernel.org
6682W: http://linuxtv.org/
6683W: http://palosaari.fi/linux/
6684Q: http://patchwork.linuxtv.org/project/linux-media/list/
6685T: git git://linuxtv.org/anttip/media_tree.git
6686S: Maintained
6687F: drivers/media/dvb-frontends/rtl2830*
6688
Larry Finger59840482008-11-12 17:13:09 -06006689RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006690M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006691L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006692W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006693T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006694S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006695F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006696
Larry Finger59840482008-11-12 17:13:09 -06006697RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006698M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: Hin-Tak Leung <htl10@users.sourceforge.net>
6700M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006701L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006702W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006703T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006704S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006705F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006706
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006707RTL8192CE WIRELESS DRIVER
6708M: Larry Finger <Larry.Finger@lwfinger.net>
6709M: Chaoming Li <chaoming_li@realsil.com.cn>
6710L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006711W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006712T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6713S: Maintained
6714F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006715F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006716
6717S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006718M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006719L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006721F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006722
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723S390
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6725M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006727L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006728W: http://www.ibm.com/developerworks/linux/linux390/
6729S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006730F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006731F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006732F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006733F: Documentation/s390/
6734F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006735
6736S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006737M: Ursula Braun <ursula.braun@de.ibm.com>
6738M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006739M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006740L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006741W: http://www.ibm.com/developerworks/linux/linux390/
6742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006743F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006744
Felix Beckfeed9b62009-03-26 15:24:23 +01006745S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006746M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006747M: linux390@de.ibm.com
6748L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006749W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006750S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006751F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006752
Heiko Carstens5238da42006-02-11 17:56:01 -08006753S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006754M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006755M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006756L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006757W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006759F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Ursula Braundd96df22007-09-19 13:09:02 +02006761S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006763M: linux390@de.ibm.com
6764L: linux-s390@vger.kernel.org
6765W: http://www.ibm.com/developerworks/linux/linux390/
6766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006767F: drivers/s390/net/*iucv*
6768F: include/net/iucv/
6769F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006770
Ben Dooks4dde7f72008-06-30 22:40:38 +01006771S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006772M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006775F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006776
Hans Verkuil1f15a222012-11-23 07:45:29 -03006777SAA6588 RDS RECEIVER DRIVER
6778M: Hans Verkuil <hverkuil@xs4all.nl>
6779L: linux-media@vger.kernel.org
6780T: git git://linuxtv.org/media_tree.git
6781W: http://linuxtv.org
6782S: Odd Fixes
6783F: drivers/media/i2c/saa6588*
6784
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006785SAA7134 VIDEO4LINUX DRIVER
6786M: Mauro Carvalho Chehab <mchehab@redhat.com>
6787L: linux-media@vger.kernel.org
6788W: http://linuxtv.org
6789T: git git://linuxtv.org/media_tree.git
6790S: Odd fixes
6791F: Documentation/video4linux/saa7134/
6792F: drivers/media/pci/saa7134/
6793
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006795M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006796L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006797T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006799F: drivers/media/common/saa7146/
6800F: drivers/media/pci/saa7146/
6801F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
Corentin Chary92304a42011-12-05 12:38:35 -05006803SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006804M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006805L: platform-driver-x86@vger.kernel.org
6806S: Maintained
6807F: drivers/platform/x86/samsung-laptop.c
6808
Mark Brown4a109cc2010-09-24 10:50:46 +01006809SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006810M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006811L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6812S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006813F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006814
Jingoo Han0d89a282011-12-19 11:09:35 +09006815SAMSUNG FRAMEBUFFER DRIVER
6816M: Jingoo Han <jg1.han@samsung.com>
6817L: linux-fbdev@vger.kernel.org
6818S: Maintained
6819F: drivers/video/s3c-fb.c
6820
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006821SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6822M: Sangbeom Kim <sbkim73@samsung.com>
6823L: linux-kernel@vger.kernel.org
6824S: Supported
6825F: drivers/mfd/sec*.c
6826F: drivers/regulator/s2m*.c
6827F: drivers/regulator/s5m*.c
6828F: drivers/rtc/rtc-sec.c
6829F: include/linux/mfd/samsung/
6830
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006831SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6832M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6833L: linux-media@vger.kernel.org
6834L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6835S: Maintained
6836F: drivers/media/platform/s3c-camif/
6837F: include/media/s3c_camif.h
6838
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006839SAMSUNG S5C73M3 CAMERA DRIVER
6840M: Kyungmin Park <kyungmin.park@samsung.com>
6841M: Andrzej Hajda <a.hajda@samsung.com>
6842L: linux-media@vger.kernel.org
6843S: Supported
6844F: drivers/media/i2c/s5c73m3/*
6845
Alan Coxca749e22011-03-18 13:56:14 +00006846SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006847M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006848L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006849S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006850F: drivers/tty/serial
6851
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306852SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006853M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306854S: Maintained
6855F: include/linux/dw_dmac.h
6856F: drivers/dma/dw_dmac_regs.h
6857F: drivers/dma/dw_dmac.c
6858
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006859SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6860M: Seungwon Jeon <tgih.jun@samsung.com>
6861M: Jaehoon Chung <jh80.chung@samsung.com>
6862L: linux-mmc@vger.kernel.org
6863S: Maintained
6864F: include/linux/mmc/dw_mmc.h
6865F: drivers/mmc/host/dw_mmc*
6866
Thomas Gleixner88606e82010-12-14 21:37:13 +01006867TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006868M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006869M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006870T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006871S: Supported
6872F: include/linux/clocksource.h
6873F: include/linux/time.h
6874F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006875F: include/uapi/linux/time.h
6876F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006877F: kernel/time/clocksource.c
6878F: kernel/time/time*.c
6879F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006880F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006881
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006882TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006883M: Huang Shijie <shijie8@gmail.com>
6884M: Kang Yong <kangyong@telegent.com>
6885M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006886S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006887F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006888
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006890M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006892F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
6894SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006895M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006896M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006897T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006899F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006900F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006901F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
Chen Liqin6bcf6732009-06-13 15:24:33 +08006903SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006904M: Chen Liqin <liqin.chen@sunplusct.com>
6905M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006906W: http://www.sunplusct.com
6907S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006908F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006909
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006911M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912L: linux-scsi@vger.kernel.org
6913W: http://www.kernel.dk
6914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006915F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916
Roland Dreierfb50a832010-10-07 09:54:53 -07006917SCSI RDMA PROTOCOL (SRP) INITIATOR
6918M: David Dillow <dillowda@ornl.gov>
6919L: linux-rdma@vger.kernel.org
6920S: Supported
6921W: http://www.openfabrics.org
6922Q: http://patchwork.kernel.org/project/linux-rdma/list/
6923T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6924F: drivers/infiniband/ulp/srp/
6925F: include/scsi/srp.h
6926
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006928M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929L: linux-scsi@vger.kernel.org
6930W: http://www.torque.net/sg
6931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006932F: drivers/scsi/sg.c
6933F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934
6935SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006936M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006938T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6939T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6940T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006942F: drivers/scsi/
6943F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944
6945SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006946M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947L: linux-scsi@vger.kernel.org
6948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006949F: Documentation/scsi/st.txt
6950F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951
6952SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006953M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006954M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006955M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006956L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006957W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006959F: Documentation/networking/sctp.txt
6960F: include/linux/sctp.h
6961F: include/net/sctp/
6962F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963
6964SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006965M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006966S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006967F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006968F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006969F: drivers/watchdog/scx200_wdt.c
6970F: drivers/i2c/busses/scx200*
6971F: drivers/mtd/maps/scx200_docflash.c
6972F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006973
6974SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006975M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006977F: drivers/char/scx200_gpio.c
6978F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006979
6980SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006983F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984
Sascha Sommer6a369132008-07-15 14:21:29 +02006985SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006986M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006987L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006989F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006990
Randy Dunlape7839f22008-10-12 16:11:45 -07006991SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006992M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006993L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006994T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6995S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006996F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006997F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006998
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006999SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007001L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007002L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007004F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005
Ben Dooks0d1bb412009-06-14 13:52:37 +01007006SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007007M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007008L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007009S: Maintained
7010F: drivers/mmc/host/sdhci-s3c.c
7011
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007012SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007013M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007014L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007015L: linux-mmc@vger.kernel.org
7016S: Maintained
7017F: drivers/mmc/host/sdhci-spear.c
7018
James Morris8711cca2008-12-04 03:19:45 +11007019SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007020M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007021L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007022T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007023W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007024S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007025F: security/
James Morris8711cca2008-12-04 03:19:45 +11007026
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007028M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029S: Supported
7030
7031SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007033M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007035L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007036W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007037T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007039F: include/linux/selinux*
7040F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007041F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042
John Johansenc1c124e2010-07-29 14:48:09 -07007043APPARMOR SECURITY MODULE
7044M: John Johansen <john.johansen@canonical.com>
7045L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7046W: apparmor.wiki.kernel.org
7047T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7048S: Supported
7049F: security/apparmor/
7050
Jiri Slabycef2cf02007-05-08 00:31:45 -07007051SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007052M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007054F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007055F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007056
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007057SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007058M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007060T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007062F: drivers/ata/
7063F: include/linux/ata.h
7064F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307066SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007067M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007068L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007069W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007070S: Supported
7071F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307072
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007073SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007074M: Sathya Perla <sathya.perla@emulex.com>
7075M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7076M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007077L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007078W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007079S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007080F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007081
Ben Hutchings8ceee662008-04-27 12:55:59 +01007082SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007083M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007084M: Ben Hutchings <bhutchings@solarflare.com>
7085L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007086S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007087F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007088
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007089SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007090M: Dimitri Sivanich <sivanich@sgi.com>
7091M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007093F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007094
7095SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007096M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007097L: linux-ia64@vger.kernel.org
7098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007099F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007100F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007101F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007104M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105L: linux-visws-devel@lists.sf.net
7106W: http://linux-visws.sf.net
7107S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007108F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109
Jack Steiner75312612008-08-15 00:40:42 -07007110SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007111M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007113F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007114
Hans Verkuil49cc6292012-11-30 07:13:29 -03007115SI470X FM RADIO RECEIVER I2C DRIVER
7116M: Hans Verkuil <hverkuil@xs4all.nl>
7117L: linux-media@vger.kernel.org
7118T: git git://linuxtv.org/media_tree.git
7119W: http://linuxtv.org
7120S: Odd Fixes
7121F: drivers/media/radio/si470x/radio-si470x-i2c.c
7122
7123SI470X FM RADIO RECEIVER USB DRIVER
7124M: Hans Verkuil <hverkuil@xs4all.nl>
7125L: linux-media@vger.kernel.org
7126T: git git://linuxtv.org/media_tree.git
7127W: http://linuxtv.org
7128S: Maintained
7129F: drivers/media/radio/si470x/radio-si470x-common.c
7130F: drivers/media/radio/si470x/radio-si470x.h
7131F: drivers/media/radio/si470x/radio-si470x-usb.c
7132
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007133SH_VEU V4L2 MEM2MEM DRIVER
7134M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7135L: linux-media@vger.kernel.org
7136S: Maintained
7137F: drivers/media/platform/sh_veu.c
7138F: include/media/sh_veu.h
7139
7140SH_VOU V4L2 OUTPUT DRIVER
7141M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7142L: linux-media@vger.kernel.org
7143S: Maintained
7144F: drivers/media/platform/sh_vou.c
7145F: include/media/sh_vou.h
7146
Len Brown6349d992009-08-14 15:07:14 -04007147SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007148M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007149L: sfi-devel@simplefirmware.org
7150W: http://simplefirmware.org/
7151T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007152S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007153F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007154F: drivers/sfi/
7155F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007156
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157SIMTEC EB110ATX (Chalice CATS)
7158P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007159P: Vincent Sanders <vince@simtec.co.uk>
7160M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161W: http://www.simtec.co.uk/products/EB110ATX/
7162S: Supported
7163
7164SIMTEC EB2410ITX (BAST)
7165P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007166P: Vincent Sanders <vince@simtec.co.uk>
7167M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168W: http://www.simtec.co.uk/products/EB2410ITX/
7169S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007170F: arch/arm/mach-s3c2410/mach-bast.c
7171F: arch/arm/mach-s3c2410/bast-ide.c
7172F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007174TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007175M: Sekhar Nori <nsekhar@ti.com>
7176M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307177L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307178T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007179Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007180S: Supported
7181F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007182F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007183
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007184TI DAVINCI SERIES MEDIA DRIVER
7185M: Manjunath Hadli <manjunath.hadli@ti.com>
7186M: Prabhakar Lad <prabhakar.lad@ti.com>
7187L: linux-media@vger.kernel.org
7188L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7189W: http://linuxtv.org/
7190Q: http://patchwork.linuxtv.org/project/linux-media/list/
7191T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7192S: Supported
7193F: drivers/media/platform/davinci/
7194F: include/media/davinci/
7195
Francois Romieu92aab3c2005-07-30 13:11:18 +02007196SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007197M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007198L: netdev@vger.kernel.org
7199S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007200F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007201
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007203M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007205L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007207F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208
7209SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007210M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007213F: Documentation/fb/sisfb.txt
7214F: drivers/video/sis/
7215F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216
7217SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007218M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219W: http://www.winischhofer.at/linuxsisusbvga.shtml
7220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007221F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007223SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007225M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007226M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007227L: linux-mm@kvack.org
7228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007229F: include/linux/sl?b*.h
7230F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007231
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007232SLEEPABLE READ-COPY UPDATE (SRCU)
7233M: Lai Jiangshan <laijs@cn.fujitsu.com>
7234M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7235W: http://www.rdrop.com/users/paulmck/RCU/
7236S: Supported
7237T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7238F: include/linux/srcu*
7239F: kernel/srcu*
7240
Casey Schaufler66372842012-05-23 18:34:52 -07007241SMACK SECURITY MODULE
7242M: Casey Schaufler <casey@schaufler-ca.com>
7243L: linux-security-module@vger.kernel.org
7244W: http://schaufler-ca.com
7245T: git git://git.gitorious.org/smack-next/kernel.git
7246S: Maintained
7247F: Documentation/security/Smack.txt
7248F: security/smack/
7249
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007251M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007252S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007253F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
Sakari Ailuse8e31622012-11-12 18:14:39 -03007255SMIA AND SMIA++ IMAGE SENSOR DRIVER
7256M: Sakari Ailus <sakari.ailus@iki.fi>
7257L: linux-media@vger.kernel.org
7258S: Maintained
7259F: drivers/media/i2c/smiapp
7260F: include/media/smiapp.h
7261F: drivers/media/i2c/smiapp-pll.c
7262F: drivers/media/i2c/smiapp-pll.h
7263
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007264SMM665 HARDWARE MONITOR DRIVER
7265M: Guenter Roeck <linux@roeck-us.net>
7266L: lm-sensors@lm-sensors.org
7267S: Maintained
7268F: Documentation/hwmon/smm665
7269F: drivers/hwmon/smm665.c
7270
Steve Glendinning9df73052010-08-14 21:08:54 +02007271SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007272M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007273L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007274S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007275F: Documentation/hwmon/emc2103
7276F: drivers/hwmon/emc2103.c
7277
Hans de Goedea98d5062011-03-21 17:59:36 +01007278SMSC SCH5627 HARDWARE MONITOR DRIVER
7279M: Hans de Goede <hdegoede@redhat.com>
7280L: lm-sensors@lm-sensors.org
7281S: Supported
7282F: Documentation/hwmon/sch5627
7283F: drivers/hwmon/sch5627.c
7284
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007285SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007286M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007287L: lm-sensors@lm-sensors.org
7288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007289F: Documentation/hwmon/smsc47b397
7290F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007291
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007292SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007293M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007294L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007296F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007297F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007298
Steve Glendinning2cb37722008-12-11 20:54:30 -08007299SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007300M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007301L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007302S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007303F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007304
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007305SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007306M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007307L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007308S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007309F: drivers/video/smscufx.c
7310
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007311SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007313L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007314T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007315S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007316F: include/media/soc*
7317F: drivers/media/i2c/soc_camera/
7318F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007320SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007321M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007323F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007324
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007326M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007329F: drivers/md/
7330F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007331F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007334M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007337F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338
Michael Buesch61e115a2007-09-18 15:12:50 -04007339SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007340M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007341L: netdev@vger.kernel.org
7342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007343F: drivers/ssb/
7344F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007345
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007347M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007348L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007349W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007351F: Documentation/laptops/sony-laptop.txt
7352F: drivers/char/sonypi.c
7353F: drivers/platform/x86/sony-laptop.c
7354F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
Alex Dubovbaf85322008-02-09 10:20:54 -08007356SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007357M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007358W: http://tifmxx.berlios.de/
7359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007360F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007361
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Jaroslav Kysela <perex@perex.cz>
7364M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007365L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007366W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007367T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007368T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007370F: Documentation/sound/
7371F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007372F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007373F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Mark Brownbd903bd2008-11-19 19:16:05 +00007375SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007376M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007377M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007378T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007379L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007380W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007382F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007383F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007384
Sam Ravnborg473321f2009-01-04 15:47:49 -08007385SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007386M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007388Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007389T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7390T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007392F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007393F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
David S. Miller6404fcc2010-03-16 01:00:17 -07007395SPARC SERIAL DRIVERS
7396M: "David S. Miller" <davem@davemloft.net>
7397L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007398T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7399T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007400S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007401F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007402F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007403F: drivers/tty/serial/sunhv.c
7404F: drivers/tty/serial/sunsab.c
7405F: drivers/tty/serial/sunsab.h
7406F: drivers/tty/serial/sunsu.c
7407F: drivers/tty/serial/sunzilog.c
7408F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007409
Christopher Li389325b2012-04-05 14:25:14 -07007410SPARSE CHECKER
7411M: "Christopher Li" <sparse@chrisli.org>
7412L: linux-sparse@vger.kernel.org
7413W: https://sparse.wiki.kernel.org/
7414T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7415T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7416S: Maintained
7417F: include/linux/compiler.h
7418
viresh kumarfc0c1952010-04-01 12:31:21 +01007419SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007420M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307421M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007422L: spear-devel@list.st.com
7423L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007424W: http://www.st.com/spear
7425S: Maintained
7426F: arch/arm/plat-spear/
7427
Viresh Kumar71e09a92012-04-20 22:39:48 +05307428SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007429M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307430M: Shiraz Hashim <shiraz.hashim@st.com>
7431L: spear-devel@list.st.com
7432L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7433W: http://www.st.com/spear
7434S: Maintained
7435F: arch/arm/mach-spear13xx/
7436
viresh kumarfc0c1952010-04-01 12:31:21 +01007437SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007438M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307439M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007440L: spear-devel@list.st.com
7441L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007442W: http://www.st.com/spear
7443S: Maintained
7444F: arch/arm/mach-spear3xx/
7445
7446SPEAR6XX MACHINE SUPPORT
7447M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307448M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007449M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007450L: spear-devel@list.st.com
7451L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007452W: http://www.st.com/spear
7453S: Maintained
7454F: arch/arm/mach-spear6xx/
7455
7456SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007457M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007458L: spear-devel@list.st.com
7459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007460W: http://www.st.com/spear
7461S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307462F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007463
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007464SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007465M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007466M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007467L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007468Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007469T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007471F: Documentation/spi/
7472F: drivers/spi/
7473F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007474F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007475
Jim Lewis2752e402006-09-29 02:01:19 -07007476SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007477M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7478M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007479L: netdev@vger.kernel.org
7480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007481F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007482F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007484SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007485M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007486L: linuxppc-dev@lists.ozlabs.org
7487L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007488W: http://www.ibm.com/developerworks/power/cell/
7489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007490F: Documentation/filesystems/spufs.txt
7491F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007492
Phillip Lougherfc555842009-01-05 08:46:29 +00007493SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007494M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007495L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7496W: http://squashfs.org.uk
7497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007498F: Documentation/filesystems/squashfs.txt
7499F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007500
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007502M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505
Linus Torvalds26e9a392008-10-17 09:50:12 -07007506STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007507M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007508L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007509S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007510
Linus Torvalds26e9a392008-10-17 09:50:12 -07007511STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007512M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007513T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007514L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007516F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007517
Joe Perchesc8c8b102011-07-05 09:42:12 -07007518STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7519M: Henk de Groot <pe1dnn@amsat.org>
7520S: Odd Fixes
7521F: drivers/staging/wlags49_h2/
7522F: drivers/staging/wlags49_h25/
7523
Joe Perchesc9555152011-07-05 09:42:01 -07007524STAGING - ASUS OLED
7525M: Jakub Schmidtke <sjakub@gmail.com>
7526S: Odd Fixes
7527F: drivers/staging/asus_oled/
7528
Joe Perchesebd3d012011-07-05 09:42:02 -07007529STAGING - COMEDI
7530M: Ian Abbott <abbotti@mev.co.uk>
7531M: Mori Hess <fmhess@users.sourceforge.net>
7532S: Odd Fixes
7533F: drivers/staging/comedi/
7534
Joe Perches8ca572c2011-07-05 09:42:03 -07007535STAGING - CRYSTAL HD VIDEO DECODER
7536M: Naren Sankar <nsankar@broadcom.com>
7537M: Jarod Wilson <jarod@wilsonet.com>
7538M: Scott Davilla <davilla@4pi.com>
7539M: Manu Abraham <abraham.manu@gmail.com>
7540S: Odd Fixes
7541F: drivers/staging/crystalhd/
7542
Joe Perches0f16ffc2011-07-05 09:42:04 -07007543STAGING - ECHO CANCELLER
7544M: Steve Underwood <steveu@coppice.org>
7545M: David Rowe <david@rowetel.com>
7546S: Odd Fixes
7547F: drivers/staging/echo/
7548
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007549STAGING - ET131X NETWORK DRIVER
7550M: Mark Einon <mark.einon@gmail.com>
7551S: Odd Fixes
7552F: drivers/staging/et131x/
7553
Joe Perchesa0138162011-07-05 15:21:34 -07007554STAGING - FLARION FT1000 DRIVERS
7555M: Marek Belisko <marek.belisko@gmail.com>
7556S: Odd Fixes
7557F: drivers/staging/ft1000/
7558
Joe Perchesec3fab92011-07-05 09:42:05 -07007559STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7560M: David Täht <d@teklibre.com>
7561S: Odd Fixes
7562F: drivers/staging/frontier/
7563
Joe Perches6c1bb422011-07-05 09:42:07 -07007564STAGING - INDUSTRIAL IO
7565M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007566L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007567S: Odd Fixes
7568F: drivers/staging/iio/
7569
Joe Perchesa0138162011-07-05 15:21:34 -07007570STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7571M: Jarod Wilson <jarod@wilsonet.com>
7572W: http://www.lirc.org/
7573S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007574F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007575
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007576STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007577M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007578M: Marc Dietrich <marvin24@gmx.de>
7579L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007580L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007581S: Maintained
7582F: drivers/staging/nvec/
7583
Joe Perchesa0138162011-07-05 15:21:34 -07007584STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7585M: Andres Salomon <dilinger@queued.net>
7586M: Chris Ball <cjb@laptop.org>
7587M: Jon Nettleton <jon.nettleton@gmail.com>
7588W: http://wiki.laptop.org/go/DCON
7589S: Odd Fixes
7590F: drivers/staging/olpc_dcon/
7591
Chris Kelly94cfdd12012-03-14 10:55:42 +00007592STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007593M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007594S: Maintained
7595F: drivers/staging/ozwpan/
7596
Joe Perchesa0138162011-07-05 15:21:34 -07007597STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007598M: Willy Tarreau <willy@meta-x.org>
7599S: Odd Fixes
7600F: drivers/staging/panel/
7601
Joe Perchesa0138162011-07-05 15:21:34 -07007602STAGING - REALTEK RTL8712U DRIVERS
7603M: Larry Finger <Larry.Finger@lwfinger.net>
7604M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7605S: Odd Fixes
7606F: drivers/staging/rtl8712/
7607
Joe Perches9629fa82011-07-05 09:42:09 -07007608STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7609M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7610S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007611F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007612
Joe Perchesa0138162011-07-05 15:21:34 -07007613STAGING - SOFTLOGIC 6x10 MPEG CODEC
7614M: Ben Collins <bcollins@bluecherry.net>
7615S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007616F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007617
7618STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7619M: William Hubbs <w.d.hubbs@gmail.com>
7620M: Chris Brannon <chris@the-brannons.com>
7621M: Kirk Reiser <kirk@braille.uwo.ca>
7622M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7623L: speakup@braille.uwo.ca
7624W: http://www.linux-speakup.org/
7625S: Odd Fixes
7626F: drivers/staging/speakup/
7627
7628STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007629M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007630S: Odd Fixes
7631F: drivers/staging/tidspbridge/
7632
Joe Perchesa0138162011-07-05 15:21:34 -07007633STAGING - USB ENE SM/MS CARD READER DRIVER
7634M: Al Cho <acho@novell.com>
7635S: Odd Fixes
7636F: drivers/staging/keucr/
7637
Joe Perchesb3e871c2011-07-05 09:42:10 -07007638STAGING - VIA VT665X DRIVERS
7639M: Forest Bond <forest@alittletooquiet.net>
7640S: Odd Fixes
7641F: drivers/staging/vt665?/
7642
Joe Perches81a9a522011-07-05 09:42:11 -07007643STAGING - WINBOND IS89C35 WLAN USB DRIVER
7644M: Pavel Machek <pavel@ucw.cz>
7645S: Odd Fixes
7646F: drivers/staging/winbond/
7647
Joe Perches709bcb02011-07-05 09:42:13 -07007648STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007649M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007650S: Odd Fixes
7651F: drivers/staging/xgifb/
7652
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007654M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007655S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007656F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007658SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007660W: http://sammy.net/sun3/
7661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: arch/m68k/kernel/*sun3*
7663F: arch/m68k/sun3*/
7664F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007665F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007666
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007667SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007668M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007669L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007671Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007672T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007673S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007674F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007675F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007676F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007678SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007679M: Len Brown <len.brown@intel.com>
7680M: Pavel Machek <pavel@ucw.cz>
7681M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007682L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007683S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007684F: Documentation/power/
7685F: arch/x86/kernel/acpi/
7686F: drivers/base/power/
7687F: kernel/power/
7688F: include/linux/suspend.h
7689F: include/linux/freezer.h
7690F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
7692SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007693M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694L: linux-video@atrey.karlin.mff.cuni.cz
7695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: Documentation/svga.txt
7697F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007699SWIOTLB SUBSYSTEM
7700M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7701L: linux-kernel@vger.kernel.org
7702S: Supported
7703F: lib/swiotlb.c
7704F: arch/*/kernel/pci-swiotlb.c
7705F: include/linux/swiotlb.h
7706
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307707SYNOPSYS ARC ARCHITECTURE
7708M: Vineet Gupta <vgupta@synopsys.com>
7709L: linux-snps-arc@vger.kernel.org
7710S: Supported
7711F: arch/arc/
7712
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007714M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007716F: Documentation/filesystems/sysv-fs.txt
7717F: fs/sysv/
7718F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007720TARGET SUBSYSTEM
7721M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7722L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007723L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007724L: http://groups.google.com/group/linux-iscsi-target-dev
7725W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007726T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007727S: Supported
7728F: drivers/target/
7729F: include/target/
7730F: Documentation/target/
7731
Alan Cox4e688522008-04-30 00:52:11 -07007732TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007733M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007735F: Documentation/accounting/taskstats*
7736F: include/linux/taskstats*
7737F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007738
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007739TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007740M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007741L: netdev@vger.kernel.org
7742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007743F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007744F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007745F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007746
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007747TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007748M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7749M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007750W: http://tcp-lp-mod.sourceforge.net/
7751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007753
Antti Palosaari91952bc2012-10-01 12:28:46 -03007754TDA10071 MEDIA DRIVER
7755M: Antti Palosaari <crope@iki.fi>
7756L: linux-media@vger.kernel.org
7757W: http://linuxtv.org/
7758W: http://palosaari.fi/linux/
7759Q: http://patchwork.linuxtv.org/project/linux-media/list/
7760T: git git://linuxtv.org/anttip/media_tree.git
7761S: Maintained
7762F: drivers/media/dvb-frontends/tda10071*
7763
7764TDA18212 MEDIA DRIVER
7765M: Antti Palosaari <crope@iki.fi>
7766L: linux-media@vger.kernel.org
7767W: http://linuxtv.org/
7768W: http://palosaari.fi/linux/
7769Q: http://patchwork.linuxtv.org/project/linux-media/list/
7770T: git git://linuxtv.org/anttip/media_tree.git
7771S: Maintained
7772F: drivers/media/tuners/tda18212*
7773
7774TDA18218 MEDIA DRIVER
7775M: Antti Palosaari <crope@iki.fi>
7776L: linux-media@vger.kernel.org
7777W: http://linuxtv.org/
7778W: http://palosaari.fi/linux/
7779Q: http://patchwork.linuxtv.org/project/linux-media/list/
7780T: git git://linuxtv.org/anttip/media_tree.git
7781S: Maintained
7782F: drivers/media/tuners/tda18218*
7783
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007784TDA18271 MEDIA DRIVER
7785M: Michael Krufky <mkrufky@linuxtv.org>
7786L: linux-media@vger.kernel.org
7787W: http://linuxtv.org/
7788W: http://github.com/mkrufky
7789Q: http://patchwork.linuxtv.org/project/linux-media/list/
7790T: git git://linuxtv.org/mkrufky/tuners.git
7791S: Maintained
7792F: drivers/media/tuners/tda18271*
7793
Michael Krufkye48307a2012-10-02 00:56:33 -03007794TDA827x MEDIA DRIVER
7795M: Michael Krufky <mkrufky@linuxtv.org>
7796L: linux-media@vger.kernel.org
7797W: http://linuxtv.org/
7798W: http://github.com/mkrufky
7799Q: http://patchwork.linuxtv.org/project/linux-media/list/
7800T: git git://linuxtv.org/mkrufky/tuners.git
7801S: Maintained
7802F: drivers/media/tuners/tda8290.*
7803
Michael Krufky66cf9212012-10-02 00:56:28 -03007804TDA8290 MEDIA DRIVER
7805M: Michael Krufky <mkrufky@linuxtv.org>
7806L: linux-media@vger.kernel.org
7807W: http://linuxtv.org/
7808W: http://github.com/mkrufky
7809Q: http://patchwork.linuxtv.org/project/linux-media/list/
7810T: git git://linuxtv.org/mkrufky/tuners.git
7811S: Maintained
7812F: drivers/media/tuners/tda8290.*
7813
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007814TDA9840 MEDIA DRIVER
7815M: Hans Verkuil <hverkuil@xs4all.nl>
7816L: linux-media@vger.kernel.org
7817T: git git://linuxtv.org/media_tree.git
7818W: http://linuxtv.org
7819S: Maintained
7820F: drivers/media/i2c/tda9840*
7821
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007822TEA5761 TUNER DRIVER
7823M: Mauro Carvalho Chehab <mchehab@redhat.com>
7824L: linux-media@vger.kernel.org
7825W: http://linuxtv.org
7826T: git git://linuxtv.org/media_tree.git
7827S: Odd fixes
7828F: drivers/media/tuners/tea5761.*
7829
7830TEA5767 TUNER DRIVER
7831M: Mauro Carvalho Chehab <mchehab@redhat.com>
7832L: linux-media@vger.kernel.org
7833W: http://linuxtv.org
7834T: git git://linuxtv.org/media_tree.git
7835S: Maintained
7836F: drivers/media/tuners/tea5767.*
7837
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007838TEA6415C MEDIA DRIVER
7839M: Hans Verkuil <hverkuil@xs4all.nl>
7840L: linux-media@vger.kernel.org
7841T: git git://linuxtv.org/media_tree.git
7842W: http://linuxtv.org
7843S: Maintained
7844F: drivers/media/i2c/tea6415c*
7845
7846TEA6420 MEDIA DRIVER
7847M: Hans Verkuil <hverkuil@xs4all.nl>
7848L: linux-media@vger.kernel.org
7849T: git git://linuxtv.org/media_tree.git
7850W: http://linuxtv.org
7851S: Maintained
7852F: drivers/media/i2c/tea6420*
7853
Jiri Pirko3d249d42011-11-11 22:16:48 +00007854TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007855M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007856L: netdev@vger.kernel.org
7857S: Supported
7858F: drivers/net/team/
7859F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007860F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007861
Vivien Didelot7d029122013-01-04 16:18:14 -05007862TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7863M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7864S: Maintained
7865F: arch/x86/platform/ts5500/
7866
Sean Young40ad4a32012-11-19 10:32:53 -03007867TECHNOTREND USB IR RECEIVER
7868M: Sean Young <sean@mess.org>
7869L: linux-media@vger.kernel.org
7870S: Maintained
7871F: drivers/media/rc/ttusbir.c
7872
Erik Gilling84b94142010-06-09 15:35:53 -07007873TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007874M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007875L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007876Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7877T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007878S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007879K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007880
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007881TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007882M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007883L: netdev@vger.kernel.org
7884S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007885F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007886
Alan Cox4e688522008-04-30 00:52:11 -07007887Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007890F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007891
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007892TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007893M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007894M: Max Filippov <jcmvbkbc@gmail.com>
7895L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007897F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007898
Zhang Ruid3fb6952012-11-15 08:58:27 +08007899THERMAL
7900M: Zhang Rui <rui.zhang@intel.com>
7901L: linux-pm@vger.kernel.org
7902T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7903S: Supported
7904F: drivers/thermal/
7905F: include/linux/thermal.h
7906
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007907THINGM BLINK(1) USB RGB LED DRIVER
7908M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7909S: Maintained
7910F: drivers/hid/hid-thingm.c
7911
Alan Cox4e688522008-04-30 00:52:11 -07007912THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007913M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007914L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007915L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007916W: http://ibm-acpi.sourceforge.net
7917W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007918T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007920F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007921
Alex Dubov4020f2d2006-10-04 02:15:37 -07007922TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007923M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007925F: drivers/misc/tifm*
7926F: drivers/mmc/host/tifm_sd.c
7927F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007928
M R Swami Reddy152ad442012-04-02 20:02:31 +05307929TI LM49xxx FAMILY ASoC CODEC DRIVERS
7930M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307931M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307932L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7933S: Maintained
7934F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307935F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307936
Kim, Milo0edd8072012-12-17 16:01:17 -08007937TI LP855x BACKLIGHT DRIVER
7938M: Milo Kim <milo.kim@ti.com>
7939S: Maintained
7940F: Documentation/backlight/lp855x-driver.txt
7941F: drivers/video/backlight/lp855x_bl.c
7942F: include/linux/platform_data/lp855x.h
7943
Kim, Milofaf13f62012-12-10 05:27:03 +00007944TI LP8727 CHARGER DRIVER
7945M: Milo Kim <milo.kim@ti.com>
7946S: Maintained
7947F: drivers/power/lp8727_charger.c
7948F: include/linux/platform_data/lp8727.h
7949
Kim, Milo22f12292012-12-10 05:27:55 +00007950TI LP8788 MFD DRIVER
7951M: Milo Kim <milo.kim@ti.com>
7952S: Maintained
7953F: drivers/iio/adc/lp8788_adc.c
7954F: drivers/leds/leds-lp8788.c
7955F: drivers/mfd/lp8788*.c
7956F: drivers/power/lp8788-charger.c
7957F: drivers/regulator/lp8788-*.c
7958F: include/linux/mfd/lp8788*.h
7959
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007960TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007961M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007962L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7963S: Maintained
7964F: sound/soc/codecs/twl4030*
7965
Luciano Coelho90921012011-11-20 21:40:41 +02007966TI WILINK WIRELESS DRIVERS
7967M: Luciano Coelho <coelho@ti.com>
7968L: linux-wireless@vger.kernel.org
7969W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7970W: http://wireless.kernel.org/en/users/Drivers/wl1251
7971T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7972S: Maintained
7973F: drivers/net/wireless/ti/
7974F: include/linux/wl12xx.h
7975
Per Lidene86eaa32006-01-12 16:45:18 +01007976TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007977M: Jon Maloy <jon.maloy@ericsson.com>
7978M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007979L: netdev@vger.kernel.org (core kernel code)
7980L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007981W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007982S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007983F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007984F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007985
Chris Metcalf867e3592010-05-28 23:09:12 -04007986TILE ARCHITECTURE
7987M: Chris Metcalf <cmetcalf@tilera.com>
7988W: http://www.tilera.com/scm/
7989S: Supported
7990F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007991F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007992F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007993F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007994
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007996M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007997L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998W: http://sourceforge.net/projects/tlan/
7999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008000F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008001F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008003TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008004M: Kentaro Takeda <takedakn@nttdata.co.jp>
8005M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008006L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8007L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008008L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8009L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8010W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008011T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008013F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008014
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008015TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008016M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008017L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008018S: Maintained
8019F: drivers/platform/x86/topstar-laptop.c
8020
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008022L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008023S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008024F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025
8026TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008027M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028L: tlinux-users@tce.toshiba-dme.co.jp
8029W: http://www.buzzard.org.uk/toshiba/
8030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008031F: drivers/char/toshiba.c
8032F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008033F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
Pierre Ossmand719f902009-03-24 21:06:09 +01008035TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008036M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008038L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008039S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008040F: drivers/mmc/host/tmio_mmc*
8041F: drivers/mmc/host/sh_mobile_sdhi.c
8042F: include/linux/mmc/tmio.h
8043F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008044
Hugh Dickins98f32602009-05-21 20:33:58 +01008045TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008046M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008047L: linux-mm@kvack.org
8048S: Maintained
8049F: include/linux/shmem_fs.h
8050F: mm/shmem.c
8051
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008052TM6000 VIDEO4LINUX DRIVER
8053M: Mauro Carvalho Chehab <mchehab@redhat.com>
8054L: linux-media@vger.kernel.org
8055W: http://linuxtv.org
8056T: git git://linuxtv.org/media_tree.git
8057S: Odd fixes
8058F: drivers/media/usb/tm6000/
8059
Alan Cox4e688522008-04-30 00:52:11 -07008060TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008061M: Kent Yoder <key@linux.vnet.ibm.com>
8062M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008063W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008064M: Marcel Selhorst <tpmdd@selhorst.net>
8065M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008066W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008067L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008069F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008070
Joe Perchesd6f005a2009-10-26 16:49:40 -07008071TRACING
8072M: Steven Rostedt <rostedt@goodmis.org>
8073M: Frederic Weisbecker <fweisbec@gmail.com>
8074M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008075T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008076S: Maintained
8077F: Documentation/trace/ftrace.txt
8078F: arch/*/*/*/ftrace.h
8079F: arch/*/kernel/ftrace.c
8080F: include/*/ftrace.h
8081F: include/linux/trace*.h
8082F: include/trace/
8083F: kernel/trace/
8084
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008086M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008087T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008089K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090
Alan Cox4e688522008-04-30 00:52:11 -07008091TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008092M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008093M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008094S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008095T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008096F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008097F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008098F: include/linux/serial_core.h
8099F: include/linux/serial.h
8100F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008101F: include/uapi/linux/serial_core.h
8102F: include/uapi/linux/serial.h
8103F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008104
Antti Palosaari91952bc2012-10-01 12:28:46 -03008105TUA9001 MEDIA DRIVER
8106M: Antti Palosaari <crope@iki.fi>
8107L: linux-media@vger.kernel.org
8108W: http://linuxtv.org/
8109W: http://palosaari.fi/linux/
8110Q: http://patchwork.linuxtv.org/project/linux-media/list/
8111T: git git://linuxtv.org/anttip/media_tree.git
8112S: Maintained
8113F: drivers/media/tuners/tua9001*
8114
Grant Grundler740db6d2008-02-17 11:53:49 -07008115TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008116M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008117L: netdev@vger.kernel.org
8118S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008119F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120
8121TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008122M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123W: http://vtun.sourceforge.net/tun
8124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008125F: Documentation/networking/tuntap.txt
8126F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008128TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008129M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008131F: drivers/tc/
8132F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008133
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008135M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136L: linux-scsi@vger.kernel.org
8137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008138F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008140UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008141M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008142M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008143L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008144T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008145W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008147F: Documentation/filesystems/ubifs.txt
8148F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008149
Alan Coxcc2020e2008-05-19 14:21:51 +01008150UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008151M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008152W: http://www.uclinux.org/
8153L: uclinux-dev@uclinux.org (subscribers-only)
8154S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008155F: arch/m68k/*/*_no.*
8156F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008157
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008158UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008159M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008160W: http://uclinux-h8.sourceforge.jp/
8161S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008162F: arch/h8300/
8163F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008164F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008165
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008167M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008169F: Documentation/filesystems/udf.txt
8170F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171
Alan Coxcc2020e2008-05-19 14:21:51 +01008172UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008173M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008175F: Documentation/filesystems/ufs.txt
8176F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008177
David Herrmann0a09d3a2012-06-10 15:16:28 +02008178UHID USERSPACE HID IO DRIVER:
8179M: David Herrmann <dh.herrmann@googlemail.com>
8180L: linux-input@vger.kernel.org
8181S: Maintained
8182F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008183F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008184
David Vrabel18332a82008-09-17 16:34:44 +01008185ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008186L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008187S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008188F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008189F: include/linux/uwb.h
8190F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008191
GuanXuetaob31d8272011-01-16 00:35:49 +08008192UNICORE32 ARCHITECTURE:
8193M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8194W: http://mprc.pku.edu.cn/~guanxuetao/linux
8195S: Maintained
8196T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8197F: arch/unicore32/
8198
Tony Finchd8379ab2009-11-27 15:50:30 +00008199UNIFDEF
8200M: Tony Finch <dot@dotat.at>
8201W: http://dotat.at/prog/unifdef
8202S: Maintained
8203F: scripts/unifdef.c
8204
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008206M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207W: http://www.kernel.dk
8208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008209F: Documentation/cdrom/
8210F: drivers/cdrom/cdrom.c
8211F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008212F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308214UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8215M: Vinayak Holikatti <vinholikatti@gmail.com>
8216M: Santosh Y <santoshsy@gmail.com>
8217L: linux-scsi@vger.kernel.org
8218S: Supported
8219F: Documentation/scsi/ufs.txt
8220F: drivers/scsi/ufs/
8221
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008222UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008223M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008224W: http://www.linux-mtd.infradead.org/
8225L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008226T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008227S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008228F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008229F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008230F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008231
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008232UNSORTED BLOCK IMAGES (UBI) Fastmap
8233M: Richard Weinberger <richard@nod.at>
8234L: linux-mtd@lists.infradead.org
8235S: Maintained
8236F: drivers/mtd/ubi/fastmap.c
8237
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008239M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008240L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008242F: Documentation/usb/acm.txt
8243F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008245USB AR5523 WIRELESS DRIVER
8246M: Pontus Fuchs <pontus.fuchs@gmail.com>
8247L: linux-wireless@vger.kernel.org
8248S: Maintained
8249F: drivers/net/wireless/ath/ar5523/
8250
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008251USB ATTACHED SCSI
8252M: Matthew Wilcox <willy@linux.intel.com>
8253M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008254M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008255L: linux-usb@vger.kernel.org
8256L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008257S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008258F: drivers/usb/storage/uas.c
8259
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008261M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008262L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008264F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008265F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008267USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008268M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008269L: linux-usb@vger.kernel.org
8270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008271F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008272
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008273USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008275L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008276W: http://www.linux-usb.org/usbnet
8277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008278F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008279
Alan Coxcc2020e2008-05-19 14:21:51 +01008280USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008281M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008282L: rio500-users@lists.sourceforge.net
8283W: http://rio500.sourceforge.net
8284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008285F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008286
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008288M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008289L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008291F: Documentation/usb/ehci.txt
8292F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
David Brownell69ae9e32006-11-14 02:03:31 -08008294USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008295M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008296L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008297W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008298T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008300F: drivers/usb/gadget/
8301F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008302
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008303USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008304M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008305L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008306T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008308F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008309F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008310
matt mooney857aab32011-06-17 15:50:46 -07008311USB/IP DRIVERS
8312M: Matt Mooney <mfm@muteddisk.com>
8313L: linux-usb@vger.kernel.org
8314S: Maintained
8315F: drivers/staging/usbip/
8316
Olav Kongas959eea22005-11-03 17:38:14 +02008317USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008318M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008319L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008321F: drivers/usb/host/isp116x*
8322F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008325M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008326L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008328F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329
8330USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008331M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008332L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008333L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334S: Maintained
8335W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008336F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337
Clemens Ladischaf399172011-01-10 16:32:54 +01008338USB MIDI DRIVER
8339M: Clemens Ladisch <clemens@ladisch.de>
8340L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8341T: git git://git.alsa-project.org/alsa-kernel.git
8342S: Maintained
8343F: sound/usb/midi.*
8344
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008346M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008347L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008349F: Documentation/usb/ohci.txt
8350F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351
Matthias Urlichsba460e42005-07-14 00:33:47 -07008352USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008353M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008354L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008356F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008357
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008359M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008360L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008361L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362W: http://pegasus2.sourceforge.net/
8363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008364F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365
Felipe Balbid3ad5582012-05-21 16:24:49 +03008366USB PHY LAYER
8367M: Felipe Balbi <balbi@ti.com>
8368L: linux-usb@vger.kernel.org
8369T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8370S: Maintained
8371F: drivers/usb/phy/
8372F: drivers/usb/otg/
8373
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008374USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008375M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008376L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008378F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379
8380USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008381M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008382L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008383L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384W: http://pegasus2.sourceforge.net/
8385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008386F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Alan Cox4e688522008-04-30 00:52:11 -07008388USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008389M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008390L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008393
8394USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008396L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008397S: Maintained
8398W: http://geocities.com/i0xox0i
8399W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008400F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008401
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008403M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008406F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407
8408USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008409M: Peter Berger <pberger@brimson.com>
8410M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008411L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008413F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414
8415USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008416M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008417L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008419F: Documentation/usb/usb-serial.txt
8420F: drivers/usb/serial/generic.c
8421F: drivers/usb/serial/usb-serial.c
8422F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008425M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008426L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429
8430USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008431M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008432L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008434F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008435
8436USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008437M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008438L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439W: http://www.connecttech.com
8440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008441F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008443USB SMSC75XX ETHERNET DRIVER
8444M: Steve Glendinning <steve.glendinning@shawell.net>
8445L: netdev@vger.kernel.org
8446S: Maintained
8447F: drivers/net/usb/smsc75xx.*
8448
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008449USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008450M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008451L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008453F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008454
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008455USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008456M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008457L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008458L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008459T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008460W: http://www.linux-projects.org
8461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008462F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008463F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
8465USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008466M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008467L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008468W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008469T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008471F: Documentation/usb/
8472F: drivers/net/usb/
8473F: drivers/usb/
8474F: include/linux/usb.h
8475F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476
8477USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008478M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008479L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008481F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482
David Brownell69ae9e32006-11-14 02:03:31 -08008483USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008484M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008485L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008486W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008488F: drivers/net/usb/usbnet.c
8489F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008491USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008492M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008493L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008494L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008495T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008496W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008497S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008498F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008499F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008501USB VISION DRIVER
8502M: Hans Verkuil <hverkuil@xs4all.nl>
8503L: linux-media@vger.kernel.org
8504T: git git://linuxtv.org/media_tree.git
8505W: http://linuxtv.org
8506S: Odd Fixes
8507F: drivers/media/usb/usbvision/
8508
Laurent Pinchart8282da42012-10-04 02:32:42 +02008509USB WEBCAM GADGET
8510M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8511L: linux-usb@vger.kernel.org
8512S: Maintained
8513F: drivers/usb/gadget/*uvc*.c
8514F: drivers/usb/gadget/webcam.c
8515
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008516USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008517M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008518L: linux-wireless@vger.kernel.org
8519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008520F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008521
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008522USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008523M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008524L: linux-usb@vger.kernel.org
8525S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008526F: drivers/usb/host/xhci*
8527F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008528
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008530L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008532S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008533F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008535USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008536M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008537L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008538L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008539T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008540W: http://royale.zerezo.com/zr364xx/
8541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008542F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008543F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008544
Randy Dunlape7839f22008-10-12 16:11:45 -07008545USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008546M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008547M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548L: user-mode-linux-devel@lists.sourceforge.net
8549L: user-mode-linux-user@lists.sourceforge.net
8550W: http://user-mode-linux.sourceforge.net
8551S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008552F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008553F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008554F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008555F: fs/hostfs/
8556F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008557
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008558USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008559M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008560M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008562F: Documentation/DocBook/uio-howto.tmpl
8563F: drivers/uio/
8564F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008565
Karel Zak256cccb2012-06-01 10:13:09 +02008566UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008567M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008568L: util-linux@vger.kernel.org
8569W: http://en.wikipedia.org/wiki/Util-linux
8570T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008571S: Maintained
8572
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008573UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008574M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008575L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008576W: http://dev.gentoo.org/~spock/projects/uvesafb/
8577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008578F: Documentation/fb/uvesafb.txt
8579F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008580
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008581VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008582M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008584F: Documentation/filesystems/vfat.txt
8585F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586
Alex Williamsoncba33452012-07-31 08:16:22 -06008587VFIO DRIVER
8588M: Alex Williamson <alex.williamson@redhat.com>
8589L: kvm@vger.kernel.org
8590S: Maintained
8591F: Documentation/vfio.txt
8592F: drivers/vfio/
8593F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008594F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008595
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008596VIDEOBUF2 FRAMEWORK
8597M: Pawel Osciak <pawel@osciak.com>
8598M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008599M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008600L: linux-media@vger.kernel.org
8601S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008602F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008603F: include/media/videobuf2-*
8604
Amit Shah9a824462010-03-23 18:23:09 +05308605VIRTIO CONSOLE DRIVER
8606M: Amit Shah <amit.shah@redhat.com>
8607L: virtualization@lists.linux-foundation.org
8608S: Maintained
8609F: drivers/char/virtio_console.c
8610F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008611F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308612
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308613VIRTIO CORE, NET AND BLOCK DRIVERS
8614M: Rusty Russell <rusty@rustcorp.com.au>
8615M: "Michael S. Tsirkin" <mst@redhat.com>
8616L: virtualization@lists.linux-foundation.org
8617S: Maintained
8618F: drivers/virtio/
8619F: drivers/net/virtio_net.c
8620F: drivers/block/virtio_blk.c
8621F: include/linux/virtio_*.h
8622
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008623VIRTIO HOST (VHOST)
8624M: "Michael S. Tsirkin" <mst@redhat.com>
8625L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008626L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008627L: netdev@vger.kernel.org
8628S: Maintained
8629F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008630F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008631
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008633M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008634S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008635F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008636
Harald Weltef0bf7f62009-06-17 20:22:39 +02008637VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008638M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008639M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008640S: Maintained
8641F: drivers/mmc/host/via-sdmmc.c
8642
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008643VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008644M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008645L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008646S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008647F: include/linux/via-core.h
8648F: include/linux/via-gpio.h
8649F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008650F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008651
Francois Romieu01f20732007-01-26 00:57:17 -08008652VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008653M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008654L: netdev@vger.kernel.org
8655S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008656F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008658VIVI VIRTUAL VIDEO DRIVER
8659M: Hans Verkuil <hverkuil@xs4all.nl>
8660L: linux-media@vger.kernel.org
8661T: git git://linuxtv.org/media_tree.git
8662W: http://linuxtv.org
8663S: Maintained
8664F: drivers/media/platform/vivi*
8665
Patrick McHardybe7f8272007-10-23 20:26:36 -07008666VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008667M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008668L: netdev@vger.kernel.org
8669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008670F: drivers/net/macvlan.c
8671F: include/linux/if_*vlan.h
8672F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008673
Florian Fainelli55e331c2009-06-16 15:33:53 -07008674VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008675M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008676L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008677S: Maintained
8678F: drivers/vlynq/vlynq.c
8679F: include/linux/vlynq.h
8680
Martyn Welch390beae2012-05-03 17:52:36 +01008681VME SUBSYSTEM
8682M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008683M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008684M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8685L: devel@driverdev.osuosl.org
8686S: Maintained
8687T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8688F: Documentation/vme_api.txt
8689F: drivers/staging/vme/
8690F: drivers/vme/
8691F: include/linux/vme*
8692
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008693VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008694M: Shreyas Bhatewara <sbhatewara@vmware.com>
8695M: "VMware, Inc." <pv-drivers@vmware.com>
8696L: netdev@vger.kernel.org
8697S: Maintained
8698F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008699
Alok Kataria851b1642009-10-13 14:51:05 -07008700VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008701M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008702M: VMware PV-Drivers <pv-drivers@vmware.com>
8703L: linux-scsi@vger.kernel.org
8704S: Maintained
8705F: drivers/scsi/vmw_pvscsi.c
8706F: drivers/scsi/vmw_pvscsi.h
8707
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008708VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008709M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008710M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008711W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008712W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008713T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008714S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008715F: drivers/regulator/
8716F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008717
Juerg Haefligerab413192006-09-24 20:54:04 +02008718VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008719M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008720L: lm-sensors@lm-sensors.org
8721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008722F: Documentation/hwmon/vt1211
8723F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008724
Roger Lucas1de9e372005-11-26 20:20:05 +01008725VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008726M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008727L: lm-sensors@lm-sensors.org
8728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008729F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008730
Tony Olech88095e72011-05-14 16:48:13 -04008731VUB300 USB to SDIO/SD/MMC bridge chip
8732M: Tony Olech <tony.olech@elandigitalsystems.com>
8733L: linux-mmc@vger.kernel.org
8734L: linux-usb@vger.kernel.org
8735S: Supported
8736F: drivers/mmc/host/vub300.c
8737
Linus Torvalds1da177e2005-04-16 15:20:36 -07008738W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008739M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008741F: Documentation/w1/
8742F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008743
Charles Spirakis13927072006-07-05 18:05:15 +02008744W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008745M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008746L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008748F: Documentation/hwmon/w83791d
8749F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008750
Rudolf Marek61db0112006-12-12 18:18:30 +01008751W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008752M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008753L: lm-sensors@lm-sensors.org
8754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008755F: Documentation/hwmon/w83793
8756F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008757
Jean Delvaree3760b42010-10-28 20:31:49 +02008758W83795 HARDWARE MONITORING DRIVER
8759M: Jean Delvare <khali@linux-fr.org>
8760L: lm-sensors@lm-sensors.org
8761S: Maintained
8762F: drivers/hwmon/w83795.c
8763
Linus Torvalds1da177e2005-04-16 15:20:36 -07008764W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008765M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008767F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008768
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008769WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008770M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008771L: linux-watchdog@vger.kernel.org
8772W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008773T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008775F: Documentation/watchdog/
8776F: drivers/watchdog/
8777F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008778F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008779
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008781M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008782L: linux-scsi@vger.kernel.org
8783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008784F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785
David Herrmannb22e00f2011-09-06 13:50:40 +02008786WIIMOTE HID DRIVER
8787M: David Herrmann <dh.herrmann@googlemail.com>
8788L: linux-input@vger.kernel.org
8789S: Maintained
8790F: drivers/hid/hid-wiimote*
8791
David Härdemane258b802009-09-21 17:04:53 -07008792WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008793M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008794S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008795F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008796
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008797WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008798M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008799M: linux-wimax@intel.com
8800L: wimax@linuxwimax.org
8801S: Supported
8802W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008803F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008804F: include/linux/wimax/debug.h
8805F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008806F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008807F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008808
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008809WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008810M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008812F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008813
Linus Torvalds1da177e2005-04-16 15:20:36 -07008814WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008815M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008816L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008817W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008819F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820
Mark Brownfebf1df2008-04-02 00:51:09 -04008821WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008822M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8823M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008824L: linux-input@vger.kernel.org
8825T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8826W: http://opensource.wolfsonmicro.com/node/7
8827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008828F: drivers/input/touchscreen/*wm97*
8829F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008830
Mark Brown055bcbc2010-08-13 14:18:12 +01008831WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008832M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008833L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008834T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008835T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008836W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008837S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008838F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008839F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008840F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008841F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008842F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008843F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008844F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008845F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008846F: drivers/input/misc/wm831x-on.c
8847F: drivers/input/touchscreen/wm831x-ts.c
8848F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008849F: drivers/mfd/arizona*
8850F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008851F: drivers/power/wm83*.c
8852F: drivers/rtc/rtc-wm83*.c
8853F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008854F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008855F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008856F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008857F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008858F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008859F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008860F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008861F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008862F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008863F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008864
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008865WORKQUEUE
8866M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008867T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8868S: Maintained
8869F: include/linux/workqueue.h
8870F: kernel/workqueue.c
8871F: Documentation/workqueue.txt
8872
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008874M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008876S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008877F: Documentation/networking/x25*
8878F: include/net/x25*
8879F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008881X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008882M: Thomas Gleixner <tglx@linutronix.de>
8883M: Ingo Molnar <mingo@redhat.com>
8884M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008885M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008886T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008888F: Documentation/x86/
8889F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008890
Matthew Garrettd0944852010-02-11 10:40:13 -05008891X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008892M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008893L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008894T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008895S: Maintained
8896F: drivers/platform/x86
8897
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008898X86 MCE INFRASTRUCTURE
8899M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008900M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008901L: linux-edac@vger.kernel.org
8902S: Maintained
8903F: arch/x86/kernel/cpu/mcheck/*
8904
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008905XC2028/3028 TUNER DRIVER
8906M: Mauro Carvalho Chehab <mchehab@redhat.com>
8907L: linux-media@vger.kernel.org
8908W: http://linuxtv.org
8909T: git git://linuxtv.org/media_tree.git
8910S: Maintained
8911F: drivers/media/tuners/tuner-xc2028.*
8912
Ian Campbellc4468082011-04-27 15:26:46 -07008913XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008914M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008915M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008916L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8917L: virtualization@lists.linux-foundation.org
8918S: Supported
8919F: arch/x86/xen/
8920F: drivers/*/xen-*front.c
8921F: drivers/xen/
8922F: arch/x86/include/asm/xen/
8923F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008924F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008925
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008926XEN HYPERVISOR ARM
8927M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8928L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8929S: Supported
8930F: arch/arm/xen/
8931F: arch/arm/include/asm/xen/
8932
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008933XEN NETWORK BACKEND DRIVER
8934M: Ian Campbell <ian.campbell@citrix.com>
8935L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8936L: netdev@vger.kernel.org
8937S: Supported
8938F: drivers/net/xen-netback/*
8939
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008940XEN PCI SUBSYSTEM
8941M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008942L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008943S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008944F: arch/x86/pci/*xen*
8945F: drivers/pci/*xen*
8946
8947XEN SWIOTLB SUBSYSTEM
8948M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008949L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008950S: Supported
8951F: arch/x86/xen/*swiotlb*
8952F: drivers/xen/*swiotlb*
8953
Linus Torvalds1da177e2005-04-16 15:20:36 -07008954XFS FILESYSTEM
8955P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008956M: Ben Myers <bpm@sgi.com>
8957M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008958M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008959L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008961T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008963F: Documentation/filesystems/xfs.txt
8964F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008966XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008967M: Anirudha Sarangi <anirudh@xilinx.com>
8968M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008969S: Maintained
8970F: drivers/net/ethernet/xilinx/xilinx_axienet*
8971
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008972XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008973M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008974W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008976F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008977
Peter Korsgaard238b8722006-12-06 20:35:17 -08008978XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008979M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008980L: linux-serial@vger.kernel.org
8981S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008982F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008983
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008985M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986L: linux-hams@vger.kernel.org
8987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008988F: drivers/net/hamradio/yam*
8989F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990
Henkaf64a5e2005-10-12 15:02:56 +02008991YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008992M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008993L: usbb2k-api-dev@nongnu.org
8994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008995F: Documentation/input/yealink.txt
8996F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008997
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008999M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000W: http://yaina.de/jreuter/
9001W: http://www.qsl.net/dl1bke/
9002L: linux-hams@vger.kernel.org
9003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009004F: Documentation/networking/z8530drv.txt
9005F: drivers/net/hamradio/*scc.c
9006F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009007
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009008ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009009M: Daniel Drake <dsd@gentoo.org>
9010M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009011W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009012L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009013L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009015F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009016
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009018L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009019L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009021T: Mercurial http://linuxtv.org/hg/v4l-dvb
9022S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009023F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009025ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009026M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009027S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009028F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009029
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009031M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009032L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009033Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009034T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009035S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009036F: *
9037F: */