blob: 8bdd7a7ef2f4687aa26ee66a70fe8ad428e14890 [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
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003245FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3246M: Joshua Morris <josh.h.morris@us.ibm.com>
3247M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3248S: Maintained
3249F: drivers/block/rsxx/
3250
Jiri Kosina8206f662012-05-18 13:52:29 +02003251FLOPPY DRIVER
3252M: Jiri Kosina <jkosina@suse.cz>
3253T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3254S: Odd fixes
3255F: drivers/block/floppy.c
3256
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003257FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003258M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003259W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003261F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003262
3263FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003264L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003266F: drivers/net/wan/dlci.c
3267F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003268
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003270M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003271L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003273Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003274T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003276F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003277F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003278F: drivers/video/
3279F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003280F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003281F: include/uapi/video/
3282F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Timur Tabia57c1882012-10-16 17:33:42 -05003284FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003285M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003286L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003287S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003288F: drivers/video/fsl-diu-fb.*
3289
Zhang Wei173acc72008-03-01 07:42:48 -07003290FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Li Yang <leoli@freescale.com>
3292M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003293L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003295F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003296
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003297FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003298M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003299L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003300L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003303
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003304FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003306L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003308S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003309F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003310F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003311
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003312FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003313M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3314M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003315L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003316L: netdev@vger.kernel.org
3317S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003318F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003319F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003320
Timur Tabid9e9d822008-04-24 08:45:26 +10003321FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003322L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003323S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003324F: arch/powerpc/sysdev/qe_lib/
3325F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003326
Joe Perchesb55ef9292009-10-26 16:49:46 -07003327FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003328M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003329L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003330L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003331S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003332F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003333
Li Yangbeaf53b2007-05-25 13:54:02 +08003334FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003336L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003337L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003338S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003339F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003340
Timur Tabid9e9d822008-04-24 08:45:26 +10003341FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003342M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003343L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003344S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003345F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003346
3347FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003348M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003349L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003350L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003351S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003352F: sound/soc/fsl/fsl*
3353F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Pavel Machek71038f52009-01-15 13:51:02 -08003361FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Pavel Machek <pavel@ucw.cz>
3363M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003364L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003366F: Documentation/power/freezing-of-tasks.txt
3367F: include/linux/freezer.h
3368F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003369
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003370FRONTSWAP API
3371M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3372L: linux-kernel@vger.kernel.org
3373S: Maintained
3374F: mm/frontswap.c
3375F: include/linux/frontswap.h
3376
David Howellsa5432f52009-04-20 15:46:45 +01003377FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003378M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003379L: linux-cachefs@redhat.com
3380S: Supported
3381F: Documentation/filesystems/caching/
3382F: fs/fscache/
3383F: include/linux/fscache*.h
3384
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003385F2FS FILE SYSTEM
3386M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3387L: linux-f2fs-devel@lists.sourceforge.net
3388W: http://en.wikipedia.org/wiki/F2FS
3389T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3390S: Maintained
3391F: Documentation/filesystems/f2fs.txt
3392F: fs/f2fs/
3393F: include/linux/f2fs_fs.h
3394
David Howells5ab7ffe2007-04-10 15:10:45 +01003395FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003396M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003398F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Jonathan Woithe20b93732008-06-11 10:14:56 +09303400FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303401M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003402L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003404F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303405
Heungjun Kim4da621b2011-11-11 08:05:33 -03003406FUJITSU M-5MO LS CAMERA ISP DRIVER
3407M: Kyungmin Park <kyungmin.park@samsung.com>
3408M: Heungjun Kim <riverful.kim@samsung.com>
3409L: linux-media@vger.kernel.org
3410S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003411F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003412F: include/media/m5mols.h
3413
Robert Gerlach2d24c492012-01-18 14:26:22 +01003414FUJITSU TABLET EXTRAS
3415M: Robert Gerlach <khnz@gmx.de>
3416L: platform-driver-x86@vger.kernel.org
3417S: Maintained
3418F: drivers/platform/x86/fujitsu-tablet.c
3419
Miklos Szeredi04578f12005-09-09 13:10:22 -07003420FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003421M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003422L: fuse-devel@lists.sourceforge.net
3423W: http://fuse.sourceforge.net/
3424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003425F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003426F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003431S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003432F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003435M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436L: linux-scsi@vger.kernel.org
3437W: http://www.icp-vortex.com/
3438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003439F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003441GEMTEK FM RADIO RECEIVER DRIVER
3442M: Hans Verkuil <hverkuil@xs4all.nl>
3443L: linux-media@vger.kernel.org
3444T: git git://linuxtv.org/media_tree.git
3445W: http://linuxtv.org
3446S: Maintained
3447F: drivers/media/radio/radio-gemtek*
3448
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003449GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003450M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003452F: drivers/i2c/busses/i2c-gpio.c
3453F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003454
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003455GENERIC GPIO I2C MULTIPLEXER DRIVER
3456M: Peter Korsgaard <peter.korsgaard@barco.com>
3457L: linux-i2c@vger.kernel.org
3458S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003459F: drivers/i2c/muxes/i2c-mux-gpio.c
3460F: include/linux/i2c-mux-gpio.h
3461F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003462
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003463GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003464M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003467F: drivers/net/wan/c101.c
3468F: drivers/net/wan/hd6457*
3469F: drivers/net/wan/hdlc*
3470F: drivers/net/wan/n2.c
3471F: drivers/net/wan/pc300too.c
3472F: drivers/net/wan/pci200syn.c
3473F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003475GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003477L: linux-arch@vger.kernel.org
3478T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3479S: Maintained
3480F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003481F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003482
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003483GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003484M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003485L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003486S: Supported
3487F: drivers/uio/uio_pci_generic.c
3488
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003489GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003491L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003492W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003493T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3494T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/filesystems/gfs2*.txt
3497F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003498F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003499
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003500GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003501M: Hansjoerg Lipp <hjlipp@web.de>
3502M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003503L: gigaset307x-common@lists.sourceforge.net
3504W: http://gigaset307x.sourceforge.net/
3505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003506F: Documentation/isdn/README.gigaset
3507F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003508F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003509
Grant Likelya0dc00b2011-02-12 01:48:14 -07003510GPIO SUBSYSTEM
3511M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003512M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003513S: Maintained
3514T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003515F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003516F: drivers/gpio/
3517F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003518F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003519
Harry Wei71a6d0a2011-05-11 15:13:33 -07003520GRE DEMULTIPLEXER DRIVER
3521M: Dmitry Kozlov <xeb@mail.ru>
3522L: netdev@vger.kernel.org
3523S: Maintained
3524F: net/ipv4/gre.c
3525F: include/net/gre.h
3526
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003527GRETH 10/100/1G Ethernet MAC device driver
3528M: Kristoffer Glembo <kristoffer@gaisler.com>
3529L: netdev@vger.kernel.org
3530S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003531F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003532
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003533GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003535L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003536T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003537S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003538F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003539
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003540GSPCA GL860 SUBDRIVER
3541M: Olivier Lorin <o.lorin@laposte.net>
3542L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003543T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003544S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003545F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003546
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003547GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003549L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003550T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003551S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003552F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003553
3554GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003555M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003556L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003557T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003558S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003559F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003560
Brian Johnson261982f2009-07-19 15:58:56 -03003561GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003562M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003563L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003564T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003565S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003566F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003567
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003568GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003570L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003571T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003572S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003573F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003574
3575GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003576M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003577L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003578T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003579S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003580F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003581
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003582STK1160 USB VIDEO CAPTURE DRIVER
3583M: Ezequiel Garcia <elezegarcia@gmail.com>
3584L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003585T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003586S: Maintained
3587F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003588
Harry Wei71a6d0a2011-05-11 15:13:33 -07003589HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3590M: Frank Seidel <frank@f-seidel.de>
3591L: platform-driver-x86@vger.kernel.org
3592W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3593S: Maintained
3594F: drivers/platform/x86/hdaps.c
3595
3596HWPOISON MEMORY FAILURE HANDLING
3597M: Andi Kleen <andi@firstfloor.org>
3598L: linux-mm@kvack.org
3599T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3600S: Maintained
3601F: mm/memory-failure.c
3602F: mm/hwpoison-inject.c
3603
3604HYPERVISOR VIRTUAL CONSOLE DRIVER
3605L: linuxppc-dev@lists.ozlabs.org
3606S: Odd Fixes
3607F: drivers/tty/hvc/
3608
Michael Buesch844dd052006-06-26 00:24:59 -07003609HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003610M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003611M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003612L: lm-sensors@lm-sensors.org
3613W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003614T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003615T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003616S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003617F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003618F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003619F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003620
3621HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003622M: Matt Mackall <mpm@selenic.com>
3623M: Herbert Xu <herbert@gondor.apana.org.au>
3624S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/hw_random.txt
3626F: drivers/char/hw_random/
3627F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003628
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003629HARDWARE SPINLOCK CORE
3630M: Ohad Ben-Cohen <ohad@wizery.com>
3631S: Maintained
3632F: Documentation/hwspinlock.txt
3633F: drivers/hwspinlock/hwspinlock_*
3634F: include/linux/hwspinlock.h
3635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003637L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003639F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Antti Palosaari91952bc2012-10-01 12:28:46 -03003641HD29L2 MEDIA DRIVER
3642M: Antti Palosaari <crope@iki.fi>
3643L: linux-media@vger.kernel.org
3644W: http://linuxtv.org/
3645W: http://palosaari.fi/linux/
3646Q: http://patchwork.linuxtv.org/project/linux-media/list/
3647T: git git://linuxtv.org/anttip/media_tree.git
3648S: Maintained
3649F: drivers/media/dvb-frontends/hd29l2*
3650
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003651HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003653L: iss_storagedev@hp.com
3654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: Documentation/blockdev/cpqarray.txt
3656F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003657
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003658HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003659M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003660L: iss_storagedev@hp.com
3661S: Supported
3662F: Documentation/scsi/hpsa.txt
3663F: drivers/scsi/hpsa*.[ch]
3664F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003665F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003667HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669L: iss_storagedev@hp.com
3670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003671F: Documentation/blockdev/cciss.txt
3672F: drivers/block/cciss*
3673F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003674F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003677L: linux-fsdevel@vger.kernel.org
3678S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003679F: Documentation/filesystems/hfs.txt
3680F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684L: linux-nvidia@lists.surfsouth.com
3685W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003687F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003689HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003690M: Pavel Machek <pavel@ucw.cz>
3691M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003692L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003694F: arch/x86/power/
3695F: drivers/base/power/
3696F: kernel/power/
3697F: include/linux/suspend.h
3698F: include/linux/freezer.h
3699F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003700F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003701
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003702HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003704L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003705T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003707F: drivers/hid/
3708F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003709F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003710
Ingo Molnar38bed542007-02-22 09:09:34 +01003711HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003713T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003715F: Documentation/timers/
3716F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003717F: kernel/time/clockevents.c
3718F: kernel/time/tick*.*
3719F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003720F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003721F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003725S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/net/hamradio/dmascc.c
3727F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003729HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003730M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003731W: http://www.highpoint-tech.com
3732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003733F: Documentation/scsi/hptiop.txt
3734F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003737M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738L: linux-hippi@sunsite.dk
3739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003741F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003742F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003743F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Jouni Malinenff1d2762005-05-12 22:54:16 -04003745HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003747L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003748L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003749W: http://hostap.epitest.fi/
3750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003751F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003752
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003753HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003754L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003755S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003757
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003758HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003759M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003760S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003761F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003762
Joe Perches7d2c86b2009-04-07 20:59:01 -07003763HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003766F: Documentation/timers/hpet.txt
3767F: drivers/char/hpet.c
3768F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003769F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003770
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003771HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003772M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003774F: arch/x86/kernel/hpet.c
3775F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Joe Perches7d2c86b2009-04-07 20:59:01 -07003783HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003785W: http://www.pharscape.org
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003788
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003789HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003791L: linux-input@vger.kernel.org
3792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003793F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003794
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003796M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003800Hyper-V CORE AND DRIVERS
3801M: K. Y. Srinivasan <kys@microsoft.com>
3802M: Haiyang Zhang <haiyangz@microsoft.com>
3803L: devel@linuxdriverproject.org
3804S: Maintained
3805F: drivers/hv/
3806F: drivers/hid/hid-hyperv.c
3807F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003808
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003809I2C OVER PARALLEL PORT
3810M: Jean Delvare <khali@linux-fr.org>
3811L: linux-i2c@vger.kernel.org
3812S: Maintained
3813F: Documentation/i2c/busses/i2c-parport
3814F: Documentation/i2c/busses/i2c-parport-light
3815F: drivers/i2c/busses/i2c-parport.c
3816F: drivers/i2c/busses/i2c-parport-light.c
3817
3818I2C/SMBUS CONTROLLER DRIVERS FOR PC
3819M: Jean Delvare <khali@linux-fr.org>
3820L: linux-i2c@vger.kernel.org
3821S: Maintained
3822F: Documentation/i2c/busses/i2c-ali1535
3823F: Documentation/i2c/busses/i2c-ali1563
3824F: Documentation/i2c/busses/i2c-ali15x3
3825F: Documentation/i2c/busses/i2c-amd756
3826F: Documentation/i2c/busses/i2c-amd8111
3827F: Documentation/i2c/busses/i2c-i801
3828F: Documentation/i2c/busses/i2c-nforce2
3829F: Documentation/i2c/busses/i2c-piix4
3830F: Documentation/i2c/busses/i2c-sis5595
3831F: Documentation/i2c/busses/i2c-sis630
3832F: Documentation/i2c/busses/i2c-sis96x
3833F: Documentation/i2c/busses/i2c-via
3834F: Documentation/i2c/busses/i2c-viapro
3835F: drivers/i2c/busses/i2c-ali1535.c
3836F: drivers/i2c/busses/i2c-ali1563.c
3837F: drivers/i2c/busses/i2c-ali15x3.c
3838F: drivers/i2c/busses/i2c-amd756.c
3839F: drivers/i2c/busses/i2c-amd756-s4882.c
3840F: drivers/i2c/busses/i2c-amd8111.c
3841F: drivers/i2c/busses/i2c-i801.c
3842F: drivers/i2c/busses/i2c-isch.c
3843F: drivers/i2c/busses/i2c-nforce2.c
3844F: drivers/i2c/busses/i2c-nforce2-s4985.c
3845F: drivers/i2c/busses/i2c-piix4.c
3846F: drivers/i2c/busses/i2c-sis5595.c
3847F: drivers/i2c/busses/i2c-sis630.c
3848F: drivers/i2c/busses/i2c-sis96x.c
3849F: drivers/i2c/busses/i2c-via.c
3850F: drivers/i2c/busses/i2c-viapro.c
3851
Neil Hormancb7f07a2013-02-10 11:59:03 -05003852I2C/SMBUS ISMT DRIVER
3853M: Seth Heasley <seth.heasley@intel.com>
3854M: Neil Horman <nhorman@tuxdriver.com>
3855L: linux-i2c@vger.kernel.org
3856F: drivers/i2c/busses/i2c-ismt.c
3857F: Documentation/i2c/busses/i2c-ismt
3858
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003859I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003860M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003861L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003862S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003863F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003864
Jean Delvare5b543962005-08-15 19:51:02 +02003865I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003866M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003867M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003868L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003869W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003870T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: Documentation/i2c/
3873F: drivers/i2c/
3874F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003875F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003876F: include/uapi/linux/i2c.h
3877F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003879I2C-TAOS-EVM DRIVER
3880M: Jean Delvare <khali@linux-fr.org>
3881L: linux-i2c@vger.kernel.org
3882S: Maintained
3883F: Documentation/i2c/busses/i2c-taos-evm
3884F: drivers/i2c/busses/i2c-taos-evm.c
3885
Till Harbaume8c76ee2007-05-01 23:26:35 +02003886I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003887M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003888L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003889W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003891F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
3898i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003900T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901S: Maintained
3902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Tony Luck <tony.luck@intel.com>
3905M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003907T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Kent Yoder956c2032012-09-07 04:17:01 +08003911IBM Power in-Nest Crypto Acceleration
3912M: Kent Yoder <key@linux.vnet.ibm.com>
3913L: linux-crypto@vger.kernel.org
3914S: Supported
3915F: drivers/crypto/nx/
3916
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003917IBM Power 842 compression accelerator
3918M: Robert Jennings <rcj@linux.vnet.ibm.com>
3919S: Supported
3920F: drivers/crypto/nx/nx-842.c
3921F: include/linux/nx842.h
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Santiago Leon9d348af2010-09-03 18:29:53 +00003928IBM Power Virtual Ethernet Device Driver
3929M: Santiago Leon <santil@linux.vnet.ibm.com>
3930L: netdev@vger.kernel.org
3931S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003932F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003933
Robert Jennings4b7652c2012-07-31 12:34:36 -05003934IBM Power Virtual SCSI/FC Device Drivers
3935M: Robert Jennings <rcj@linux.vnet.ibm.com>
3936L: linux-scsi@vger.kernel.org
3937S: Supported
3938F: drivers/scsi/ibmvscsi/
3939X: drivers/scsi/ibmvscsi/ibmvstgt.c
3940
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941IBM ServeRAID RAID DRIVER
3942P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003946F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003948ICH LPC AND GPIO DRIVER
3949M: Peter Tyser <ptyser@xes-inc.com>
3950S: Maintained
3951F: drivers/mfd/lpc_ich.c
3952F: drivers/gpio/gpio-ich.c
3953
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003954IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003957Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003958T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003960F: Documentation/ide/
3961F: drivers/ide/
3962F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Ike Panhc6cb8c132011-08-25 22:28:45 +08003964IDEAPAD LAPTOP EXTRAS DRIVER
3965M: Ike Panhc <ike.pan@canonical.com>
3966L: platform-driver-x86@vger.kernel.org
3967W: http://launchpad.net/ideapad-laptop
3968S: Maintained
3969F: drivers/platform/x86/ideapad-laptop.c
3970
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003971IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003972M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003973L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: Documentation/cdrom/ide-cd
3976F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Andy Henroid27471fd2008-10-09 11:45:22 -07003978IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003980L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003982F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003983
Sergey Lapin02cf2282009-06-08 12:18:50 +00003984IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003985M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003986M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003987L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003988W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003989T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003990S: Maintained
3991F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003992F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003993F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003994
Sean Young40ad4a32012-11-19 10:32:53 -03003995IGUANAWORKS USB IR TRANSCEIVER
3996M: Sean Young <sean@mess.org>
3997L: linux-media@vger.kernel.org
3998S: Maintained
3999F: drivers/media/rc/iguanair.c
4000
Ameya Palande9545f862012-01-10 09:00:58 -08004001IIO SUBSYSTEM AND DRIVERS
4002M: Jonathan Cameron <jic23@cam.ac.uk>
4003L: linux-iio@vger.kernel.org
4004S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004005F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004006F: drivers/staging/iio/
4007
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004008IKANOS/ADI EAGLE ADSL USB DRIVER
4009M: Matthieu Castet <castet.matthieu@free.fr>
4010M: Stanislaw Gruszka <stf_xl@wp.pl>
4011S: Maintained
4012F: drivers/usb/atm/ueagle-atm.c
4013
Guenter Roecke89ab512013-03-08 08:13:09 -08004014INA209 HARDWARE MONITOR DRIVER
4015M: Guenter Roeck <linux@roeck-us.net>
4016L: lm-sensors@lm-sensors.org
4017S: Maintained
4018F: Documentation/hwmon/ina209
4019F: Documentation/devicetree/bindings/i2c/ina209.txt
4020F: drivers/hwmon/ina209.c
4021
4022INA2XX HARDWARE MONITOR DRIVER
4023M: Guenter Roeck <linux@roeck-us.net>
4024L: lm-sensors@lm-sensors.org
4025S: Maintained
4026F: Documentation/hwmon/ina2xx
4027F: drivers/hwmon/ina2xx.c
4028F: include/linux/platform_data/ina2xx.h
4029
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004030INDUSTRY PACK SUBSYSTEM (IPACK)
4031M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4032M: Jens Taprogge <jens.taprogge@taprogge.org>
4033M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4034L: industrypack-devel@lists.sourceforge.net
4035W: http://industrypack.sourceforge.net
4036S: Maintained
4037F: drivers/ipack/
4038
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004039INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004042F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004045L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004046S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004047F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
4049INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004050M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Sean Hefty <sean.hefty@intel.com>
4052M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004053L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004054W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004055Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004056T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004058F: Documentation/infiniband/
4059F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004060F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Robert Lovec9f04f52005-07-15 12:21:07 -04004062INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004063M: John McCutchan <john@johnmccutchan.com>
4064M: Robert Love <rlove@rlove.org>
4065M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: Documentation/filesystems/inotify.txt
4068F: fs/notify/inotify/
4069F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004070F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004071
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004072INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004073M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4074M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004075L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004076Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004077T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004080F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004081F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004082F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004083
Henrik Rydberg3267a872010-06-24 19:10:40 -07004084INPUT MULTITOUCH (MT) PROTOCOL
4085M: Henrik Rydberg <rydberg@euromail.se>
4086L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004087T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004088S: Maintained
4089F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004090F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004091K: \b(ABS|SYN)_MT_
4092
Dave Jiang4ac13e12011-07-29 17:16:55 -07004093INTEL C600 SERIES SAS CONTROLLER DRIVER
4094M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004095M: Lukasz Dorau <lukasz.dorau@intel.com>
4096M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004097M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004098L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004099T: git git://git.code.sf.net/p/intel-sas/isci
4100S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004101F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004102
Len Brown26717172010-03-08 14:07:30 -05004103INTEL IDLE DRIVER
4104M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004105L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004106T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004107S: Supported
4108F: drivers/idle/intel_idle.c
4109
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004110INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004111M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004112L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004114F: Documentation/fb/intelfb.txt
4115F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004116
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004119L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004121F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304123INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004125L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304126W: http://www.lesswatts.org/projects/acpi/
4127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004128F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304129
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: arch/x86/kernel/microcode_core.c
4134F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004136INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004137M: Dan Williams <djbw@fb.com>
4138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004139F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004140
David Woodhouse6c8909b2008-10-18 16:12:17 +01004141INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004143L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004144T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004145S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004146F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004147F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004148
Dan Williamsb3e5f262007-08-07 10:26:35 -07004149INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004150M: Dan Williams <djbw@fb.com>
4151S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004152F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004153
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004154INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004157F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4158F: arch/arm/mach-ixp4xx/include/mach/npe.h
4159F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4160F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004161F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004162F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004163
Michael Buesch844dd052006-06-26 00:24:59 -07004164INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004168
Jeff Kirsher0d164402010-10-05 01:15:17 +00004169INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004170M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4171M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4172M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004173M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4174M: Don Skidmore <donald.c.skidmore@intel.com>
4175M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004176M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004177M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004179M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004180L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004181W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004182W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004183T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4184T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004186F: Documentation/networking/e100.txt
4187F: Documentation/networking/e1000.txt
4188F: Documentation/networking/e1000e.txt
4189F: Documentation/networking/igb.txt
4190F: Documentation/networking/igbvf.txt
4191F: Documentation/networking/ixgb.txt
4192F: Documentation/networking/ixgbe.txt
4193F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004194F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004196INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4197M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004198L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004202F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004203
Shane Wang4bd96a72010-03-10 14:36:10 +08004204INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004205M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4206M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004207M: Shane Wang <shane.wang@intel.com>
4208L: tboot-devel@lists.sourceforge.net
4209W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004210T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004211S: Supported
4212F: Documentation/intel_txt.txt
4213F: include/linux/tboot.h
4214F: arch/x86/kernel/tboot.c
4215
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004216INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004218M: linux-wimax@intel.com
4219L: wimax@linuxwimax.org
4220S: Supported
4221W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004222F: Documentation/wimax/README.i2400m
4223F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004224F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004225
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004226INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4227M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004228L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004229S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004230F: drivers/net/wireless/iwlegacy/
4231
Zhu Yib481de92007-09-25 17:54:57 -07004232INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004233M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004234M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004235M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004236L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004237W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004238T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004240F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004241
Tomas Winklerde8fe022012-05-09 16:39:02 +03004242INTEL MANAGEMENT ENGINE (mei)
4243M: Tomas Winkler <tomas.winkler@intel.com>
4244L: linux-kernel@vger.kernel.org
4245S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004246F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004247F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004248F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004249
Ralf Baechlecb109a02007-08-30 23:56:30 -07004250IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252L: linux-mips@linux-mips.org
4253S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004254F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Ralf Baechlecb109a02007-08-30 23:56:30 -07004256IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004258L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004259S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004260F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004261
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004262IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Francois Romieu1202d6f2007-09-17 17:13:55 -07004267IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Francois Romieu <romieu@fr.zoreil.com>
4269M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004270L: netdev@vger.kernel.org
4271S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004272F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004273
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004274IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004275M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004276L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004279
Corey Minyard4409ebe2006-04-20 02:43:12 -07004280IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004281M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004282L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004283W: http://openipmi.sourceforge.net/
4284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004285F: Documentation/IPMI.txt
4286F: drivers/char/ipmi/
4287F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004288F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004289
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004290IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004291M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004292L: linux-scsi@vger.kernel.org
4293W: http://www.adaptec.com/
4294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296
4297IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004298M: Wensong Zhang <wensong@linux-vs.org>
4299M: Simon Horman <horms@verge.net.au>
4300M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004301L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004305F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004306F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004307F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Randy Dunlape7839f22008-10-12 16:11:45 -07004309IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Jiri Kosina <jkosina@suse.cz>
4311M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004312S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004313F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004314
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004315IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004317L: netdev@vger.kernel.org
4318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004320F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004321F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004325L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004326L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004328S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004329T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004330F: Documentation/networking/irda.txt
4331F: drivers/net/irda/
4332F: include/net/irda/
4333F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004335IRQ SUBSYSTEM
4336M: Thomas Gleixner <tglx@linutronix.de>
4337S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004338T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004339F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004340F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004341
Grant Likely7ab3a832012-02-14 14:06:47 -07004342IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4343M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4344M: Grant Likely <grant.likely@secretlab.ca>
4345T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4346S: Maintained
4347F: Documentation/IRQ-domain.txt
4348F: include/linux/irqdomain.h
4349F: kernel/irq/irqdomain.c
4350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004351ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004354F: Documentation/isapnp.txt
4355F: drivers/pnp/isapnp/
4356F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004357
Hans Verkuild39b8422012-11-23 07:07:02 -03004358ISA RADIO MODULE
4359M: Hans Verkuil <hverkuil@xs4all.nl>
4360L: linux-media@vger.kernel.org
4361T: git git://linuxtv.org/media_tree.git
4362W: http://linuxtv.org
4363S: Maintained
4364F: drivers/media/radio/radio-isa*
4365
Harry Wei71a6d0a2011-05-11 15:13:33 -07004366iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4367M: Peter Jones <pjones@redhat.com>
4368M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4369S: Maintained
4370F: drivers/firmware/iscsi_ibft*
4371
Mike Christie14816b1e2007-11-28 16:22:06 -08004372ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004373M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004374L: open-iscsi@googlegroups.com
4375W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004376T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: drivers/scsi/*iscsi*
4379F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004380
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004383L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004386T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004388F: Documentation/isdn/
4389F: drivers/isdn/
4390F: include/linux/isdn.h
4391F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004392F: include/uapi/linux/isdn.h
4393F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
4395ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004396M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004397L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398W: http://www.melware.de
4399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Jean Delvared6248702010-03-05 22:17:20 +01004402IT87 HARDWARE MONITORING DRIVER
4403M: Jean Delvare <khali@linux-fr.org>
4404L: lm-sensors@lm-sensors.org
4405S: Maintained
4406F: Documentation/hwmon/it87
4407F: drivers/hwmon/it87.c
4408
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004409IT913X MEDIA DRIVER
4410M: Malcolm Priestley <tvboxspy@gmail.com>
4411L: linux-media@vger.kernel.org
4412W: http://linuxtv.org/
4413Q: http://patchwork.linuxtv.org/project/linux-media/list/
4414S: Maintained
4415F: drivers/media/usb/dvb-usb-v2/it913x*
4416
4417IT913X FE MEDIA DRIVER
4418M: Malcolm Priestley <tvboxspy@gmail.com>
4419L: linux-media@vger.kernel.org
4420W: http://linuxtv.org/
4421Q: http://patchwork.linuxtv.org/project/linux-media/list/
4422S: Maintained
4423F: drivers/media/dvb-frontends/it913x-fe*
4424
Hans Verkuil91821ff2007-12-02 09:35:33 -03004425IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004426M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004427L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004428L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004429T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004430W: http://www.ivtvdriver.org
4431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004432F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004433F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004434F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004435
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004436IX2505V MEDIA DRIVER
4437M: Malcolm Priestley <tvboxspy@gmail.com>
4438L: linux-media@vger.kernel.org
4439W: http://linuxtv.org/
4440Q: http://patchwork.linuxtv.org/project/linux-media/list/
4441S: Maintained
4442F: drivers/media/dvb-frontends/ix2505v*
4443
Guenter Roeck4453d732010-08-09 17:21:08 -07004444JC42.4 TEMPERATURE SENSOR DRIVER
4445M: Guenter Roeck <linux@roeck-us.net>
4446L: lm-sensors@lm-sensors.org
4447S: Maintained
4448F: drivers/hwmon/jc42.c
4449F: Documentation/hwmon/jc42
4450
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004451JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004452M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004453L: jfs-discussion@lists.sourceforge.net
4454W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004455T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004457F: Documentation/filesystems/jfs.txt
4458F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004459
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004460JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004462L: netdev@vger.kernel.org
4463S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004464F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004467M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004468L: linux-mtd@lists.infradead.org
4469W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004471F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004472F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Josh Triplettde456d32006-07-30 03:04:00 -07004474JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004475M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004476M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004477L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004478S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004479F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004480F: include/linux/jbd.h
4481
4482JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4483M: "Theodore Ts'o" <tytso@mit.edu>
4484L: linux-ext4@vger.kernel.org
4485S: Maintained
4486F: fs/jbd2/
4487F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004488
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004489JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004490M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004491L: linux-serial@vger.kernel.org
4492S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004493F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004494
Clemens Ladischaf399172011-01-10 16:32:54 +01004495K10TEMP HARDWARE MONITORING DRIVER
4496M: Clemens Ladisch <clemens@ladisch.de>
4497L: lm-sensors@lm-sensors.org
4498S: Maintained
4499F: Documentation/hwmon/k10temp
4500F: drivers/hwmon/k10temp.c
4501
Rudolf Marek4660cb32006-10-08 22:01:26 +02004502K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004503M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004504L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/hwmon/k8temp
4507F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004510M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004511L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004512S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004513F: Documentation/kbuild/kconfig-language.txt
4514F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
Vivek Goyalea6c2082006-05-20 14:59:55 -07004516KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Vivek Goyal <vgoyal@redhat.com>
4518M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004519L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004520W: http://lse.sourceforge.net/kdump/
4521S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004522F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004523
Hans Verkuilf41bf022012-11-23 07:04:36 -03004524KEENE FM RADIO TRANSMITTER DRIVER
4525M: Hans Verkuil <hverkuil@xs4all.nl>
4526L: linux-media@vger.kernel.org
4527T: git git://linuxtv.org/media_tree.git
4528W: http://linuxtv.org
4529S: Maintained
4530F: drivers/media/radio/radio-keene*
4531
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004534L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Michal Marek70fb7ba2010-01-29 14:22:43 +01004538KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004539M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004540T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4541T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004542L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: Documentation/kbuild/
4545F: Makefile
4546F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004547F: scripts/basic/
4548F: scripts/mk*
4549F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004552L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004553W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004554S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004556KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004557M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004558L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004561F: fs/nfsd/
4562F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004563F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004564F: fs/lockd/
4565F: fs/nfs_common/
4566F: net/sunrpc/
4567F: include/linux/lockd/
4568F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004569F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Avi Kivity426d62e2006-12-13 00:34:03 -08004571KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004572M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004573M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004574L: kvm@vger.kernel.org
4575W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004577F: Documentation/*/kvm.txt
4578F: arch/*/kvm/
4579F: arch/*/include/asm/kvm*
4580F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004581F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004582F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004583
Joerg Roedelad8003d2008-09-10 20:01:07 +02004584KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004585M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004586L: kvm@vger.kernel.org
4587W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004589F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004590F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004591
Hollis Blanchard513014b2008-04-16 23:28:08 -05004592KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004593M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004594L: kvm-ppc@vger.kernel.org
4595W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004596T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004598F: arch/powerpc/include/asm/kvm*
4599F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004600
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004601KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004602M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004603L: kvm-ia64@vger.kernel.org
4604W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004606F: Documentation/ia64/kvm.txt
4607F: arch/ia64/include/asm/kvm*
4608F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004609
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004610KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004612M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004613M: linux390@de.ibm.com
4614L: linux-s390@vger.kernel.org
4615W: http://www.ibm.com/developerworks/linux/linux390/
4616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004617F: Documentation/s390/kvm.txt
4618F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004619F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004620F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004621
Christoffer Dalla7494742013-01-20 18:42:26 -05004622KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4623M: Christoffer Dall <cdall@cs.columbia.edu>
4624L: kvmarm@lists.cs.columbia.edu
4625W: http://systems.cs.columbia.edu/projects/kvm-arm
4626S: Maintained
4627F: arch/arm/include/uapi/asm/kvm*
4628F: arch/arm/include/asm/kvm*
4629F: arch/arm/kvm/
4630
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004631KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004633W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004634L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004636F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004637F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004638F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004639
David Howellse9714612010-03-29 23:42:09 +01004640KEYS/KEYRINGS:
4641M: David Howells <dhowells@redhat.com>
4642L: keyrings@linux-nfs.org
4643S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004644F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004645F: include/linux/key.h
4646F: include/linux/key-type.h
4647F: include/keys/
4648F: security/keys/
4649
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004650KEYS-TRUSTED
4651M: David Safford <safford@watson.ibm.com>
4652M: Mimi Zohar <zohar@us.ibm.com>
4653L: linux-security-module@vger.kernel.org
4654L: keyrings@linux-nfs.org
4655S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004656F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004657F: include/keys/trusted-type.h
4658F: security/keys/trusted.c
4659F: security/keys/trusted.h
4660
4661KEYS-ENCRYPTED
4662M: Mimi Zohar <zohar@us.ibm.com>
4663M: David Safford <safford@watson.ibm.com>
4664L: linux-security-module@vger.kernel.org
4665L: keyrings@linux-nfs.org
4666S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004667F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004668F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004669F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004670
Jason Wessel5b778da2010-05-20 21:04:28 -05004671KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004672M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004673W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004674L: kgdb-bugreport@lists.sourceforge.net
4675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004676F: Documentation/DocBook/kgdb.tmpl
4677F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004678F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004679F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004680F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004681F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004682
Pekka Enberg456db8c2008-04-28 22:47:29 +03004683KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004685M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004686S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004687F: Documentation/kmemcheck.txt
4688F: arch/x86/include/asm/kmemcheck.h
4689F: arch/x86/mm/kmemcheck/
4690F: include/linux/kmemcheck.h
4691F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004692
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004693KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004695S: Maintained
4696F: Documentation/kmemleak.txt
4697F: include/linux/kmemleak.h
4698F: mm/kmemleak.c
4699F: mm/kmemleak-test.c
4700
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004701KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4703M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4704M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004705M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/kprobes.txt
4708F: include/linux/kprobes.h
4709F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004710
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004711KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004713W: http://miguelojeda.es/auxdisplay.htm
4714W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: Documentation/auxdisplay/ks0108
4717F: drivers/auxdisplay/ks0108.c
4718F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004723F: Documentation/networking/lapb-module.txt
4724F: include/*/lapb.h
4725F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004728M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729L: linux-scsi@vger.kernel.org
4730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004731F: Documentation/scsi/53c700.txt
4732F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Richard Purdie263de9b2006-05-15 09:44:16 -07004734LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004735M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004737L: linux-leds@vger.kernel.org
4738T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: drivers/leds/
4741F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004742
Jean Delvareb0461a42011-06-15 15:08:46 -07004743LEGACY EEPROM DRIVER
4744M: Jean Delvare <khali@linux-fr.org>
4745S: Maintained
4746F: Documentation/misc-devices/eeprom
4747F: drivers/misc/eeprom/eeprom.c
4748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751L: legousb-devel@lists.sourceforge.net
4752W: http://legousb.sourceforge.net/
4753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Michael Krufky055616a2012-10-02 00:56:06 -03004756LG2160 MEDIA DRIVER
4757M: Michael Krufky <mkrufky@linuxtv.org>
4758L: linux-media@vger.kernel.org
4759W: http://linuxtv.org/
4760W: http://github.com/mkrufky
4761Q: http://patchwork.linuxtv.org/project/linux-media/list/
4762T: git git://linuxtv.org/mkrufky/tuners.git
4763S: Maintained
4764F: drivers/media/dvb-frontends/lg2160.*
4765
Michael Krufky6f0e7722012-10-02 00:56:00 -03004766LGDT3305 MEDIA DRIVER
4767M: Michael Krufky <mkrufky@linuxtv.org>
4768L: linux-media@vger.kernel.org
4769W: http://linuxtv.org/
4770W: http://github.com/mkrufky
4771Q: http://patchwork.linuxtv.org/project/linux-media/list/
4772T: git git://linuxtv.org/mkrufky/tuners.git
4773S: Maintained
4774F: drivers/media/dvb-frontends/lgdt3305.*
4775
Rusty Russell568a17f2007-10-25 14:12:24 +10004776LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004778L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004779W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004780S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004781F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004782F: arch/x86/lguest/
4783F: drivers/lguest/
4784F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004785F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789W: http://www.ibm.com/linux/ltc/projects/ppc
4790S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004791F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004793LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4795M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004797L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004798Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004799T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004801F: Documentation/powerpc/
4802F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
4804LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004807L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004809F: arch/powerpc/platforms/powermac/
4810F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Grant Likely77a76362008-07-12 12:11:43 -06004812LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004813M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004814L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004815T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004817F: arch/powerpc/platforms/512x/
4818F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004821M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004824L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004825T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004827F: arch/powerpc/platforms/40x/
4828F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
Grant Likely260c02a2007-10-02 12:15:34 +10004830LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004832W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004833L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004834T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004836F: arch/powerpc/*/*virtex*
4837F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
Tom Rinie93adf12005-07-26 12:49:53 -07004839LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Vitaly Bordug <vitb@kernel.crashing.org>
4841M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004842W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004843L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004844S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004845F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004846
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004849W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004850L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004851S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004852F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004853F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
Olof Johanssonab06ff32006-09-06 14:44:54 -05004855LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004857L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004858S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004859F: arch/powerpc/platforms/pasemi/
4860F: drivers/*/*pasemi*
4861F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004865L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866S: Supported
4867
Harry Weia23ce6d2011-02-11 16:52:20 +01004868LIS3LV02D ACCELEROMETER DRIVER
4869M: Eric Piel <eric.piel@tremplin-utc.net>
4870S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004871F: Documentation/misc-devices/lis3lv02d
4872F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004873F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004874
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004875LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004876M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004878F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004879F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004880F: include/net/llc*
4881F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004882
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004883LM73 HARDWARE MONITOR DRIVER
4884M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4885L: lm-sensors@lm-sensors.org
4886S: Maintained
4887F: drivers/hwmon/lm73.c
4888
Jean Delvare156e2d12011-07-25 21:46:11 +02004889LM78 HARDWARE MONITOR DRIVER
4890M: Jean Delvare <khali@linux-fr.org>
4891L: lm-sensors@lm-sensors.org
4892S: Maintained
4893F: Documentation/hwmon/lm78
4894F: drivers/hwmon/lm78.c
4895
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004897M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004898L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004900F: Documentation/hwmon/lm83
4901F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
4903LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004905L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004907F: Documentation/hwmon/lm90
4908F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004910LME2510 MEDIA DRIVER
4911M: Malcolm Priestley <tvboxspy@gmail.com>
4912L: linux-media@vger.kernel.org
4913W: http://linuxtv.org/
4914Q: http://patchwork.linuxtv.org/project/linux-media/list/
4915S: Maintained
4916F: drivers/media/usb/dvb-usb-v2/lmedm04*
4917
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004918LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004919M: Peter Zijlstra <peterz@infradead.org>
4920M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004921T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004923F: Documentation/lockdep*.txt
4924F: Documentation/lockstat.txt
4925F: include/linux/lockdep.h
4926F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004927
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004928LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004929M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004930L: linux-ntfs-dev@lists.sourceforge.net
4931W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004934F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
Joern Engelef6ada32009-11-20 22:17:12 +01004936LogFS
4937M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304938M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004939L: logfs@logfs.org
4940W: logfs.org
4941S: Maintained
4942F: fs/logfs/
4943
Roland Stiggeb62d7942013-04-02 19:37:11 +02004944LPC32XX MACHINE SUPPORT
4945M: Roland Stigge <stigge@antcom.de>
4946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4947S: Maintained
4948F: arch/arm/mach-lpc32xx/
4949
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004950LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304951M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4952M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004953M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004954L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004955L: linux-scsi@vger.kernel.org
4956W: http://www.lsilogic.com/support
4957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004958F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304959F: drivers/scsi/mpt2sas/
4960F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004961
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004963M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964L: linux-scsi@vger.kernel.org
4965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004966F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
Guenter Roecke5f5c992010-06-25 11:59:54 -07004968LTC4261 HARDWARE MONITOR DRIVER
4969M: Guenter Roeck <linux@roeck-us.net>
4970L: lm-sensors@lm-sensors.org
4971S: Maintained
4972F: Documentation/hwmon/ltc4261
4973F: drivers/hwmon/ltc4261.c
4974
Mike Frysinger81365c32008-10-29 14:01:12 -07004975LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004976M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004977M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004978M: Cyril Hrubis <chrubis@suse.cz>
4979M: Caspar Zhang <caspar@casparzhang.com>
4980M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004981L: ltp-list@lists.sourceforge.net (subscribers-only)
4982W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004983T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004984T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004985S: Maintained
4986
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004987M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004989L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004990L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4991W: http://www.linux-m32r.org/
4992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004993F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004996M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997L: linux-m68k@lists.linux-m68k.org
4998W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004999T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005002F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
5004M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005007L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005009F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
5011M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005012M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013W: http://www.tazenda.demon.co.uk/phil/linux-hp
5014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005017M88RS2000 MEDIA DRIVER
5018M: Malcolm Priestley <tvboxspy@gmail.com>
5019L: linux-media@vger.kernel.org
5020W: http://linuxtv.org/
5021Q: http://patchwork.linuxtv.org/project/linux-media/list/
5022S: Maintained
5023F: drivers/media/dvb-frontends/m88rs2000*
5024
Alexey Klimov07a092f2012-11-12 02:57:32 -03005025MA901 MASTERKIT USB FM RADIO DRIVER
5026M: Alexey Klimov <klimov.linux@gmail.com>
5027L: linux-media@vger.kernel.org
5028T: git git://linuxtv.org/media_tree.git
5029S: Maintained
5030F: drivers/media/radio/radio-ma901.c
5031
Jiri Benc64a327a2007-05-05 11:47:08 -07005032MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005034L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005035W: http://wireless.kernel.org/
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
Jiri Benc64a327a2007-05-05 11:47:08 -07005038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005039F: Documentation/networking/mac80211-injection.txt
5040F: include/net/mac80211.h
5041F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005042
Stefano Brivio1036d862007-12-23 04:46:27 +01005043MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005044M: Stefano Brivio <stefano.brivio@polimi.it>
5045M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005046L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005047W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005048T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5049T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005052
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005053MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005055L: netdev@vger.kernel.org
5056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005057F: drivers/net/macvlan.c
5058F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005059
Michael Kerriskfaf16682005-07-31 22:34:47 -07005060MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005062W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005063L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005064S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005065
stephen hemminger44c14c12012-04-02 12:59:47 +00005066MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5067M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005068M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005069L: netdev@vger.kernel.org
5070S: Maintained
5071F: drivers/net/ethernet/marvell/sk*
5072
Stefano Brivio74cda162007-11-19 20:27:46 +01005073MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005074L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005075S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005077
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005078MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005079M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005080L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005081S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005082F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005083F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005085MARVELL MVNETA ETHERNET DRIVER
5086M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5087L: netdev@vger.kernel.org
5088S: Maintained
5089F: drivers/net/ethernet/marvell/mvneta.*
5090
Bing Zhaofcad5842011-07-13 13:11:58 -07005091MARVELL MWIFIEX WIRELESS DRIVER
5092M: Bing Zhao <bzhao@marvell.com>
5093L: linux-wireless@vger.kernel.org
5094S: Maintained
5095F: drivers/net/wireless/mwifiex/
5096
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005097MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005098M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005099L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005100S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005101F: drivers/net/wireless/mwl8k.c
5102
Pierre Ossman2a695672009-03-16 19:52:26 +01005103MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005104M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005105S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005106F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005109L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005110S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005111F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005112F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Guenter Roeckca462082012-06-01 23:28:23 -07005114MAX16065 HARDWARE MONITOR DRIVER
5115M: Guenter Roeck <linux@roeck-us.net>
5116L: lm-sensors@lm-sensors.org
5117S: Maintained
5118F: Documentation/hwmon/max16065
5119F: drivers/hwmon/max16065.c
5120
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005121MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005122M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005123L: lm-sensors@lm-sensors.org
5124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005125F: Documentation/hwmon/max6650
5126F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005127
Guenter Roecke89ab512013-03-08 08:13:09 -08005128MAX6697 HARDWARE MONITOR DRIVER
5129M: Guenter Roeck <linux@roeck-us.net>
5130L: lm-sensors@lm-sensors.org
5131S: Maintained
5132F: Documentation/hwmon/max6697
5133F: Documentation/devicetree/bindings/i2c/max6697.txt
5134F: drivers/hwmon/max6697.c
5135F: include/linux/platform_data/max6697.h
5136
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005137MAXIRADIO FM RADIO RECEIVER DRIVER
5138M: Hans Verkuil <hverkuil@xs4all.nl>
5139L: linux-media@vger.kernel.org
5140T: git git://linuxtv.org/media_tree.git
5141W: http://linuxtv.org
5142S: Maintained
5143F: drivers/media/radio/radio-maxiradio*
5144
Joe Perches127c49a2009-04-08 08:34:04 -07005145MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005146M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005147P: LinuxTV.org Project
5148L: linux-media@vger.kernel.org
5149W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005150Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005151T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005152S: Maintained
5153F: Documentation/dvb/
5154F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005155F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005156F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005157F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005158F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005159F: include/uapi/linux/dvb/
5160F: include/uapi/linux/videodev2.h
5161F: include/uapi/linux/media.h
5162F: include/uapi/linux/v4l2-*
5163F: include/uapi/linux/meye.h
5164F: include/uapi/linux/ivtv*
5165F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005166
Hans Verkuil6149a932012-11-23 07:21:19 -03005167MEDIAVISION PRO MOVIE STUDIO DRIVER
5168M: Hans Verkuil <hverkuil@xs4all.nl>
5169L: linux-media@vger.kernel.org
5170T: git git://linuxtv.org/media_tree.git
5171W: http://linuxtv.org
5172S: Odd Fixes
5173F: drivers/media/parport/pms*
5174
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005175MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005176M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005177L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005178W: http://megaraid.lsilogic.com
5179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005180F: Documentation/scsi/megaraid.txt
5181F: drivers/scsi/megaraid.*
5182F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005183
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005184MELLANOX ETHERNET DRIVER (mlx4_en)
5185M: Amir Vadai <amirv@mellanox.com>
5186L: netdev@vger.kernel.org
5187S: Supported
5188W: http://www.mellanox.com
5189Q: http://patchwork.ozlabs.org/project/netdev/list/
5190F: drivers/net/ethernet/mellanox/mlx4/en_*
5191
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005192MEMORY MANAGEMENT
5193L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005194W: http://www.linux-mm.org
5195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005196F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005197F: include/linux/gfp.h
5198F: include/linux/mmzone.h
5199F: include/linux/memory_hotplug.h
5200F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005201F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005202
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005203MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005204M: Johannes Weiner <hannes@cmpxchg.org>
5205M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005206M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005207M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005208L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005209L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005211F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005212F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005213
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005214MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005217W: http://www.linux-mtd.infradead.org/
5218Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005219T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005221F: drivers/mtd/
5222F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005223F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
James Hogan12285942012-10-10 12:59:49 +01005225METAG ARCHITECTURE
5226M: James Hogan <james.hogan@imgtec.com>
5227S: Supported
5228F: arch/metag/
5229F: Documentation/metag/
5230F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005231F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005232F: drivers/irqchip/irq-metag.c
5233F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005234F: drivers/tty/metag_da.c
5235F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005236
Michal Simekc6375b02009-03-27 14:25:52 +01005237MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005239L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005240W: http://www.monstr.eu/fdt/
5241T: git git://git.monstr.eu/linux-2.6-microblaze.git
5242S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005243F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
5245MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005246M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
5250MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005251M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005253W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005254T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005255Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005257F: Documentation/mips/
5258F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Hans Verkuil08b76202012-11-23 07:15:42 -03005260MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5261M: Hans Verkuil <hverkuil@xs4all.nl>
5262L: linux-media@vger.kernel.org
5263T: git git://linuxtv.org/media_tree.git
5264W: http://linuxtv.org
5265S: Odd Fixes
5266F: drivers/media/radio/radio-miropcm20*
5267
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005271F: include/linux/module.h
5272F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
5274MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005276S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005277F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005278F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005279F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
Jiri Slabyb9705b62008-04-30 00:53:48 -07005281MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005282M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005284F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005285F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005286
Alexey Klimov889b2f82012-11-16 17:43:59 -03005287MR800 AVERMEDIA USB FM RADIO DRIVER
5288M: Alexey Klimov <klimov.linux@gmail.com>
5289L: linux-media@vger.kernel.org
5290T: git git://linuxtv.org/media_tree.git
5291S: Maintained
5292F: drivers/media/radio/radio-mr800.c
5293
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005294MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005295M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005296L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005299
Anisse Astier0f1006b2009-12-17 11:28:49 +01005300MSI WMI SUPPORT
5301M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005302L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005303S: Supported
5304F: drivers/platform/x86/msi-wmi.c
5305
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005306MT9M032 SENSOR DRIVER
5307M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5308L: linux-media@vger.kernel.org
5309T: git git://linuxtv.org/media_tree.git
5310S: Maintained
5311F: drivers/media/i2c/mt9m032.c
5312F: include/media/mt9m032.h
5313
5314MT9P031 SENSOR DRIVER
5315M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5316L: linux-media@vger.kernel.org
5317T: git git://linuxtv.org/media_tree.git
5318S: Maintained
5319F: drivers/media/i2c/mt9p031.c
5320F: include/media/mt9p031.h
5321
5322MT9T001 SENSOR DRIVER
5323M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5324L: linux-media@vger.kernel.org
5325T: git git://linuxtv.org/media_tree.git
5326S: Maintained
5327F: drivers/media/i2c/mt9t001.c
5328F: include/media/mt9t001.h
5329
5330MT9V032 SENSOR DRIVER
5331M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5332L: linux-media@vger.kernel.org
5333T: git git://linuxtv.org/media_tree.git
5334S: Maintained
5335F: drivers/media/i2c/mt9v032.c
5336F: include/media/mt9v032.h
5337
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005338MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005340T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005341S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005342F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005343
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005344MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005345M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005346L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005347T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005349F: drivers/mmc/
5350F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005351F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005352
David Brownell15a05802007-08-08 09:12:54 -07005353MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005354S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005355F: drivers/mmc/host/mmc_spi.c
5356F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005357
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005361F: Documentation/sound/oss/MultiSound
5362F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
Jiri Slabyd7354102006-12-08 02:38:35 -08005364MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005365S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005366F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005367F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005368
Felipe Balbi550a7372008-07-24 12:27:36 +03005369MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005370M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005371L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005372T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005374F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005375
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005376MXL5007T MEDIA DRIVER
5377M: Michael Krufky <mkrufky@linuxtv.org>
5378L: linux-media@vger.kernel.org
5379W: http://linuxtv.org/
5380W: http://github.com/mkrufky
5381Q: http://patchwork.linuxtv.org/project/linux-media/list/
5382T: git git://linuxtv.org/mkrufky/tuners.git
5383S: Maintained
5384F: drivers/media/tuners/mxl5007t.*
5385
Brice Goglin2d3cf582008-05-17 12:45:36 +02005386MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005388L: netdev@vger.kernel.org
5389W: http://www.myri.com/scs/download-Myri10GE.html
5390S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005391F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005392
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005394S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005395F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
Daniel Mack23dc05a2011-05-18 11:28:38 +02005397NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5398M: Daniel Mack <zonque@gmail.com>
5399S: Maintained
5400L: alsa-devel@alsa-project.org
5401W: http://www.native-instruments.com
5402F: sound/usb/caiaq/
5403
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005405M: Petr Vandrovec <petr@vandrovec.name>
5406S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005407F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408
5409NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411L: linux-scsi@vger.kernel.org
5412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005413F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005415NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005416M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005417L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005418W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005419S: Supported
5420F: drivers/infiniband/hw/nes/
5421
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005422NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005423M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005424L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005426F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005427
Jon Masonb2f5a052010-07-15 08:47:27 +00005428NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005429M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005430L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005432F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005433F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005434F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437P: Harald Welte
5438P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005439M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005441L: netfilter-devel@vger.kernel.org
5442L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005443L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444W: http://www.netfilter.org/
5445W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005446T: git git://1984.lsi.us.es/nf
5447T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005449F: include/linux/netfilter*
5450F: include/linux/netfilter/
5451F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005452F: include/uapi/linux/netfilter*
5453F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005454F: net/*/netfilter.c
5455F: net/*/netfilter/
5456F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457
Paul Moore4cc67732006-09-25 15:57:13 -07005458NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005459M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005460W: http://netlabel.sf.net
5461L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005462S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005463F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005464F: include/net/netlabel.h
5465F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005466
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005470W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005472F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005473F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005474F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005476NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005479L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005480F: Documentation/blockdev/nbd.txt
5481F: drivers/block/nbd.c
5482F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005483F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
Neil Horman6e436502009-10-05 03:56:55 +00005485NETWORK DROP MONITOR
5486M: Neil Horman <nhorman@tuxdriver.com>
5487L: netdev@vger.kernel.org
5488S: Maintained
5489W: https://fedorahosted.org/dropwatch/
5490F: net/core/drop_monitor.c
5491
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005494L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005495W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005496Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005497T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5498T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005500F: net/
5501F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005502F: include/linux/in.h
5503F: include/linux/net.h
5504F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005505F: include/uapi/linux/in.h
5506F: include/uapi/linux/net.h
5507F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
5509NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005510M: "David S. Miller" <davem@davemloft.net>
5511M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005512M: James Morris <jmorris@namei.org>
5513M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5514M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005515L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005516T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005518F: net/ipv4/
5519F: net/ipv6/
5520F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005521F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522
David S. Miller73b76562012-10-16 14:08:40 -04005523NETWORKING [IPSEC]
5524M: Steffen Klassert <steffen.klassert@secunet.com>
5525M: Herbert Xu <herbert@gondor.apana.org.au>
5526M: "David S. Miller" <davem@davemloft.net>
5527L: netdev@vger.kernel.org
5528T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5529S: Maintained
5530F: net/xfrm/
5531F: net/key/
5532F: net/ipv4/xfrm*
5533F: net/ipv6/xfrm*
5534F: include/uapi/linux/xfrm.h
5535F: include/net/xfrm.h
5536
James Morris10e2ff12007-08-25 14:41:28 -07005537NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005538M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005539L: netdev@vger.kernel.org
5540S: Maintained
5541
John W. Linville29f8f632006-01-18 14:52:48 -08005542NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005543M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005544L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005545Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005546T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005547S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005548F: net/mac80211/
5549F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005550F: net/wireless/
5551F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005552F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005553F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005554F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005555F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005556
Joe Perches788873a2009-04-16 09:38:45 +00005557NETWORKING DRIVERS
5558L: netdev@vger.kernel.org
5559W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005560Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005561T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5562T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005563S: Odd Fixes
5564F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005565F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005566F: include/linux/netdevice.h
5567F: include/linux/arcdevice.h
5568F: include/linux/etherdevice.h
5569F: include/linux/fcdevice.h
5570F: include/linux/fddidevice.h
5571F: include/linux/hippidevice.h
5572F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005573F: include/uapi/linux/if_*
5574F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005575
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005576NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005577M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005578M: Sony Chacko <sony.chacko@qlogic.com>
5579M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005580L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005581W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005582S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005583F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005584
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005585NFC SUBSYSTEM
5586M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5587M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5588M: Samuel Ortiz <sameo@linux.intel.com>
5589L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005590L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005591S: Maintained
5592F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005593F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005594F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005595F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005596F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005598NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005599M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005600L: linux-nfs@vger.kernel.org
5601W: http://client.linux-nfs.org
5602T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005604F: fs/lockd/
5605F: fs/nfs/
5606F: fs/nfs_common/
5607F: net/sunrpc/
5608F: include/linux/lockd/
5609F: include/linux/nfs*
5610F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005611F: include/uapi/linux/nfs*
5612F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005614NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005615M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005616L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005617W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005618T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005619S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005620F: Documentation/filesystems/nilfs2.txt
5621F: fs/nilfs2/
5622F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005623
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005628F: Documentation/scsi/NinjaSCSI.txt
5629F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
5631NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005632M: GOTO Masanori <gotom@debian.or.jp>
5633M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005636F: Documentation/scsi/NinjaSCSI.txt
5637F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638
Jon Masonfce8a7b2012-11-16 19:27:12 -07005639NTB DRIVER
5640M: Jon Mason <jon.mason@intel.com>
5641S: Supported
5642F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005643F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005644F: include/linux/ntb.h
5645
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005647M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005649W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005650T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005652F: Documentation/filesystems/ntfs.txt
5653F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005655NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005656M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005657L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005659F: drivers/video/riva/
5660F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661
Matthew Wilcox79461682012-11-10 08:54:53 -05005662NVM EXPRESS DRIVER
5663M: Matthew Wilcox <willy@linux.intel.com>
5664L: linux-nvme@lists.infradead.org
5665T: git git://git.infradead.org/users/willy/linux-nvme.git
5666S: Supported
5667F: drivers/block/nvme.c
5668F: include/linux/nvme.h
5669
Tony Lindgrenf5525782009-05-28 13:23:53 -07005670OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005671M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005672L: linux-omap@vger.kernel.org
5673W: http://www.muru.com/linux/omap/
5674W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005675Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005676T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005677S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005678F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005679F: drivers/i2c/busses/i2c-omap.c
5680F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005681
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005682OMAP DEVICE TREE SUPPORT
5683M: Benoît Cousson <b-cousson@ti.com>
5684M: Tony Lindgren <tony@atomide.com>
5685L: linux-omap@vger.kernel.org
5686L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5687S: Maintained
5688F: arch/arm/boot/dts/*omap*
5689F: arch/arm/boot/dts/*am3*
5690
Tony Lindgrenf5525782009-05-28 13:23:53 -07005691OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005693L: linux-omap@vger.kernel.org
5694S: Maintained
5695F: arch/arm/*omap*/*clock*
5696
5697OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005698M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005699L: linux-omap@vger.kernel.org
5700S: Maintained
5701F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005702F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005703
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005704OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5705M: Rajendra Nayak <rnayak@ti.com>
5706M: Paul Walmsley <paul@pwsan.com>
5707L: linux-omap@vger.kernel.org
5708S: Maintained
5709F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5710F: arch/arm/mach-omap2/powerdomain44xx.c
5711F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5712F: arch/arm/mach-omap2/clockdomain44xx.c
5713
Tony Lindgrenf5525782009-05-28 13:23:53 -07005714OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005715M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005716M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005717L: alsa-devel@alsa-project.org (subscribers-only)
5718L: linux-omap@vger.kernel.org
5719S: Maintained
5720F: sound/soc/omap/
5721
5722OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005723M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005724L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005725L: linux-omap@vger.kernel.org
5726S: Maintained
5727F: drivers/video/omap/
5728
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005729OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005730M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005731L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005732L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005733S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005734F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005735F: Documentation/arm/OMAP/DSS
5736
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005737OMAP HARDWARE SPINLOCK SUPPORT
5738M: Ohad Ben-Cohen <ohad@wizery.com>
5739L: linux-omap@vger.kernel.org
5740S: Maintained
5741F: drivers/hwspinlock/omap_hwspinlock.c
5742F: arch/arm/mach-omap2/hwspinlock.c
5743
Tony Lindgrenf5525782009-05-28 13:23:53 -07005744OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005745M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005746L: linux-omap@vger.kernel.org
5747S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005748F: drivers/mmc/host/omap.c
5749
5750OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305751M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305752L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005753L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305754S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005755F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005756
5757OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005758M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005759S: Maintained
5760F: drivers/char/hw_random/omap-rng.c
5761
Paul Walmsleyf400c822010-12-06 19:08:54 -07005762OMAP HWMOD SUPPORT
5763M: Benoît Cousson <b-cousson@ti.com>
5764M: Paul Walmsley <paul@pwsan.com>
5765L: linux-omap@vger.kernel.org
5766S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005767F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005768
5769OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5770M: Benoît Cousson <b-cousson@ti.com>
5771L: linux-omap@vger.kernel.org
5772S: Maintained
5773F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5774
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005775OMAP IMAGE SIGNAL PROCESSOR (ISP)
5776M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5777L: linux-media@vger.kernel.org
5778S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005779F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005780
Tony Lindgrenf5525782009-05-28 13:23:53 -07005781OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005782M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005783L: linux-usb@vger.kernel.org
5784L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005785T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005787F: drivers/usb/*/*omap*
5788F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005789
Kevin Hilman6d994712012-07-16 10:05:07 -07005790OMAP GPIO DRIVER
5791M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005792M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005793L: linux-omap@vger.kernel.org
5794S: Maintained
5795F: drivers/gpio/gpio-omap.c
5796
Bob Copeland0ad122d2008-07-25 19:45:18 -07005797OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005798M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005799L: linux-karma-devel@lists.sourceforge.net
5800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005801F: Documentation/filesystems/omfs.txt
5802F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005803
Harald Weltec1986ee2005-11-13 16:06:29 -08005804OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005805M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005807F: drivers/char/pcmcia/cm4000_cs.c
5808F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005809F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005810
Harald Welte77c44ab2005-11-13 16:06:26 -08005811OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005812M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005814F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005815
Jonathan Corbet77d51402007-03-22 19:44:17 -03005816OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005817M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005818L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005819T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005820S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005821F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005822
Thomas Gleixner431bca72007-05-02 09:31:35 +02005823ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005825L: linux-mtd@lists.infradead.org
5826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005827F: drivers/mtd/onenand/
5828F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005829
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005831M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832L: osst-users@lists.sourceforge.net
5833L: linux-scsi@vger.kernel.org
5834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005835F: drivers/scsi/osst*
5836F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005838OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005840L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005842F: Documentation/i2c/busses/i2c-ocores
5843F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005844
Grant Likely860c44c2009-10-26 16:49:49 -07005845OPEN FIRMWARE AND FLATTENED DEVICE TREE
5846M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005847M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005848L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005849W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005850T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005851S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005852F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005853F: drivers/of
5854F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005855F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005856K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005857K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005858
Jonas Bonn19f9d392011-06-04 22:00:38 +03005859OPENRISC ARCHITECTURE
5860M: Jonas Bonn <jonas@southpole.se>
5861W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005862L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005863S: Maintained
5864T: git git://openrisc.net/~jonas/linux
5865F: arch/openrisc
5866
Jesse Grossccb13522011-10-25 19:26:31 -07005867OPENVSWITCH
5868M: Jesse Gross <jesse@nicira.com>
5869L: dev@openvswitch.org
5870W: http://openvswitch.org
5871T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5872S: Maintained
5873F: net/openvswitch/
5874
Clemens Ladischaf399172011-01-10 16:32:54 +01005875OPL4 DRIVER
5876M: Clemens Ladisch <clemens@ladisch.de>
5877L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5878T: git git://git.alsa-project.org/alsa-kernel.git
5879S: Maintained
5880F: sound/drivers/opl4/
5881
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005883M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884L: oprofile-list@lists.sf.net
5885S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005886F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005887F: arch/*/oprofile/
5888F: drivers/oprofile/
5889F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005891ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005892M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005893M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005894L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5895W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005896T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005898F: Documentation/filesystems/ocfs2.txt
5899F: Documentation/filesystems/dlmfs.txt
5900F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005901
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005903L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005904W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005905W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005906S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005907F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005909OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005910M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005911M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005912L: osd-dev@open-osd.org
5913W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005914T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005915S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005916F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005917F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005918F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005919
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005920P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005921M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005922L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005923W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005925F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005926
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005927PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005929L: netdev@vger.kernel.org
5930S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005931F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005932
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005933PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005934M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005935L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005937F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005938
Steffen Klassert48fc2672010-08-13 10:10:46 -04005939PADATA PARALLEL EXECUTION MECHANISM
5940M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005941L: linux-crypto@vger.kernel.org
5942S: Maintained
5943F: kernel/padata.c
5944F: include/linux/padata.h
5945F: Documentation/padata.txt
5946
Harald Welte709ee532008-09-23 17:46:57 +02005947PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005948M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005949L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005951F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005952
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005953PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005954M: David Howells <dhowells@redhat.com>
5955M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005956L: linux-am33-list@redhat.com (moderated for non-subscribers)
5957W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005959F: Documentation/mn10300/
5960F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005963L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005964S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005965F: drivers/parport/
5966F: include/linux/parport*.h
5967F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005968F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005970PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005971M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005972M: Chris Wright <chrisw@sous-sol.org>
5973M: Alok Kataria <akataria@vmware.com>
5974M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005975L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005977F: Documentation/ia64/paravirt_ops.txt
5978F: arch/*/kernel/paravirt*
5979F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005980
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005982M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005983L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984W: http://www.torque.net/linux-pp.html
5985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005986F: Documentation/blockdev/paride.txt
5987F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
5989PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005990M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005991M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005992L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005994Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005995T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: arch/parisc/
5998F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Jim Cromie1662d322006-10-06 00:43:59 -07006000PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006002L: lm-sensors@lm-sensors.org
6003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: Documentation/hwmon/pc87360
6005F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006006
6007PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006011
Jean Delvare1ad107f2010-08-14 21:09:00 +02006012PC87427 HARDWARE MONITORING DRIVER
6013M: Jean Delvare <khali@linux-fr.org>
6014L: lm-sensors@lm-sensors.org
6015S: Maintained
6016F: Documentation/hwmon/pc87427
6017F: drivers/hwmon/pc87427.c
6018
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006019PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006021S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006022F: drivers/leds/leds-pca9532.c
6023F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006024
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006025PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006026M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006027L: linux-i2c@vger.kernel.org
6028S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006029F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006030
Khalid Aziz3971dae2012-04-12 12:49:13 -07006031PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006032M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006033S: Maintained
6034F: drivers/firmware/pcdp.*
6035
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006036PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006037M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006038L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006040F: Documentation/PCI/pci-error-recovery.txt
6041F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006042
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006044M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006045L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006046Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006047T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006049F: Documentation/PCI/
6050F: drivers/pci/
6051F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006054P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006055L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006056W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006057T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006059F: Documentation/pcmcia/
6060F: drivers/pcmcia/
6061F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062
6063PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006064M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006065L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006067F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Steffen Klassert48fc2672010-08-13 10:10:46 -04006069PCRYPT PARALLEL CRYPTO ENGINE
6070M: Steffen Klassert <steffen.klassert@secunet.com>
6071L: linux-crypto@vger.kernel.org
6072S: Maintained
6073F: crypto/pcrypt.c
6074F: include/crypto/pcrypt.h
6075
Tejun Heoe72df0b2010-12-10 17:02:49 +01006076PER-CPU MEMORY ALLOCATOR
6077M: Tejun Heo <tj@kernel.org>
6078M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006079T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6080S: Maintained
6081F: include/linux/percpu*.h
6082F: mm/percpu*.c
6083F: arch/*/include/asm/percpu.h
6084
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006085PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006086M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006088F: include/linux/delayacct.h
6089F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006090
Ingo Molnar57c0c152009-09-21 12:20:38 +02006091PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006092M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6093M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006094M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006095M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006096T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006097S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006098F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006099F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006100F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006101F: arch/*/kernel/perf_event*.c
6102F: arch/*/kernel/*/perf_event*.c
6103F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006104F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006105F: arch/*/kernel/perf_callchain.c
6106F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006107
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006108PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006109M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006110L: linux-abi-devel@lists.sourceforge.net
6111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006112F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006113F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006114
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006115PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006116M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006117S: Supported
6118F: Documentation/networking/phonet.txt
6119F: include/linux/phonet.h
6120F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006121F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006122F: net/phonet/
6123
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006125M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126L: linux-mtd@lists.infradead.org
6127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
Bruno Prémontefdbb102012-07-30 21:39:03 +02006130PICOLCD HID DRIVER
6131M: Bruno Prémont <bonbons@linux-vserver.org>
6132L: linux-input@vger.kernel.org
6133S: Maintained
6134F: drivers/hid/hid-picolcd*
6135
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006136PICOXCELL SUPPORT
6137M: Jamie Iles <jamie@jamieiles.com>
6138L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6139T: git git://github.com/jamieiles/linux-2.6-ji.git
6140S: Supported
6141F: arch/arm/mach-picoxcell
6142F: drivers/*/picoxcell*
6143F: drivers/*/*/picoxcell*
6144
Linus Walleij2744e8a2011-05-02 20:50:54 +02006145PIN CONTROL SUBSYSTEM
6146M: Linus Walleij <linus.walleij@linaro.org>
6147S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006148F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006149F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006150
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006151PIN CONTROLLER - ATMEL AT91
6152M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6154S: Maintained
6155F: drivers/pinctrl/pinctrl-at91.c
6156
Viresh Kumardeda8282012-03-28 22:27:07 +05306157PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006158M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306159L: spear-devel@list.st.com
6160L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6161W: http://www.st.com/spear
6162S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006163F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306164
Peter Osterlund249a6772005-09-27 21:45:30 -07006165PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006166M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006168F: drivers/block/pktcdvd.c
6169F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006170F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006171
GuanXuetaob31d8272011-01-16 00:35:49 +08006172PKUNITY SOC DRIVERS
6173M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6174W: http://mprc.pku.edu.cn/~guanxuetao/linux
6175S: Maintained
6176T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6177F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006178F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006179F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006180F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006181
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006182PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006183M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006184L: lm-sensors@lm-sensors.org
6185W: http://www.lm-sensors.org/
6186W: http://www.roeck-us.net/linux/drivers/
6187T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6188S: Maintained
6189F: Documentation/hwmon/pmbus
6190F: drivers/hwmon/pmbus/
6191F: include/linux/i2c/pmbus.h
6192
Anil Ravindranath89a36812009-08-25 17:35:18 -07006193PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006194M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006195L: linux-scsi@vger.kernel.org
6196W: http://www.pmc-sierra.com/
6197S: Supported
6198F: drivers/scsi/pmcraid.*
6199
jack wangdbf9bfe2009-10-14 16:19:21 +08006200PMC SIERRA PM8001 DRIVER
6201M: jack_wang@usish.com
6202M: lindar_liu@usish.com
6203L: linux-scsi@vger.kernel.org
6204S: Supported
6205F: drivers/scsi/pm8001/
6206
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006208M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006209T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006211F: fs/timerfd.c
6212F: include/linux/timer*
6213F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214
Anton Vorontsov3be86142007-07-15 04:43:36 +04006215POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006216M: Anton Vorontsov <cbou@mail.ru>
6217M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006218T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006220F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006221F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006222
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006224M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006225M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006227F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228
Vitaly Wool999445d2007-01-04 13:07:03 +01006229PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006230M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006231L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006233F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006234
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006236M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237L: linux-ppp@vger.kernel.org
6238S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006239F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
6241PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006245F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
6247PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006250F: drivers/net/ppp/pppoe.c
6251F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252
James Chapmana6d23702007-06-27 15:53:17 -07006253PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006254M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006255S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006256F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006257F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006258F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006259
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006260PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006262W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6263L: linuxpps@ml.enneenne.com (subscribers-only)
6264S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006265F: Documentation/pps/
6266F: drivers/pps/
6267F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006268
Harry Wei71a6d0a2011-05-11 15:13:33 -07006269PPTP DRIVER
6270M: Dmitry Kozlov <xeb@mail.ru>
6271L: netdev@vger.kernel.org
6272S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006273F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006274W: http://sourceforge.net/projects/accel-pptp
6275
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006277M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278L: kpreempt-tech@lists.sourceforge.net
6279W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006281F: Documentation/preempt-locking.txt
6282F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
6284PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006285M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006286L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006287W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006288S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006291PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006292M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006293L: linux-ide@vger.kernel.org
6294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006295F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006296
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006297PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006298M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006299L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006300L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006301S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006302F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006303
Geoff Levandf58a9d12006-11-23 00:46:51 +01006304PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006305M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006306L: linuxppc-dev@lists.ozlabs.org
6307L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006309F: arch/powerpc/boot/ps3*
6310F: arch/powerpc/include/asm/lv1call.h
6311F: arch/powerpc/include/asm/ps3*.h
6312F: arch/powerpc/platforms/ps3/
6313F: drivers/*/ps3*
6314F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006315F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006317F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006318
Jim Pariscffb4add2009-01-06 11:32:10 +00006319PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006320M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006321L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006322S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006323F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006324
Anton Vorontsov8defe592012-08-03 18:07:20 -07006325PSTORE FILESYSTEM
6326M: Anton Vorontsov <cbouatmailru@gmail.com>
6327M: Colin Cross <ccross@android.com>
6328M: Kees Cook <keescook@chromium.org>
6329M: Tony Luck <tony.luck@intel.com>
6330S: Maintained
6331T: git git://git.infradead.org/users/cbou/linux-pstore.git
6332F: fs/pstore/
6333F: include/linux/pstore*
6334F: drivers/firmware/efivars.c
6335F: drivers/acpi/apei/erst.c
6336
Richard Cochran7fbc4152012-03-10 01:55:53 +00006337PTP HARDWARE CLOCK SUPPORT
6338M: Richard Cochran <richardcochran@gmail.com>
6339S: Maintained
6340W: http://linuxptp.sourceforge.net/
6341F: Documentation/ABI/testing/sysfs-ptp
6342F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006343F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006344F: drivers/net/phy/dp83640*
6345F: drivers/ptp/*
6346F: include/linux/ptp_cl*
6347
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006348PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006349M: Roland McGrath <roland@redhat.com>
6350M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006351S: Maintained
6352F: include/asm-generic/syscall.h
6353F: include/linux/ptrace.h
6354F: include/linux/regset.h
6355F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006356F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006357F: kernel/ptrace.c
6358
Michael Krufky83202042006-07-03 00:24:18 -07006359PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006361L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006362L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006363W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006364T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006367F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006368
Hans de Goede39532e62012-11-04 17:05:59 -03006369PWC WEBCAM DRIVER
6370M: Hans de Goede <hdegoede@redhat.com>
6371L: linux-media@vger.kernel.org
6372T: git git://linuxtv.org/media_tree.git
6373S: Maintained
6374F: drivers/media/usb/pwc/*
6375
Thierry Reding200efed2012-03-27 13:16:18 +02006376PWM SUBSYSTEM
6377M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006378L: linux-kernel@vger.kernel.org
6379S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006380W: http://gitorious.org/linux-pwm
6381T: git git://gitorious.org/linux-pwm/linux-pwm.git
6382F: Documentation/pwm.txt
6383F: Documentation/devicetree/bindings/pwm/
6384F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006385F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006386F: drivers/video/backlight/pwm_bl.c
6387F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006388
Eric Miao30ec2612008-06-12 15:21:41 -07006389PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006390M: Eric Miao <eric.y.miao@gmail.com>
6391M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006392M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006393L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006394T: git git://github.com/hzhuang1/linux.git
6395T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006397F: arch/arm/mach-pxa/
6398F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006399F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006400F: drivers/usb/gadget/pxa2*
6401F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006402F: sound/arm/pxa*
6403F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006405MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006407M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006409T: git git://github.com/hzhuang1/linux.git
6410T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006411S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006412F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006413
Pierre Ossman272f1332007-05-14 21:25:26 +02006414PXA MMCI DRIVER
6415S: Orphan
6416
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006417PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006419L: rtc-linux@googlegroups.com
6420S: Maintained
6421
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006422QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006423M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006424L: linux-rdma@vger.kernel.org
6425S: Supported
6426F: drivers/infiniband/hw/qib/
6427
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006428QLOGIC QLA1280 SCSI DRIVER
6429M: Michael Reed <mdr@sgi.com>
6430L: linux-scsi@vger.kernel.org
6431S: Maintained
6432F: drivers/scsi/qla1280.[ch]
6433
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006435M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006436M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437L: linux-scsi@vger.kernel.org
6438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006439F: Documentation/scsi/LICENSE.qla2xxx
6440F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441
Ravi Anand883c98f2010-04-28 11:45:49 +05306442QLOGIC QLA4XXX iSCSI DRIVER
6443M: Ravi Anand <ravi.anand@qlogic.com>
6444M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6445M: iscsi-driver@qlogic.com
6446L: linux-scsi@vger.kernel.org
6447S: Supported
6448F: drivers/scsi/qla4xxx/
6449
Ron Mercer5a4faa872006-07-25 00:40:21 -07006450QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006451M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006452M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006453M: linux-driver@qlogic.com
6454L: netdev@vger.kernel.org
6455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006456F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006457F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006458
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006459QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006460M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6461M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006462M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006463M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006464M: linux-driver@qlogic.com
6465L: netdev@vger.kernel.org
6466S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006467F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006468
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006469QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006470M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006471M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006472M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006473L: netdev@vger.kernel.org
6474S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006475F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006476
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479W: http://www.alarsen.net/linux/qnx4fs/
6480S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006481F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006482F: include/uapi/linux/qnx4_fs.h
6483F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Antti Palosaari91952bc2012-10-01 12:28:46 -03006485QT1010 MEDIA DRIVER
6486M: Antti Palosaari <crope@iki.fi>
6487L: linux-media@vger.kernel.org
6488W: http://linuxtv.org/
6489W: http://palosaari.fi/linux/
6490Q: http://patchwork.linuxtv.org/project/linux-media/list/
6491T: git git://linuxtv.org/anttip/media_tree.git
6492S: Maintained
6493F: drivers/media/tuners/qt1010*
6494
Richard Kuo4f4567c2011-10-31 18:56:38 -05006495QUALCOMM HEXAGON ARCHITECTURE
6496M: Richard Kuo <rkuo@codeaurora.org>
6497L: linux-hexagon@vger.kernel.org
6498S: Supported
6499F: arch/hexagon/
6500
Hans Verkuil35e35402012-11-23 07:02:29 -03006501QUICKCAM PARALLEL PORT WEBCAMS
6502M: Hans Verkuil <hverkuil@xs4all.nl>
6503L: linux-media@vger.kernel.org
6504T: git git://linuxtv.org/media_tree.git
6505W: http://linuxtv.org
6506S: Odd Fixes
6507F: drivers/media/parport/*-qcam*
6508
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006509RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006510M: Yehuda Sadeh <yehuda@inktank.com>
6511M: Sage Weil <sage@inktank.com>
6512M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006513M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006514W: http://ceph.com/
6515T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006516S: Supported
6517F: drivers/block/rbd.c
6518F: drivers/block/rbd_types.h
6519
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006522L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006524F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006525F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526
Hans de Goedec6c9b342012-11-04 17:03:58 -03006527RADIOSHARK RADIO DRIVER
6528M: Hans de Goede <hdegoede@redhat.com>
6529L: linux-media@vger.kernel.org
6530T: git git://linuxtv.org/media_tree.git
6531S: Maintained
6532F: drivers/media/radio/radio-shark.c
6533
6534RADIOSHARK2 RADIO DRIVER
6535M: Hans de Goede <hdegoede@redhat.com>
6536L: linux-media@vger.kernel.org
6537T: git git://linuxtv.org/media_tree.git
6538S: Maintained
6539F: drivers/media/radio/radio-shark2.c
6540F: drivers/media/radio/radio-tea5777.c
6541
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006543M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006544L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006546F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547
Randy Dunlape7839f22008-10-12 16:11:45 -07006548RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006549P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006550M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006551M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006552M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006553L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006554L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006555W: http://rt2x00.serialmonkey.com/
6556S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006557T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006558F: drivers/net/wireless/rt2x00/
6559
Nick Piggin9db55792008-02-08 04:19:49 -08006560RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006561M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006563F: Documentation/blockdev/ramdisk.txt
6564F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006565
Matt Mackall9e95ce22005-04-16 15:25:56 -07006566RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006567M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006569F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006570
Matt Porter394b7012005-11-07 01:00:15 -08006571RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006572M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006573M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006576
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006577RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006578L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006579S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006580F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006581
6582RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006583M: Josh Triplett <josh@freedesktop.org>
6584M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006585S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006586T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006587F: Documentation/RCU/torture.txt
6588F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006589
Florian Fainellic1f766b2008-02-06 22:39:44 +01006590RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006592S: Maintained
6593
Florian Fainellidb17f392007-12-19 11:30:30 +01006594RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006595M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006596L: netdev@vger.kernel.org
6597S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006598F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006599
Andy Grovera09ed662009-02-24 15:30:41 +00006600RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006601M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006602L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006604F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006605
Josh Triplett595182b2006-10-04 02:17:21 -07006606READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006607M: Dipankar Sarma <dipankar@in.ibm.com>
6608M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006609W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006610S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006611T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006612F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006613X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006614F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006615F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006616X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006617
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006618REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006619M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006620L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006621Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006623F: Documentation/rtc.txt
6624F: drivers/rtc/
6625F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006626F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006627
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006629L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006631F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632
Mark Brownb83a3132011-05-11 19:59:58 +02006633REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006634M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006635T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6636S: Supported
6637F: drivers/base/regmap/
6638F: include/linux/regmap.h
6639
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006640REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6641M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006642T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006643S: Maintained
6644F: drivers/remoteproc/
6645F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006646F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006647
Ivo van Doorne08976452008-04-12 19:23:55 +02006648RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006649M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006650L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006651W: http://wireless.kernel.org/
6652T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6653T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006654S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006655F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006656F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006657
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006658RICOH SMARTMEDIA/XD DRIVER
6659M: Maxim Levitsky <maximlevitsky@gmail.com>
6660S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006661F: drivers/mtd/nand/r852.c
6662F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006663
Maxim Levitsky92634122011-03-25 01:56:59 -07006664RICOH R5C592 MEMORYSTICK DRIVER
6665M: Maxim Levitsky <maximlevitsky@gmail.com>
6666S: Maintained
6667F: drivers/memstick/host/r592.*
6668
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669ROCKETPORT DRIVER
6670P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671W: http://www.comtrol.com
6672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006673F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006674F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675
6676ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006677M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006679W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006681F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006682F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006683F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
Antti Palosaari91952bc2012-10-01 12:28:46 -03006685RTL2830 MEDIA DRIVER
6686M: Antti Palosaari <crope@iki.fi>
6687L: linux-media@vger.kernel.org
6688W: http://linuxtv.org/
6689W: http://palosaari.fi/linux/
6690Q: http://patchwork.linuxtv.org/project/linux-media/list/
6691T: git git://linuxtv.org/anttip/media_tree.git
6692S: Maintained
6693F: drivers/media/dvb-frontends/rtl2830*
6694
Larry Finger59840482008-11-12 17:13:09 -06006695RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006696M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006697L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006698W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006699T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006700S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006701F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006702
Larry Finger59840482008-11-12 17:13:09 -06006703RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006704M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006705M: Hin-Tak Leung <htl10@users.sourceforge.net>
6706M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006707L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006708W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006709T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006710S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006711F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006712
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006713RTL8192CE WIRELESS DRIVER
6714M: Larry Finger <Larry.Finger@lwfinger.net>
6715M: Chaoming Li <chaoming_li@realsil.com.cn>
6716L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006717W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006718T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6719S: Maintained
6720F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006721F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006722
6723S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006725L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006727F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006728
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729S390
Joe Perches8b58be82009-07-29 15:04:30 -07006730M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6731M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006733L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006734W: http://www.ibm.com/developerworks/linux/linux390/
6735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006736F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006737F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006738F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006739F: Documentation/s390/
6740F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006741
6742S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006743M: Ursula Braun <ursula.braun@de.ibm.com>
6744M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006745M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006746L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006747W: http://www.ibm.com/developerworks/linux/linux390/
6748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006749F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006750
Felix Beckfeed9b62009-03-26 15:24:23 +01006751S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006752M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006753M: linux390@de.ibm.com
6754L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006755W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006756S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006757F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006758
Heiko Carstens5238da42006-02-11 17:56:01 -08006759S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006760M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006761M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006762L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006763W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006765F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
Ursula Braundd96df22007-09-19 13:09:02 +02006767S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006769M: linux390@de.ibm.com
6770L: linux-s390@vger.kernel.org
6771W: http://www.ibm.com/developerworks/linux/linux390/
6772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006773F: drivers/s390/net/*iucv*
6774F: include/net/iucv/
6775F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006776
Ben Dooks4dde7f72008-06-30 22:40:38 +01006777S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006778M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006779L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006780S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006781F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006782
Hans Verkuil1f15a222012-11-23 07:45:29 -03006783SAA6588 RDS RECEIVER DRIVER
6784M: Hans Verkuil <hverkuil@xs4all.nl>
6785L: linux-media@vger.kernel.org
6786T: git git://linuxtv.org/media_tree.git
6787W: http://linuxtv.org
6788S: Odd Fixes
6789F: drivers/media/i2c/saa6588*
6790
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006791SAA7134 VIDEO4LINUX DRIVER
6792M: Mauro Carvalho Chehab <mchehab@redhat.com>
6793L: linux-media@vger.kernel.org
6794W: http://linuxtv.org
6795T: git git://linuxtv.org/media_tree.git
6796S: Odd fixes
6797F: Documentation/video4linux/saa7134/
6798F: drivers/media/pci/saa7134/
6799
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006801M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006802L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006803T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006805F: drivers/media/common/saa7146/
6806F: drivers/media/pci/saa7146/
6807F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808
Corentin Chary92304a42011-12-05 12:38:35 -05006809SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006810M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006811L: platform-driver-x86@vger.kernel.org
6812S: Maintained
6813F: drivers/platform/x86/samsung-laptop.c
6814
Mark Brown4a109cc2010-09-24 10:50:46 +01006815SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006816M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006817L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6818S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006819F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006820
Jingoo Han0d89a282011-12-19 11:09:35 +09006821SAMSUNG FRAMEBUFFER DRIVER
6822M: Jingoo Han <jg1.han@samsung.com>
6823L: linux-fbdev@vger.kernel.org
6824S: Maintained
6825F: drivers/video/s3c-fb.c
6826
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006827SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6828M: Sangbeom Kim <sbkim73@samsung.com>
6829L: linux-kernel@vger.kernel.org
6830S: Supported
6831F: drivers/mfd/sec*.c
6832F: drivers/regulator/s2m*.c
6833F: drivers/regulator/s5m*.c
6834F: drivers/rtc/rtc-sec.c
6835F: include/linux/mfd/samsung/
6836
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006837SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6838M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6839L: linux-media@vger.kernel.org
6840L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6841S: Maintained
6842F: drivers/media/platform/s3c-camif/
6843F: include/media/s3c_camif.h
6844
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006845SAMSUNG S5C73M3 CAMERA DRIVER
6846M: Kyungmin Park <kyungmin.park@samsung.com>
6847M: Andrzej Hajda <a.hajda@samsung.com>
6848L: linux-media@vger.kernel.org
6849S: Supported
6850F: drivers/media/i2c/s5c73m3/*
6851
Alan Coxca749e22011-03-18 13:56:14 +00006852SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006853M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006854L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006855S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006856F: drivers/tty/serial
6857
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306858SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006859M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306860S: Maintained
6861F: include/linux/dw_dmac.h
6862F: drivers/dma/dw_dmac_regs.h
6863F: drivers/dma/dw_dmac.c
6864
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006865SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6866M: Seungwon Jeon <tgih.jun@samsung.com>
6867M: Jaehoon Chung <jh80.chung@samsung.com>
6868L: linux-mmc@vger.kernel.org
6869S: Maintained
6870F: include/linux/mmc/dw_mmc.h
6871F: drivers/mmc/host/dw_mmc*
6872
Thomas Gleixner88606e82010-12-14 21:37:13 +01006873TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006874M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006875M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006876T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006877S: Supported
6878F: include/linux/clocksource.h
6879F: include/linux/time.h
6880F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006881F: include/uapi/linux/time.h
6882F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006883F: kernel/time/clocksource.c
6884F: kernel/time/time*.c
6885F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006886F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006887
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006888TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006889M: Huang Shijie <shijie8@gmail.com>
6890M: Kang Yong <kangyong@telegent.com>
6891M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006892S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006893F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006894
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006896M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006898F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899
6900SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006901M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006902M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006903T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006905F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006906F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006907F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908
Chen Liqin6bcf6732009-06-13 15:24:33 +08006909SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006910M: Chen Liqin <liqin.chen@sunplusct.com>
6911M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006912W: http://www.sunplusct.com
6913S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006914F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006915
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006917M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918L: linux-scsi@vger.kernel.org
6919W: http://www.kernel.dk
6920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006921F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922
Roland Dreierfb50a832010-10-07 09:54:53 -07006923SCSI RDMA PROTOCOL (SRP) INITIATOR
6924M: David Dillow <dillowda@ornl.gov>
6925L: linux-rdma@vger.kernel.org
6926S: Supported
6927W: http://www.openfabrics.org
6928Q: http://patchwork.kernel.org/project/linux-rdma/list/
6929T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6930F: drivers/infiniband/ulp/srp/
6931F: include/scsi/srp.h
6932
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006934M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935L: linux-scsi@vger.kernel.org
6936W: http://www.torque.net/sg
6937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006938F: drivers/scsi/sg.c
6939F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940
6941SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006942M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006944T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6945T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6946T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006948F: drivers/scsi/
6949F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950
6951SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006952M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953L: linux-scsi@vger.kernel.org
6954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006955F: Documentation/scsi/st.txt
6956F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957
6958SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006959M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006960M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006961L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006962W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006964F: Documentation/networking/sctp.txt
6965F: include/linux/sctp.h
6966F: include/net/sctp/
6967F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968
6969SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006970M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006971S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006972F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006973F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006974F: drivers/watchdog/scx200_wdt.c
6975F: drivers/i2c/busses/scx200*
6976F: drivers/mtd/maps/scx200_docflash.c
6977F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006978
6979SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006980M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006982F: drivers/char/scx200_gpio.c
6983F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006984
6985SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006986M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006988F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989
Sascha Sommer6a369132008-07-15 14:21:29 +02006990SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006991M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006992L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006994F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006995
Randy Dunlape7839f22008-10-12 16:11:45 -07006996SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006997M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006998L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006999T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7000S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007001F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007002F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007003
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007004SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007005M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007006L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007007L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007009F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010
Ben Dooks0d1bb412009-06-14 13:52:37 +01007011SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007012M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007013L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007014S: Maintained
7015F: drivers/mmc/host/sdhci-s3c.c
7016
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007017SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007018M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007019L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007020L: linux-mmc@vger.kernel.org
7021S: Maintained
7022F: drivers/mmc/host/sdhci-spear.c
7023
James Morris8711cca2008-12-04 03:19:45 +11007024SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007025M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007026L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007027T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007028W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007029S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007030F: security/
James Morris8711cca2008-12-04 03:19:45 +11007031
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007033M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034S: Supported
7035
7036SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007037M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007038M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007039M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007040L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007041W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007042T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007044F: include/linux/selinux*
7045F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007046F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
John Johansenc1c124e2010-07-29 14:48:09 -07007048APPARMOR SECURITY MODULE
7049M: John Johansen <john.johansen@canonical.com>
7050L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7051W: apparmor.wiki.kernel.org
7052T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7053S: Supported
7054F: security/apparmor/
7055
Jiri Slabycef2cf02007-05-08 00:31:45 -07007056SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007057M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007060F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007061
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007062SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007063M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007067F: drivers/ata/
7068F: include/linux/ata.h
7069F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307071SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007072M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007073L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007074W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007075S: Supported
7076F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307077
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007078SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007079M: Sathya Perla <sathya.perla@emulex.com>
7080M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7081M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007082L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007083W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007084S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007085F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007086
Ben Hutchings8ceee662008-04-27 12:55:59 +01007087SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007088M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007089M: Ben Hutchings <bhutchings@solarflare.com>
7090L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007091S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007092F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007094SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007095M: Dimitri Sivanich <sivanich@sgi.com>
7096M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007098F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007099
7100SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007101M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102L: linux-ia64@vger.kernel.org
7103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007104F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007105F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007106F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007107
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007109M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110L: linux-visws-devel@lists.sf.net
7111W: http://linux-visws.sf.net
7112S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007113F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114
Jack Steiner75312612008-08-15 00:40:42 -07007115SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007116M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007118F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007119
Hans Verkuil49cc6292012-11-30 07:13:29 -03007120SI470X FM RADIO RECEIVER I2C DRIVER
7121M: Hans Verkuil <hverkuil@xs4all.nl>
7122L: linux-media@vger.kernel.org
7123T: git git://linuxtv.org/media_tree.git
7124W: http://linuxtv.org
7125S: Odd Fixes
7126F: drivers/media/radio/si470x/radio-si470x-i2c.c
7127
7128SI470X FM RADIO RECEIVER USB DRIVER
7129M: Hans Verkuil <hverkuil@xs4all.nl>
7130L: linux-media@vger.kernel.org
7131T: git git://linuxtv.org/media_tree.git
7132W: http://linuxtv.org
7133S: Maintained
7134F: drivers/media/radio/si470x/radio-si470x-common.c
7135F: drivers/media/radio/si470x/radio-si470x.h
7136F: drivers/media/radio/si470x/radio-si470x-usb.c
7137
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007138SH_VEU V4L2 MEM2MEM DRIVER
7139M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7140L: linux-media@vger.kernel.org
7141S: Maintained
7142F: drivers/media/platform/sh_veu.c
7143F: include/media/sh_veu.h
7144
7145SH_VOU V4L2 OUTPUT DRIVER
7146M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7147L: linux-media@vger.kernel.org
7148S: Maintained
7149F: drivers/media/platform/sh_vou.c
7150F: include/media/sh_vou.h
7151
Len Brown6349d992009-08-14 15:07:14 -04007152SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007153M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007154L: sfi-devel@simplefirmware.org
7155W: http://simplefirmware.org/
7156T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007157S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007158F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007159F: drivers/sfi/
7160F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007161
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162SIMTEC EB110ATX (Chalice CATS)
7163P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007164P: Vincent Sanders <vince@simtec.co.uk>
7165M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166W: http://www.simtec.co.uk/products/EB110ATX/
7167S: Supported
7168
7169SIMTEC EB2410ITX (BAST)
7170P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007171P: Vincent Sanders <vince@simtec.co.uk>
7172M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173W: http://www.simtec.co.uk/products/EB2410ITX/
7174S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007175F: arch/arm/mach-s3c2410/mach-bast.c
7176F: arch/arm/mach-s3c2410/bast-ide.c
7177F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007179TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007180M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007181M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307182L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307183T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007184Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007185S: Supported
7186F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007187F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007188
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007189TI DAVINCI SERIES MEDIA DRIVER
7190M: Manjunath Hadli <manjunath.hadli@ti.com>
7191M: Prabhakar Lad <prabhakar.lad@ti.com>
7192L: linux-media@vger.kernel.org
7193L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7194W: http://linuxtv.org/
7195Q: http://patchwork.linuxtv.org/project/linux-media/list/
7196T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7197S: Supported
7198F: drivers/media/platform/davinci/
7199F: include/media/davinci/
7200
Francois Romieu92aab3c2005-07-30 13:11:18 +02007201SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007202M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007203L: netdev@vger.kernel.org
7204S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007205F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007206
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007208M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007210L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007212F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213
7214SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007215M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007218F: Documentation/fb/sisfb.txt
7219F: drivers/video/sis/
7220F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221
7222SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007223M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224W: http://www.winischhofer.at/linuxsisusbvga.shtml
7225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007226F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007227
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007228SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007229M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007230M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007231M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007232L: linux-mm@kvack.org
7233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007234F: include/linux/sl?b*.h
7235F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007236
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007237SLEEPABLE READ-COPY UPDATE (SRCU)
7238M: Lai Jiangshan <laijs@cn.fujitsu.com>
7239M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7240W: http://www.rdrop.com/users/paulmck/RCU/
7241S: Supported
7242T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7243F: include/linux/srcu*
7244F: kernel/srcu*
7245
Casey Schaufler66372842012-05-23 18:34:52 -07007246SMACK SECURITY MODULE
7247M: Casey Schaufler <casey@schaufler-ca.com>
7248L: linux-security-module@vger.kernel.org
7249W: http://schaufler-ca.com
7250T: git git://git.gitorious.org/smack-next/kernel.git
7251S: Maintained
7252F: Documentation/security/Smack.txt
7253F: security/smack/
7254
Linus Torvalds1da177e2005-04-16 15:20:36 -07007255SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007256M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007257S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007258F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259
Sakari Ailuse8e31622012-11-12 18:14:39 -03007260SMIA AND SMIA++ IMAGE SENSOR DRIVER
7261M: Sakari Ailus <sakari.ailus@iki.fi>
7262L: linux-media@vger.kernel.org
7263S: Maintained
7264F: drivers/media/i2c/smiapp
7265F: include/media/smiapp.h
7266F: drivers/media/i2c/smiapp-pll.c
7267F: drivers/media/i2c/smiapp-pll.h
7268
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007269SMM665 HARDWARE MONITOR DRIVER
7270M: Guenter Roeck <linux@roeck-us.net>
7271L: lm-sensors@lm-sensors.org
7272S: Maintained
7273F: Documentation/hwmon/smm665
7274F: drivers/hwmon/smm665.c
7275
Steve Glendinning9df73052010-08-14 21:08:54 +02007276SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007277M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007278L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007279S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007280F: Documentation/hwmon/emc2103
7281F: drivers/hwmon/emc2103.c
7282
Hans de Goedea98d5062011-03-21 17:59:36 +01007283SMSC SCH5627 HARDWARE MONITOR DRIVER
7284M: Hans de Goede <hdegoede@redhat.com>
7285L: lm-sensors@lm-sensors.org
7286S: Supported
7287F: Documentation/hwmon/sch5627
7288F: drivers/hwmon/sch5627.c
7289
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007290SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007291M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007292L: lm-sensors@lm-sensors.org
7293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007294F: Documentation/hwmon/smsc47b397
7295F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007296
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007297SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007298M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007299L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007301F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007302F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007303
Steve Glendinning2cb37722008-12-11 20:54:30 -08007304SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007305M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007306L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007307S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007308F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007309
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007310SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007311M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007312L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007313S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007314F: drivers/video/smscufx.c
7315
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007316SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007317M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007318L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007319T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007320S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007321F: include/media/soc*
7322F: drivers/media/i2c/soc_camera/
7323F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007324
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007325SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007326M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007328F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007329
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007331M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007334F: drivers/md/
7335F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007336F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007340L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007342F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Michael Buesch61e115a2007-09-18 15:12:50 -04007344SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007345M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007346L: netdev@vger.kernel.org
7347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007348F: drivers/ssb/
7349F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007350
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007352M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007353L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007354W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007356F: Documentation/laptops/sony-laptop.txt
7357F: drivers/char/sonypi.c
7358F: drivers/platform/x86/sony-laptop.c
7359F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360
Alex Dubovbaf85322008-02-09 10:20:54 -08007361SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007362M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007363W: http://tifmxx.berlios.de/
7364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007365F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007366
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007368M: Jaroslav Kysela <perex@perex.cz>
7369M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007370L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007371W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007372T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007373T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007375F: Documentation/sound/
7376F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007377F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007378F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379
Mark Brownbd903bd2008-11-19 19:16:05 +00007380SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007381M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007382M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007383T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007384L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007385W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007387F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007388F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007389
Sam Ravnborg473321f2009-01-04 15:47:49 -08007390SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007391M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007393Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007394T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7395T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007398F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
David S. Miller6404fcc2010-03-16 01:00:17 -07007400SPARC SERIAL DRIVERS
7401M: "David S. Miller" <davem@davemloft.net>
7402L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007403T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7404T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007405S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007406F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007407F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007408F: drivers/tty/serial/sunhv.c
7409F: drivers/tty/serial/sunsab.c
7410F: drivers/tty/serial/sunsab.h
7411F: drivers/tty/serial/sunsu.c
7412F: drivers/tty/serial/sunzilog.c
7413F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007414
Christopher Li389325b2012-04-05 14:25:14 -07007415SPARSE CHECKER
7416M: "Christopher Li" <sparse@chrisli.org>
7417L: linux-sparse@vger.kernel.org
7418W: https://sparse.wiki.kernel.org/
7419T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7420T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7421S: Maintained
7422F: include/linux/compiler.h
7423
viresh kumarfc0c1952010-04-01 12:31:21 +01007424SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007425M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307426M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007427L: spear-devel@list.st.com
7428L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007429W: http://www.st.com/spear
7430S: Maintained
7431F: arch/arm/plat-spear/
7432
Viresh Kumar71e09a92012-04-20 22:39:48 +05307433SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007434M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307435M: Shiraz Hashim <shiraz.hashim@st.com>
7436L: spear-devel@list.st.com
7437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7438W: http://www.st.com/spear
7439S: Maintained
7440F: arch/arm/mach-spear13xx/
7441
viresh kumarfc0c1952010-04-01 12:31:21 +01007442SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007443M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307444M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007445L: spear-devel@list.st.com
7446L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007447W: http://www.st.com/spear
7448S: Maintained
7449F: arch/arm/mach-spear3xx/
7450
7451SPEAR6XX MACHINE SUPPORT
7452M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307453M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007454M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007455L: spear-devel@list.st.com
7456L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007457W: http://www.st.com/spear
7458S: Maintained
7459F: arch/arm/mach-spear6xx/
7460
7461SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007462M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007463L: spear-devel@list.st.com
7464L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007465W: http://www.st.com/spear
7466S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307467F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007468
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007469SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007470M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownb02e48f2013-04-12 11:39:57 +01007471M: Mark Brown <broonie@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007472L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007473Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007474T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/spi/
7477F: drivers/spi/
7478F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007479F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007480
Jim Lewis2752e402006-09-29 02:01:19 -07007481SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007482M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7483M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007484L: netdev@vger.kernel.org
7485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007486F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007487F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007488
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007489SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007490M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007491L: linuxppc-dev@lists.ozlabs.org
7492L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007493W: http://www.ibm.com/developerworks/power/cell/
7494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007495F: Documentation/filesystems/spufs.txt
7496F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007497
Phillip Lougherfc555842009-01-05 08:46:29 +00007498SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007499M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007500L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7501W: http://squashfs.org.uk
7502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007503F: Documentation/filesystems/squashfs.txt
7504F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007505
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007507M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007509F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510
Linus Torvalds26e9a392008-10-17 09:50:12 -07007511STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007512M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007513L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007514S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007515
Linus Torvalds26e9a392008-10-17 09:50:12 -07007516STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007517M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007518T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007519L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007521F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007522
Joe Perchesc8c8b102011-07-05 09:42:12 -07007523STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7524M: Henk de Groot <pe1dnn@amsat.org>
7525S: Odd Fixes
7526F: drivers/staging/wlags49_h2/
7527F: drivers/staging/wlags49_h25/
7528
Joe Perchesc9555152011-07-05 09:42:01 -07007529STAGING - ASUS OLED
7530M: Jakub Schmidtke <sjakub@gmail.com>
7531S: Odd Fixes
7532F: drivers/staging/asus_oled/
7533
Joe Perchesebd3d012011-07-05 09:42:02 -07007534STAGING - COMEDI
7535M: Ian Abbott <abbotti@mev.co.uk>
7536M: Mori Hess <fmhess@users.sourceforge.net>
7537S: Odd Fixes
7538F: drivers/staging/comedi/
7539
Joe Perches8ca572c2011-07-05 09:42:03 -07007540STAGING - CRYSTAL HD VIDEO DECODER
7541M: Naren Sankar <nsankar@broadcom.com>
7542M: Jarod Wilson <jarod@wilsonet.com>
7543M: Scott Davilla <davilla@4pi.com>
7544M: Manu Abraham <abraham.manu@gmail.com>
7545S: Odd Fixes
7546F: drivers/staging/crystalhd/
7547
Joe Perches0f16ffc2011-07-05 09:42:04 -07007548STAGING - ECHO CANCELLER
7549M: Steve Underwood <steveu@coppice.org>
7550M: David Rowe <david@rowetel.com>
7551S: Odd Fixes
7552F: drivers/staging/echo/
7553
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007554STAGING - ET131X NETWORK DRIVER
7555M: Mark Einon <mark.einon@gmail.com>
7556S: Odd Fixes
7557F: drivers/staging/et131x/
7558
Joe Perchesa0138162011-07-05 15:21:34 -07007559STAGING - FLARION FT1000 DRIVERS
7560M: Marek Belisko <marek.belisko@gmail.com>
7561S: Odd Fixes
7562F: drivers/staging/ft1000/
7563
Joe Perchesec3fab92011-07-05 09:42:05 -07007564STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7565M: David Täht <d@teklibre.com>
7566S: Odd Fixes
7567F: drivers/staging/frontier/
7568
Joe Perches6c1bb422011-07-05 09:42:07 -07007569STAGING - INDUSTRIAL IO
7570M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007571L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007572S: Odd Fixes
7573F: drivers/staging/iio/
7574
Joe Perchesa0138162011-07-05 15:21:34 -07007575STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7576M: Jarod Wilson <jarod@wilsonet.com>
7577W: http://www.lirc.org/
7578S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007579F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007580
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007581STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007582M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007583M: Marc Dietrich <marvin24@gmx.de>
7584L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007585L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007586S: Maintained
7587F: drivers/staging/nvec/
7588
Joe Perchesa0138162011-07-05 15:21:34 -07007589STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7590M: Andres Salomon <dilinger@queued.net>
7591M: Chris Ball <cjb@laptop.org>
7592M: Jon Nettleton <jon.nettleton@gmail.com>
7593W: http://wiki.laptop.org/go/DCON
7594S: Odd Fixes
7595F: drivers/staging/olpc_dcon/
7596
Chris Kelly94cfdd12012-03-14 10:55:42 +00007597STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007598M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007599S: Maintained
7600F: drivers/staging/ozwpan/
7601
Joe Perchesa0138162011-07-05 15:21:34 -07007602STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007603M: Willy Tarreau <willy@meta-x.org>
7604S: Odd Fixes
7605F: drivers/staging/panel/
7606
Joe Perchesa0138162011-07-05 15:21:34 -07007607STAGING - REALTEK RTL8712U DRIVERS
7608M: Larry Finger <Larry.Finger@lwfinger.net>
7609M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7610S: Odd Fixes
7611F: drivers/staging/rtl8712/
7612
Joe Perches9629fa82011-07-05 09:42:09 -07007613STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7614M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7615S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007616F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007617
Joe Perchesa0138162011-07-05 15:21:34 -07007618STAGING - SOFTLOGIC 6x10 MPEG CODEC
7619M: Ben Collins <bcollins@bluecherry.net>
7620S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007621F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007622
7623STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7624M: William Hubbs <w.d.hubbs@gmail.com>
7625M: Chris Brannon <chris@the-brannons.com>
7626M: Kirk Reiser <kirk@braille.uwo.ca>
7627M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7628L: speakup@braille.uwo.ca
7629W: http://www.linux-speakup.org/
7630S: Odd Fixes
7631F: drivers/staging/speakup/
7632
7633STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007634M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007635S: Odd Fixes
7636F: drivers/staging/tidspbridge/
7637
Joe Perchesa0138162011-07-05 15:21:34 -07007638STAGING - USB ENE SM/MS CARD READER DRIVER
7639M: Al Cho <acho@novell.com>
7640S: Odd Fixes
7641F: drivers/staging/keucr/
7642
Joe Perchesb3e871c2011-07-05 09:42:10 -07007643STAGING - VIA VT665X DRIVERS
7644M: Forest Bond <forest@alittletooquiet.net>
7645S: Odd Fixes
7646F: drivers/staging/vt665?/
7647
Joe Perches81a9a522011-07-05 09:42:11 -07007648STAGING - WINBOND IS89C35 WLAN USB DRIVER
7649M: Pavel Machek <pavel@ucw.cz>
7650S: Odd Fixes
7651F: drivers/staging/winbond/
7652
Joe Perches709bcb02011-07-05 09:42:13 -07007653STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007654M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007655S: Odd Fixes
7656F: drivers/staging/xgifb/
7657
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007660S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007661F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007663SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007664M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007665W: http://sammy.net/sun3/
7666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007667F: arch/m68k/kernel/*sun3*
7668F: arch/m68k/sun3*/
7669F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007670F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007671
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007672SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007673M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007674L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007676Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007677T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007678S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007679F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007680F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007681F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007683SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007684M: Len Brown <len.brown@intel.com>
7685M: Pavel Machek <pavel@ucw.cz>
7686M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007687L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007689F: Documentation/power/
7690F: arch/x86/kernel/acpi/
7691F: drivers/base/power/
7692F: kernel/power/
7693F: include/linux/suspend.h
7694F: include/linux/freezer.h
7695F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696
7697SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007698M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699L: linux-video@atrey.karlin.mff.cuni.cz
7700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: Documentation/svga.txt
7702F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007704SWIOTLB SUBSYSTEM
7705M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7706L: linux-kernel@vger.kernel.org
7707S: Supported
7708F: lib/swiotlb.c
7709F: arch/*/kernel/pci-swiotlb.c
7710F: include/linux/swiotlb.h
7711
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307712SYNOPSYS ARC ARCHITECTURE
7713M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307714S: Supported
7715F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307716F: Documentation/devicetree/bindings/arc/
7717F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307718
Linus Torvalds1da177e2005-04-16 15:20:36 -07007719SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007720M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007722F: Documentation/filesystems/sysv-fs.txt
7723F: fs/sysv/
7724F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007726TARGET SUBSYSTEM
7727M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7728L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007729L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007730L: http://groups.google.com/group/linux-iscsi-target-dev
7731W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007732T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007733S: Supported
7734F: drivers/target/
7735F: include/target/
7736F: Documentation/target/
7737
Alan Cox4e688522008-04-30 00:52:11 -07007738TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007739M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007741F: Documentation/accounting/taskstats*
7742F: include/linux/taskstats*
7743F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007744
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007745TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007746M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007747L: netdev@vger.kernel.org
7748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007749F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007750F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007751F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007752
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007753TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007754M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7755M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007756W: http://tcp-lp-mod.sourceforge.net/
7757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007758F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007759
Antti Palosaari91952bc2012-10-01 12:28:46 -03007760TDA10071 MEDIA DRIVER
7761M: Antti Palosaari <crope@iki.fi>
7762L: linux-media@vger.kernel.org
7763W: http://linuxtv.org/
7764W: http://palosaari.fi/linux/
7765Q: http://patchwork.linuxtv.org/project/linux-media/list/
7766T: git git://linuxtv.org/anttip/media_tree.git
7767S: Maintained
7768F: drivers/media/dvb-frontends/tda10071*
7769
7770TDA18212 MEDIA DRIVER
7771M: Antti Palosaari <crope@iki.fi>
7772L: linux-media@vger.kernel.org
7773W: http://linuxtv.org/
7774W: http://palosaari.fi/linux/
7775Q: http://patchwork.linuxtv.org/project/linux-media/list/
7776T: git git://linuxtv.org/anttip/media_tree.git
7777S: Maintained
7778F: drivers/media/tuners/tda18212*
7779
7780TDA18218 MEDIA DRIVER
7781M: Antti Palosaari <crope@iki.fi>
7782L: linux-media@vger.kernel.org
7783W: http://linuxtv.org/
7784W: http://palosaari.fi/linux/
7785Q: http://patchwork.linuxtv.org/project/linux-media/list/
7786T: git git://linuxtv.org/anttip/media_tree.git
7787S: Maintained
7788F: drivers/media/tuners/tda18218*
7789
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007790TDA18271 MEDIA DRIVER
7791M: Michael Krufky <mkrufky@linuxtv.org>
7792L: linux-media@vger.kernel.org
7793W: http://linuxtv.org/
7794W: http://github.com/mkrufky
7795Q: http://patchwork.linuxtv.org/project/linux-media/list/
7796T: git git://linuxtv.org/mkrufky/tuners.git
7797S: Maintained
7798F: drivers/media/tuners/tda18271*
7799
Michael Krufkye48307a2012-10-02 00:56:33 -03007800TDA827x MEDIA DRIVER
7801M: Michael Krufky <mkrufky@linuxtv.org>
7802L: linux-media@vger.kernel.org
7803W: http://linuxtv.org/
7804W: http://github.com/mkrufky
7805Q: http://patchwork.linuxtv.org/project/linux-media/list/
7806T: git git://linuxtv.org/mkrufky/tuners.git
7807S: Maintained
7808F: drivers/media/tuners/tda8290.*
7809
Michael Krufky66cf9212012-10-02 00:56:28 -03007810TDA8290 MEDIA DRIVER
7811M: Michael Krufky <mkrufky@linuxtv.org>
7812L: linux-media@vger.kernel.org
7813W: http://linuxtv.org/
7814W: http://github.com/mkrufky
7815Q: http://patchwork.linuxtv.org/project/linux-media/list/
7816T: git git://linuxtv.org/mkrufky/tuners.git
7817S: Maintained
7818F: drivers/media/tuners/tda8290.*
7819
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007820TDA9840 MEDIA DRIVER
7821M: Hans Verkuil <hverkuil@xs4all.nl>
7822L: linux-media@vger.kernel.org
7823T: git git://linuxtv.org/media_tree.git
7824W: http://linuxtv.org
7825S: Maintained
7826F: drivers/media/i2c/tda9840*
7827
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007828TEA5761 TUNER DRIVER
7829M: Mauro Carvalho Chehab <mchehab@redhat.com>
7830L: linux-media@vger.kernel.org
7831W: http://linuxtv.org
7832T: git git://linuxtv.org/media_tree.git
7833S: Odd fixes
7834F: drivers/media/tuners/tea5761.*
7835
7836TEA5767 TUNER DRIVER
7837M: Mauro Carvalho Chehab <mchehab@redhat.com>
7838L: linux-media@vger.kernel.org
7839W: http://linuxtv.org
7840T: git git://linuxtv.org/media_tree.git
7841S: Maintained
7842F: drivers/media/tuners/tea5767.*
7843
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007844TEA6415C MEDIA DRIVER
7845M: Hans Verkuil <hverkuil@xs4all.nl>
7846L: linux-media@vger.kernel.org
7847T: git git://linuxtv.org/media_tree.git
7848W: http://linuxtv.org
7849S: Maintained
7850F: drivers/media/i2c/tea6415c*
7851
7852TEA6420 MEDIA DRIVER
7853M: Hans Verkuil <hverkuil@xs4all.nl>
7854L: linux-media@vger.kernel.org
7855T: git git://linuxtv.org/media_tree.git
7856W: http://linuxtv.org
7857S: Maintained
7858F: drivers/media/i2c/tea6420*
7859
Jiri Pirko3d249d42011-11-11 22:16:48 +00007860TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007861M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007862L: netdev@vger.kernel.org
7863S: Supported
7864F: drivers/net/team/
7865F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007866F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007867
Vivien Didelot7d029122013-01-04 16:18:14 -05007868TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7869M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7870S: Maintained
7871F: arch/x86/platform/ts5500/
7872
Sean Young40ad4a32012-11-19 10:32:53 -03007873TECHNOTREND USB IR RECEIVER
7874M: Sean Young <sean@mess.org>
7875L: linux-media@vger.kernel.org
7876S: Maintained
7877F: drivers/media/rc/ttusbir.c
7878
Erik Gilling84b94142010-06-09 15:35:53 -07007879TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007880M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007881L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007882Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7883T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007884S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007885K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007886
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007887TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007889L: netdev@vger.kernel.org
7890S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007891F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007892
Alan Cox4e688522008-04-30 00:52:11 -07007893Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007894M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007896F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007897
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007898TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007899M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007900M: Max Filippov <jcmvbkbc@gmail.com>
7901L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007903F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007904
Zhang Ruid3fb6952012-11-15 08:58:27 +08007905THERMAL
7906M: Zhang Rui <rui.zhang@intel.com>
7907L: linux-pm@vger.kernel.org
7908T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7909S: Supported
7910F: drivers/thermal/
7911F: include/linux/thermal.h
7912
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007913THINGM BLINK(1) USB RGB LED DRIVER
7914M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7915S: Maintained
7916F: drivers/hid/hid-thingm.c
7917
Alan Cox4e688522008-04-30 00:52:11 -07007918THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007920L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007921L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007922W: http://ibm-acpi.sourceforge.net
7923W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007924T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007926F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007927
Alex Dubov4020f2d2006-10-04 02:15:37 -07007928TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007929M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/misc/tifm*
7932F: drivers/mmc/host/tifm_sd.c
7933F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007934
M R Swami Reddy152ad442012-04-02 20:02:31 +05307935TI LM49xxx FAMILY ASoC CODEC DRIVERS
7936M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307937M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307938L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7939S: Maintained
7940F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307941F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307942
Kim, Milo0edd8072012-12-17 16:01:17 -08007943TI LP855x BACKLIGHT DRIVER
7944M: Milo Kim <milo.kim@ti.com>
7945S: Maintained
7946F: Documentation/backlight/lp855x-driver.txt
7947F: drivers/video/backlight/lp855x_bl.c
7948F: include/linux/platform_data/lp855x.h
7949
Kim, Milofaf13f62012-12-10 05:27:03 +00007950TI LP8727 CHARGER DRIVER
7951M: Milo Kim <milo.kim@ti.com>
7952S: Maintained
7953F: drivers/power/lp8727_charger.c
7954F: include/linux/platform_data/lp8727.h
7955
Kim, Milo22f12292012-12-10 05:27:55 +00007956TI LP8788 MFD DRIVER
7957M: Milo Kim <milo.kim@ti.com>
7958S: Maintained
7959F: drivers/iio/adc/lp8788_adc.c
7960F: drivers/leds/leds-lp8788.c
7961F: drivers/mfd/lp8788*.c
7962F: drivers/power/lp8788-charger.c
7963F: drivers/regulator/lp8788-*.c
7964F: include/linux/mfd/lp8788*.h
7965
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007966TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007967M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007968L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7969S: Maintained
7970F: sound/soc/codecs/twl4030*
7971
Luciano Coelho90921012011-11-20 21:40:41 +02007972TI WILINK WIRELESS DRIVERS
7973M: Luciano Coelho <coelho@ti.com>
7974L: linux-wireless@vger.kernel.org
7975W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7976W: http://wireless.kernel.org/en/users/Drivers/wl1251
7977T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7978S: Maintained
7979F: drivers/net/wireless/ti/
7980F: include/linux/wl12xx.h
7981
Per Lidene86eaa32006-01-12 16:45:18 +01007982TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007983M: Jon Maloy <jon.maloy@ericsson.com>
7984M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007985L: netdev@vger.kernel.org (core kernel code)
7986L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007987W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007988S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007989F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007990F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007991
Chris Metcalf867e3592010-05-28 23:09:12 -04007992TILE ARCHITECTURE
7993M: Chris Metcalf <cmetcalf@tilera.com>
7994W: http://www.tilera.com/scm/
7995S: Supported
7996F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007997F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007998F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007999F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008003L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004W: http://sourceforge.net/projects/tlan/
8005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008006F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008007F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008009TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008010M: Kentaro Takeda <takedakn@nttdata.co.jp>
8011M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008012L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8013L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008014L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8015L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8016W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008017T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008019F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008020
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008021TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008022M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008023L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008024S: Maintained
8025F: drivers/platform/x86/topstar-laptop.c
8026
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008028L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008029S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008030F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031
8032TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008033M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034L: tlinux-users@tce.toshiba-dme.co.jp
8035W: http://www.buzzard.org.uk/toshiba/
8036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008037F: drivers/char/toshiba.c
8038F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008039F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008040
Pierre Ossmand719f902009-03-24 21:06:09 +01008041TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008042M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008043M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008044L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008045S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008046F: drivers/mmc/host/tmio_mmc*
8047F: drivers/mmc/host/sh_mobile_sdhi.c
8048F: include/linux/mmc/tmio.h
8049F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008050
Hugh Dickins98f32602009-05-21 20:33:58 +01008051TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008052M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008053L: linux-mm@kvack.org
8054S: Maintained
8055F: include/linux/shmem_fs.h
8056F: mm/shmem.c
8057
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008058TM6000 VIDEO4LINUX DRIVER
8059M: Mauro Carvalho Chehab <mchehab@redhat.com>
8060L: linux-media@vger.kernel.org
8061W: http://linuxtv.org
8062T: git git://linuxtv.org/media_tree.git
8063S: Odd fixes
8064F: drivers/media/usb/tm6000/
8065
Alan Cox4e688522008-04-30 00:52:11 -07008066TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008067M: Kent Yoder <key@linux.vnet.ibm.com>
8068M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008069W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008070M: Marcel Selhorst <tpmdd@selhorst.net>
8071M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008072W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008073L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008075F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008076
Joe Perchesd6f005a2009-10-26 16:49:40 -07008077TRACING
8078M: Steven Rostedt <rostedt@goodmis.org>
8079M: Frederic Weisbecker <fweisbec@gmail.com>
8080M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008081T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008082S: Maintained
8083F: Documentation/trace/ftrace.txt
8084F: arch/*/*/*/ftrace.h
8085F: arch/*/kernel/ftrace.c
8086F: include/*/ftrace.h
8087F: include/linux/trace*.h
8088F: include/trace/
8089F: kernel/trace/
8090
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008092M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008093T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008095K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008096
Alan Cox4e688522008-04-30 00:52:11 -07008097TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008098M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008099M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008100S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008101T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008102F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008103F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008104F: include/linux/serial_core.h
8105F: include/linux/serial.h
8106F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008107F: include/uapi/linux/serial_core.h
8108F: include/uapi/linux/serial.h
8109F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008110
Antti Palosaari91952bc2012-10-01 12:28:46 -03008111TUA9001 MEDIA DRIVER
8112M: Antti Palosaari <crope@iki.fi>
8113L: linux-media@vger.kernel.org
8114W: http://linuxtv.org/
8115W: http://palosaari.fi/linux/
8116Q: http://patchwork.linuxtv.org/project/linux-media/list/
8117T: git git://linuxtv.org/anttip/media_tree.git
8118S: Maintained
8119F: drivers/media/tuners/tua9001*
8120
Grant Grundler740db6d2008-02-17 11:53:49 -07008121TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008122M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008123L: netdev@vger.kernel.org
8124S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008125F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126
8127TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008128M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129W: http://vtun.sourceforge.net/tun
8130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008131F: Documentation/networking/tuntap.txt
8132F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008134TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008135M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008137F: drivers/tc/
8138F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008139
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008141M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142L: linux-scsi@vger.kernel.org
8143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008144F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008146UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008147M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008148M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008149L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008150T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008151W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008153F: Documentation/filesystems/ubifs.txt
8154F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008155
Alan Coxcc2020e2008-05-19 14:21:51 +01008156UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008157M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008158W: http://www.uclinux.org/
8159L: uclinux-dev@uclinux.org (subscribers-only)
8160S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008161F: arch/m68k/*/*_no.*
8162F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008163
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008164UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008165M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008166W: http://uclinux-h8.sourceforge.jp/
8167S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008168F: arch/h8300/
8169F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008170F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008171
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008173M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008175F: Documentation/filesystems/udf.txt
8176F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177
Alan Coxcc2020e2008-05-19 14:21:51 +01008178UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008179M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008181F: Documentation/filesystems/ufs.txt
8182F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008183
David Herrmann0a09d3a2012-06-10 15:16:28 +02008184UHID USERSPACE HID IO DRIVER:
8185M: David Herrmann <dh.herrmann@googlemail.com>
8186L: linux-input@vger.kernel.org
8187S: Maintained
8188F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008189F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008190
David Vrabel18332a82008-09-17 16:34:44 +01008191ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008192L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008193S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008194F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008195F: include/linux/uwb.h
8196F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008197
GuanXuetaob31d8272011-01-16 00:35:49 +08008198UNICORE32 ARCHITECTURE:
8199M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8200W: http://mprc.pku.edu.cn/~guanxuetao/linux
8201S: Maintained
8202T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8203F: arch/unicore32/
8204
Tony Finchd8379ab2009-11-27 15:50:30 +00008205UNIFDEF
8206M: Tony Finch <dot@dotat.at>
8207W: http://dotat.at/prog/unifdef
8208S: Maintained
8209F: scripts/unifdef.c
8210
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008212M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213W: http://www.kernel.dk
8214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008215F: Documentation/cdrom/
8216F: drivers/cdrom/cdrom.c
8217F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008218F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308220UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8221M: Vinayak Holikatti <vinholikatti@gmail.com>
8222M: Santosh Y <santoshsy@gmail.com>
8223L: linux-scsi@vger.kernel.org
8224S: Supported
8225F: Documentation/scsi/ufs.txt
8226F: drivers/scsi/ufs/
8227
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008228UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008229M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008230W: http://www.linux-mtd.infradead.org/
8231L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008232T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008233S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008234F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008235F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008236F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008237
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008238UNSORTED BLOCK IMAGES (UBI) Fastmap
8239M: Richard Weinberger <richard@nod.at>
8240L: linux-mtd@lists.infradead.org
8241S: Maintained
8242F: drivers/mtd/ubi/fastmap.c
8243
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008245M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008246L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008248F: Documentation/usb/acm.txt
8249F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008251USB AR5523 WIRELESS DRIVER
8252M: Pontus Fuchs <pontus.fuchs@gmail.com>
8253L: linux-wireless@vger.kernel.org
8254S: Maintained
8255F: drivers/net/wireless/ath/ar5523/
8256
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008257USB ATTACHED SCSI
8258M: Matthew Wilcox <willy@linux.intel.com>
8259M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008260M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008261L: linux-usb@vger.kernel.org
8262L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008263S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008264F: drivers/usb/storage/uas.c
8265
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008267M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008268L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008270F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008271F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008273USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008275L: linux-usb@vger.kernel.org
8276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008277F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008278
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008279USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008280M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008281L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008282W: http://www.linux-usb.org/usbnet
8283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008284F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008285
Alan Coxcc2020e2008-05-19 14:21:51 +01008286USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008287M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008288L: rio500-users@lists.sourceforge.net
8289W: http://rio500.sourceforge.net
8290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008291F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008292
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008294M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008295L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008297F: Documentation/usb/ehci.txt
8298F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008299
David Brownell69ae9e32006-11-14 02:03:31 -08008300USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008301M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008302L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008303W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008304T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008306F: drivers/usb/gadget/
8307F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008308
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008309USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008311L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008312T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008314F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008315F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316
matt mooney857aab32011-06-17 15:50:46 -07008317USB/IP DRIVERS
8318M: Matt Mooney <mfm@muteddisk.com>
8319L: linux-usb@vger.kernel.org
8320S: Maintained
8321F: drivers/staging/usbip/
8322
Olav Kongas959eea22005-11-03 17:38:14 +02008323USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008324M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008325L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008327F: drivers/usb/host/isp116x*
8328F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008329
Linus Torvalds1da177e2005-04-16 15:20:36 -07008330USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008331M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008332L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008334F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335
8336USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008337M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008338L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008339L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340S: Maintained
8341W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008342F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343
Clemens Ladischaf399172011-01-10 16:32:54 +01008344USB MIDI DRIVER
8345M: Clemens Ladisch <clemens@ladisch.de>
8346L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8347T: git git://git.alsa-project.org/alsa-kernel.git
8348S: Maintained
8349F: sound/usb/midi.*
8350
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008352M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008353L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008355F: Documentation/usb/ohci.txt
8356F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357
Matthias Urlichsba460e42005-07-14 00:33:47 -07008358USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008359M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008360L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008362F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008363
Linus Torvalds1da177e2005-04-16 15:20:36 -07008364USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008365M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008366L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008367L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368W: http://pegasus2.sourceforge.net/
8369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008370F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371
Felipe Balbid3ad5582012-05-21 16:24:49 +03008372USB PHY LAYER
8373M: Felipe Balbi <balbi@ti.com>
8374L: linux-usb@vger.kernel.org
8375T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8376S: Maintained
8377F: drivers/usb/phy/
8378F: drivers/usb/otg/
8379
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008380USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008381M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008382L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008383S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008384F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008385
8386USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008387M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008388L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008389L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390W: http://pegasus2.sourceforge.net/
8391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393
Alan Cox4e688522008-04-30 00:52:11 -07008394USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008396L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008398F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008399
8400USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008401M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008402L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008403S: Maintained
8404W: http://geocities.com/i0xox0i
8405W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008406F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008407
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008409M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008412F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413
8414USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008415M: Peter Berger <pberger@brimson.com>
8416M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008417L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008419F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420
8421USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008422M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008423L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008425F: Documentation/usb/usb-serial.txt
8426F: drivers/usb/serial/generic.c
8427F: drivers/usb/serial/usb-serial.c
8428F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008431M: Gary Brubaker <xavyer@ix.netcom.com>
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/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008435
8436USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008437M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008438L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008440F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441
8442USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008443M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008444L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445W: http://www.connecttech.com
8446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008447F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008449USB SMSC75XX ETHERNET DRIVER
8450M: Steve Glendinning <steve.glendinning@shawell.net>
8451L: netdev@vger.kernel.org
8452S: Maintained
8453F: drivers/net/usb/smsc75xx.*
8454
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008455USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008456M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008457L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008459F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008460
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008461USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008462M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008463L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008464L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008465T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466W: http://www.linux-projects.org
8467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008468F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008469F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470
8471USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008472M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008473L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008475T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008477F: Documentation/usb/
8478F: drivers/net/usb/
8479F: drivers/usb/
8480F: include/linux/usb.h
8481F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482
8483USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008484M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008485L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008487F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488
David Brownell69ae9e32006-11-14 02:03:31 -08008489USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008490M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008491L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008492W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008494F: drivers/net/usb/usbnet.c
8495F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008497USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008498M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008499L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008500L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008501T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008502W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008503S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008504F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008505F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008507USB VISION DRIVER
8508M: Hans Verkuil <hverkuil@xs4all.nl>
8509L: linux-media@vger.kernel.org
8510T: git git://linuxtv.org/media_tree.git
8511W: http://linuxtv.org
8512S: Odd Fixes
8513F: drivers/media/usb/usbvision/
8514
Laurent Pinchart8282da42012-10-04 02:32:42 +02008515USB WEBCAM GADGET
8516M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8517L: linux-usb@vger.kernel.org
8518S: Maintained
8519F: drivers/usb/gadget/*uvc*.c
8520F: drivers/usb/gadget/webcam.c
8521
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008522USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008523M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008524L: linux-wireless@vger.kernel.org
8525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008526F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008527
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008528USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008529M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008530L: linux-usb@vger.kernel.org
8531S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008532F: drivers/usb/host/xhci*
8533F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008534
Linus Torvalds1da177e2005-04-16 15:20:36 -07008535USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008536L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008538S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008539F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008541USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008542M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008543L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008544L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008545T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008546W: http://royale.zerezo.com/zr364xx/
8547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008548F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008549F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008550
Randy Dunlape7839f22008-10-12 16:11:45 -07008551USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008552M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008553M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008554L: user-mode-linux-devel@lists.sourceforge.net
8555L: user-mode-linux-user@lists.sourceforge.net
8556W: http://user-mode-linux.sourceforge.net
8557S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008558F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008559F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008560F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008561F: fs/hostfs/
8562F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008563
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008564USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008565M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008566M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008568F: Documentation/DocBook/uio-howto.tmpl
8569F: drivers/uio/
8570F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008571
Karel Zak256cccb2012-06-01 10:13:09 +02008572UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008573M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008574L: util-linux@vger.kernel.org
8575W: http://en.wikipedia.org/wiki/Util-linux
8576T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008577S: Maintained
8578
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008579UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008580M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008581L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008582W: http://dev.gentoo.org/~spock/projects/uvesafb/
8583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008584F: Documentation/fb/uvesafb.txt
8585F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008586
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008587VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008588M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008590F: Documentation/filesystems/vfat.txt
8591F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008592
Alex Williamsoncba33452012-07-31 08:16:22 -06008593VFIO DRIVER
8594M: Alex Williamson <alex.williamson@redhat.com>
8595L: kvm@vger.kernel.org
8596S: Maintained
8597F: Documentation/vfio.txt
8598F: drivers/vfio/
8599F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008600F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008601
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008602VIDEOBUF2 FRAMEWORK
8603M: Pawel Osciak <pawel@osciak.com>
8604M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008605M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008606L: linux-media@vger.kernel.org
8607S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008608F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008609F: include/media/videobuf2-*
8610
Amit Shah9a824462010-03-23 18:23:09 +05308611VIRTIO CONSOLE DRIVER
8612M: Amit Shah <amit.shah@redhat.com>
8613L: virtualization@lists.linux-foundation.org
8614S: Maintained
8615F: drivers/char/virtio_console.c
8616F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008617F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308618
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308619VIRTIO CORE, NET AND BLOCK DRIVERS
8620M: Rusty Russell <rusty@rustcorp.com.au>
8621M: "Michael S. Tsirkin" <mst@redhat.com>
8622L: virtualization@lists.linux-foundation.org
8623S: Maintained
8624F: drivers/virtio/
8625F: drivers/net/virtio_net.c
8626F: drivers/block/virtio_blk.c
8627F: include/linux/virtio_*.h
8628
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008629VIRTIO HOST (VHOST)
8630M: "Michael S. Tsirkin" <mst@redhat.com>
8631L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008632L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008633L: netdev@vger.kernel.org
8634S: Maintained
8635F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008636F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008639M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008640S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008641F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642
Harald Weltef0bf7f62009-06-17 20:22:39 +02008643VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008644M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008645M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008646S: Maintained
8647F: drivers/mmc/host/via-sdmmc.c
8648
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008649VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008650M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008651L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008652S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008653F: include/linux/via-core.h
8654F: include/linux/via-gpio.h
8655F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008656F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008657
Francois Romieu01f20732007-01-26 00:57:17 -08008658VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008659M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008660L: netdev@vger.kernel.org
8661S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008662F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008664VIVI VIRTUAL VIDEO DRIVER
8665M: Hans Verkuil <hverkuil@xs4all.nl>
8666L: linux-media@vger.kernel.org
8667T: git git://linuxtv.org/media_tree.git
8668W: http://linuxtv.org
8669S: Maintained
8670F: drivers/media/platform/vivi*
8671
Patrick McHardybe7f8272007-10-23 20:26:36 -07008672VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008673M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008674L: netdev@vger.kernel.org
8675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008676F: drivers/net/macvlan.c
8677F: include/linux/if_*vlan.h
8678F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008679
Florian Fainelli55e331c2009-06-16 15:33:53 -07008680VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008681M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008682L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008683S: Maintained
8684F: drivers/vlynq/vlynq.c
8685F: include/linux/vlynq.h
8686
Martyn Welch390beae2012-05-03 17:52:36 +01008687VME SUBSYSTEM
8688M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008689M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008690M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8691L: devel@driverdev.osuosl.org
8692S: Maintained
8693T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8694F: Documentation/vme_api.txt
8695F: drivers/staging/vme/
8696F: drivers/vme/
8697F: include/linux/vme*
8698
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008699VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008700M: Shreyas Bhatewara <sbhatewara@vmware.com>
8701M: "VMware, Inc." <pv-drivers@vmware.com>
8702L: netdev@vger.kernel.org
8703S: Maintained
8704F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008705
Alok Kataria851b1642009-10-13 14:51:05 -07008706VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008707M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008708M: VMware PV-Drivers <pv-drivers@vmware.com>
8709L: linux-scsi@vger.kernel.org
8710S: Maintained
8711F: drivers/scsi/vmw_pvscsi.c
8712F: drivers/scsi/vmw_pvscsi.h
8713
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008714VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008715M: Liam Girdwood <lrg@ti.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008716M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008717W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008718W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008719T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008721F: drivers/regulator/
8722F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008723
Juerg Haefligerab413192006-09-24 20:54:04 +02008724VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008725M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008726L: lm-sensors@lm-sensors.org
8727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008728F: Documentation/hwmon/vt1211
8729F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008730
Roger Lucas1de9e372005-11-26 20:20:05 +01008731VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008732M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008733L: lm-sensors@lm-sensors.org
8734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008735F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008736
Tony Olech88095e72011-05-14 16:48:13 -04008737VUB300 USB to SDIO/SD/MMC bridge chip
8738M: Tony Olech <tony.olech@elandigitalsystems.com>
8739L: linux-mmc@vger.kernel.org
8740L: linux-usb@vger.kernel.org
8741S: Supported
8742F: drivers/mmc/host/vub300.c
8743
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008745M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008747F: Documentation/w1/
8748F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749
Charles Spirakis13927072006-07-05 18:05:15 +02008750W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008751M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008752L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008754F: Documentation/hwmon/w83791d
8755F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008756
Rudolf Marek61db0112006-12-12 18:18:30 +01008757W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008758M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008759L: lm-sensors@lm-sensors.org
8760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008761F: Documentation/hwmon/w83793
8762F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008763
Jean Delvaree3760b42010-10-28 20:31:49 +02008764W83795 HARDWARE MONITORING DRIVER
8765M: Jean Delvare <khali@linux-fr.org>
8766L: lm-sensors@lm-sensors.org
8767S: Maintained
8768F: drivers/hwmon/w83795.c
8769
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008771M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008773F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008775WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008776M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008777L: linux-watchdog@vger.kernel.org
8778W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008779T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008781F: Documentation/watchdog/
8782F: drivers/watchdog/
8783F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008784F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008785
Linus Torvalds1da177e2005-04-16 15:20:36 -07008786WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008787M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008788L: linux-scsi@vger.kernel.org
8789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008790F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791
David Herrmannb22e00f2011-09-06 13:50:40 +02008792WIIMOTE HID DRIVER
8793M: David Herrmann <dh.herrmann@googlemail.com>
8794L: linux-input@vger.kernel.org
8795S: Maintained
8796F: drivers/hid/hid-wiimote*
8797
David Härdemane258b802009-09-21 17:04:53 -07008798WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008799M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008800S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008801F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008802
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008803WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008804M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008805M: linux-wimax@intel.com
8806L: wimax@linuxwimax.org
8807S: Supported
8808W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008809F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008810F: include/linux/wimax/debug.h
8811F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008812F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008813F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008814
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008815WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008816M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008818F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008819
Linus Torvalds1da177e2005-04-16 15:20:36 -07008820WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008821M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008822L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008823W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008825F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008826
Mark Brownfebf1df2008-04-02 00:51:09 -04008827WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008828M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8829M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008830L: linux-input@vger.kernel.org
8831T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8832W: http://opensource.wolfsonmicro.com/node/7
8833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008834F: drivers/input/touchscreen/*wm97*
8835F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008836
Mark Brown055bcbc2010-08-13 14:18:12 +01008837WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008838M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008839L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008840T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008841T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008842W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008843S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008844F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008845F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008846F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008847F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008848F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008849F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008850F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008851F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008852F: drivers/input/misc/wm831x-on.c
8853F: drivers/input/touchscreen/wm831x-ts.c
8854F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008855F: drivers/mfd/arizona*
8856F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008857F: drivers/power/wm83*.c
8858F: drivers/rtc/rtc-wm83*.c
8859F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008860F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008861F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008862F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008863F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008864F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008865F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008866F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008867F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008868F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008869F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008870
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008871WORKQUEUE
8872M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008873T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8874S: Maintained
8875F: include/linux/workqueue.h
8876F: kernel/workqueue.c
8877F: Documentation/workqueue.txt
8878
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008880M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008882S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008883F: Documentation/networking/x25*
8884F: include/net/x25*
8885F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008887X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008888M: Thomas Gleixner <tglx@linutronix.de>
8889M: Ingo Molnar <mingo@redhat.com>
8890M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008891M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008892T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008894F: Documentation/x86/
8895F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008896
Matthew Garrettd0944852010-02-11 10:40:13 -05008897X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008898M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008899L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008900T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008901S: Maintained
8902F: drivers/platform/x86
8903
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008904X86 MCE INFRASTRUCTURE
8905M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008906M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008907L: linux-edac@vger.kernel.org
8908S: Maintained
8909F: arch/x86/kernel/cpu/mcheck/*
8910
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008911XC2028/3028 TUNER DRIVER
8912M: Mauro Carvalho Chehab <mchehab@redhat.com>
8913L: linux-media@vger.kernel.org
8914W: http://linuxtv.org
8915T: git git://linuxtv.org/media_tree.git
8916S: Maintained
8917F: drivers/media/tuners/tuner-xc2028.*
8918
Ian Campbellc4468082011-04-27 15:26:46 -07008919XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008920M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008921M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008922L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8923L: virtualization@lists.linux-foundation.org
8924S: Supported
8925F: arch/x86/xen/
8926F: drivers/*/xen-*front.c
8927F: drivers/xen/
8928F: arch/x86/include/asm/xen/
8929F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008930F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008931
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008932XEN HYPERVISOR ARM
8933M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8934L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8935S: Supported
8936F: arch/arm/xen/
8937F: arch/arm/include/asm/xen/
8938
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008939XEN NETWORK BACKEND DRIVER
8940M: Ian Campbell <ian.campbell@citrix.com>
8941L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8942L: netdev@vger.kernel.org
8943S: Supported
8944F: drivers/net/xen-netback/*
8945
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008946XEN PCI SUBSYSTEM
8947M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008948L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008949S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008950F: arch/x86/pci/*xen*
8951F: drivers/pci/*xen*
8952
8953XEN SWIOTLB SUBSYSTEM
8954M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008955L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008956S: Supported
8957F: arch/x86/xen/*swiotlb*
8958F: drivers/xen/*swiotlb*
8959
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960XFS FILESYSTEM
8961P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008962M: Ben Myers <bpm@sgi.com>
8963M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008964M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008965L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008967T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008969F: Documentation/filesystems/xfs.txt
8970F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008972XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008973M: Anirudha Sarangi <anirudh@xilinx.com>
8974M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008975S: Maintained
8976F: drivers/net/ethernet/xilinx/xilinx_axienet*
8977
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008978XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008979M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008980W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008982F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008983
Peter Korsgaard238b8722006-12-06 20:35:17 -08008984XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008985M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008986L: linux-serial@vger.kernel.org
8987S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008988F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008989
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008991M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008992L: linux-hams@vger.kernel.org
8993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008994F: drivers/net/hamradio/yam*
8995F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996
Henkaf64a5e2005-10-12 15:02:56 +02008997YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008998M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008999L: usbb2k-api-dev@nongnu.org
9000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009001F: Documentation/input/yealink.txt
9002F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009003
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009005M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009006W: http://yaina.de/jreuter/
9007W: http://www.qsl.net/dl1bke/
9008L: linux-hams@vger.kernel.org
9009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009010F: Documentation/networking/z8530drv.txt
9011F: drivers/net/hamradio/*scc.c
9012F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009014ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009015M: Daniel Drake <dsd@gentoo.org>
9016M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009017W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009018L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009019L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009021F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009022
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009024L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009025L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009027T: Mercurial http://linuxtv.org/hg/v4l-dvb
9028S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009029F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009031ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009032M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009033S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009034F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009035
Linus Torvalds1da177e2005-04-16 15:20:36 -07009036THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009037M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009038L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009039Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009040T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009041S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009042F: *
9043F: */