blob: 2f20dc44bbb6d8fbf790df6e080829e3c07fae71 [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 Rapoportd48134e72008-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 Guoa9866a02011-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 Weif8407f22011-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 Weif8407f22011-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
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002209CPUIDLE DRIVERS
2210M: Rafael J. Wysocki <rjw@sisk.pl>
2211M: Daniel Lezcano <daniel.lezcano@linaro.org>
2212L: linux-pm@vger.kernel.org
2213S: Maintained
2214T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2215F: drivers/cpuidle/*
2216F: include/linux/cpuidle.h
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002219M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002221F: arch/x86/kernel/cpuid.c
2222F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002224CPU POWER MONITORING SUBSYSTEM
2225M: Dominik Brodowski <linux@dominikbrodowski.net>
2226M: Thomas Renninger <trenn@suse.de>
2227S: Maintained
2228F: tools/power/cpupower
2229
Paul Jacksoned90fb42005-09-27 21:45:37 -07002230CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002231M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002232W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002233W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002235F: Documentation/cgroups/cpusets.txt
2236F: include/linux/cpuset.h
2237F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002240W: http://sourceforge.net/projects/cramfs/
2241S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002242F: Documentation/filesystems/cramfs.txt
2243F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Mikael Starvik <starvik@axis.com>
2247M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002248L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249W: http://developer.axis.com
2250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002252F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002255M: Herbert Xu <herbert@gondor.apana.org.au>
2256M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002258T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002260F: Documentation/crypto/
2261F: arch/*/crypto/
2262F: crypto/
2263F: drivers/crypto/
2264F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Neil Horman5b07bd52009-02-05 16:03:04 +11002266CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002267M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002268L: linux-crypto@vger.kernel.org
2269S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002270F: crypto/ansi_cprng.c
2271F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002272
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002273CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002277
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002278CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002279M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002280L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002281L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002282T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002283W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002284W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002287F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002288F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002289
Hans Verkuil3f101d92012-11-23 07:00:02 -03002290CX2341X MPEG ENCODER HELPER MODULE
2291M: Hans Verkuil <hverkuil@xs4all.nl>
2292L: linux-media@vger.kernel.org
2293T: git git://linuxtv.org/media_tree.git
2294W: http://linuxtv.org
2295S: Maintained
2296F: drivers/media/i2c/cx2341x*
2297F: include/media/cx2341x*
2298
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002299CX88 VIDEO4LINUX DRIVER
2300M: Mauro Carvalho Chehab <mchehab@redhat.com>
2301L: linux-media@vger.kernel.org
2302W: http://linuxtv.org
2303T: git git://linuxtv.org/media_tree.git
2304S: Odd fixes
2305F: Documentation/video4linux/cx88/
2306F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002307
Antti Palosaari91952bc2012-10-01 12:28:46 -03002308CXD2820R MEDIA DRIVER
2309M: Antti Palosaari <crope@iki.fi>
2310L: linux-media@vger.kernel.org
2311W: http://linuxtv.org/
2312W: http://palosaari.fi/linux/
2313Q: http://patchwork.linuxtv.org/project/linux-media/list/
2314T: git git://linuxtv.org/anttip/media_tree.git
2315S: Maintained
2316F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002317
Steve Wisee5ec3782008-05-20 14:06:33 -07002318CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002319M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002320L: netdev@vger.kernel.org
2321W: http://www.chelsio.com
2322S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002323F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002324
2325CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002326M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002327L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002328W: http://www.openfabrics.org
2329S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002330F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002331
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002332CXGB4 ETHERNET DRIVER (CXGB4)
2333M: Dimitris Michailidis <dm@chelsio.com>
2334L: netdev@vger.kernel.org
2335W: http://www.chelsio.com
2336S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002337F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002338
2339CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2340M: Steve Wise <swise@chelsio.com>
2341L: linux-rdma@vger.kernel.org
2342W: http://www.openfabrics.org
2343S: Supported
2344F: drivers/infiniband/hw/cxgb4/
2345
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002346CXGB4VF ETHERNET DRIVER (CXGB4VF)
2347M: Casey Leedom <leedom@chelsio.com>
2348L: netdev@vger.kernel.org
2349W: http://www.chelsio.com
2350S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002351F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002352
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002353STMMAC ETHERNET DRIVER
2354M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2355L: netdev@vger.kernel.org
2356W: http://www.stlinux.com
2357S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002358F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002362L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363W: http://www.arm.linux.org.uk/
2364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002369S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002370F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002371F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002372F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002376S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002377F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002379CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002380M: Javier Martinez Canillas <javier@dowhile0.org>
2381L: linux-input@vger.kernel.org
2382S: Maintained
2383F: drivers/input/touchscreen/cyttsp*
2384F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002387M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388W: http://yaina.de/jreuter/
2389W: http://www.qsl.net/dl1bke/
2390L: linux-hams@vger.kernel.org
2391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: net/ax25/af_ax25.c
2393F: net/ax25/ax25_dev.c
2394F: net/ax25/ax25_ds_*
2395F: net/ax25/ax25_in.c
2396F: net/ax25/ax25_out.c
2397F: net/ax25/ax25_timer.c
2398F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002400DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002402S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002403F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002404F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002405
2406DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002407M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002408W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002409M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002411F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002414M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002415M: Ali Akcaagac <aliakc@web.de>
2416M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002418L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419L: http://lists.twibble.org/mailman/listinfo/dc395x/
2420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002421F: Documentation/scsi/dc395x.txt
2422F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002424DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002425M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002426L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002427W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002430F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002431F: include/linux/tfrc.h
2432F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435W: http://linux-decnet.sourceforge.net
2436L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002437S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002438F: Documentation/networking/decnet.txt
2439F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002444F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002446DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002447M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002448L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002450F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454W: http://www.debian.org/~dz/i8k/
2455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002456F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002457F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Doug Warzecha90563ec2005-09-06 15:17:15 -07002459DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002460M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002462F: Documentation/dcdbas.txt
2463F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002464
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002465DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002466M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002467S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002468F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002469
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002470DESIGNWARE USB3 DRD IP DRIVER
2471M: Felipe Balbi <balbi@ti.com>
2472L: linux-usb@vger.kernel.org
2473L: linux-omap@vger.kernel.org
2474T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2475S: Maintained
2476F: drivers/usb/dwc3/
2477
Kyungmin Park89d07762012-01-10 15:09:09 -08002478DEVICE FREQUENCY (DEVFREQ)
2479M: MyungJoo Ham <myungjoo.ham@samsung.com>
2480M: Kyungmin Park <kyungmin.park@samsung.com>
2481L: linux-kernel@vger.kernel.org
2482S: Maintained
2483F: drivers/devfreq/
2484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488S: Maintained
2489
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002490DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002491M: Alasdair Kergon <agk@redhat.com>
2492M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002493L: dm-devel@redhat.com
2494W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002495Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002496T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002498F: Documentation/device-mapper/
2499F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002500F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002501F: include/linux/device-mapper.h
2502F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002503
Guenter Roeck335d7c52011-01-26 11:45:49 -08002504DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002505M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002506L: linux-i2c@vger.kernel.org
2507S: Maintained
2508F: drivers/i2c/busses/i2c-diolan-u2c.c
2509
Randy Dunlape7839f22008-10-12 16:11:45 -07002510DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002511M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002513F: Documentation/filesystems/dnotify.txt
2514F: fs/notify/dnotify/
2515F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002518M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2520W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2521W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2522S: Maintained
2523
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002524DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002527F: Documentation/filesystems/quota.txt
2528F: fs/quota/
2529F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002530F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Bernie Thompson702686a2012-03-01 13:52:13 -08002532DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2533M: Bernie Thompson <bernie@plugable.com>
2534L: linux-fbdev@vger.kernel.org
2535S: Maintained
2536W: http://plugable.com/category/projects/udlfb/
2537F: drivers/video/udlfb.c
2538F: include/video/udlfb.h
2539F: Documentation/fb/udlfb.txt
2540
Randy Dunlape7839f22008-10-12 16:11:45 -07002541DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002542M: Christine Caulfield <ccaulfie@redhat.com>
2543M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002544L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002545W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002546T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002548F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002549
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302550DMA BUFFER SHARING FRAMEWORK
2551M: Sumit Semwal <sumit.semwal@linaro.org>
2552S: Maintained
2553L: linux-media@vger.kernel.org
2554L: dri-devel@lists.freedesktop.org
2555L: linaro-mm-sig@lists.linaro.org
2556F: drivers/base/dma-buf*
2557F: include/linux/dma-buf*
2558F: Documentation/dma-buf-sharing.txt
2559T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2560
Dan Williamsb3e5f262007-08-07 10:26:35 -07002561DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002562M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002563M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002565F: drivers/dma/
2566F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302567T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2568T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002569
Juerg Haefligerb8250372007-06-09 10:11:16 -04002570DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002571M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002572L: lm-sensors@lm-sensors.org
2573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: Documentation/hwmon/dme1737
2575F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002576
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002577DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002579L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002581F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002582
Joe Perches7d2c86b2009-04-07 20:59:01 -07002583DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002584M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002585L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002586T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002588F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002591M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592L: blinux-list@redhat.com
2593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002594F: drivers/char/dtlk.c
2595F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002597DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002598M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002599L: linux-scsi@vger.kernel.org
2600W: http://www.adaptec.com/
2601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002602F: drivers/scsi/dpt*
2603F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002604
Philipp Reisnerb411b362009-09-25 16:07:19 -07002605DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002606P: Philipp Reisner
2607P: Lars Ellenberg
2608M: drbd-dev@lists.linbit.com
2609L: drbd-user@lists.linbit.com
2610W: http://www.drbd.org
2611T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2612T: git git://git.drbd.org/drbd-8.3.git
2613S: Supported
2614F: drivers/block/drbd/
2615F: lib/lru_cache.c
2616F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002617
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002618DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002619M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002620T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002622F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002623F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002624F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002625F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002626F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002627F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002628F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002631M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002632L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002633T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002635F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002636F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002637F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Chris Wilson8daf7472010-09-28 14:07:26 +01002639INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002640M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002641L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002642L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002643T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002644S: Supported
2645F: drivers/gpu/drm/i915
2646F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002647F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002648
Kyungmin Park398a6d42011-11-02 11:33:16 +09002649DRM DRIVERS FOR EXYNOS
2650M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002651M: Joonyoung Shim <jy0922.shim@samsung.com>
2652M: Seung-Woo Kim <sw0312.kim@samsung.com>
2653M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002654L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002655T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002656S: Supported
2657F: drivers/gpu/drm/exynos
2658F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002659F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002660
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002661DRM DRIVERS FOR NVIDIA TEGRA
2662M: Thierry Reding <thierry.reding@avionic-design.de>
2663L: dri-devel@lists.freedesktop.org
2664L: linux-tegra@vger.kernel.org
2665T: git git://gitorious.org/thierryreding/linux.git
2666S: Maintained
2667F: drivers/gpu/drm/tegra/
2668F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2669
Alexey Klimov598df1a2012-11-28 17:16:32 -03002670DSBR100 USB FM RADIO DRIVER
2671M: Alexey Klimov <klimov.linux@gmail.com>
2672L: linux-media@vger.kernel.org
2673T: git git://linuxtv.org/media_tree.git
2674S: Maintained
2675F: drivers/media/radio/dsbr100.c
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002678M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002679L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002681F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Antti Palosaari91952bc2012-10-01 12:28:46 -03002683DVB_USB_AF9015 MEDIA DRIVER
2684M: Antti Palosaari <crope@iki.fi>
2685L: linux-media@vger.kernel.org
2686W: http://linuxtv.org/
2687W: http://palosaari.fi/linux/
2688Q: http://patchwork.linuxtv.org/project/linux-media/list/
2689T: git git://linuxtv.org/anttip/media_tree.git
2690S: Maintained
2691F: drivers/media/usb/dvb-usb-v2/af9015*
2692
2693DVB_USB_AF9035 MEDIA DRIVER
2694M: Antti Palosaari <crope@iki.fi>
2695L: linux-media@vger.kernel.org
2696W: http://linuxtv.org/
2697W: http://palosaari.fi/linux/
2698Q: http://patchwork.linuxtv.org/project/linux-media/list/
2699T: git git://linuxtv.org/anttip/media_tree.git
2700S: Maintained
2701F: drivers/media/usb/dvb-usb-v2/af9035*
2702
2703DVB_USB_ANYSEE MEDIA DRIVER
2704M: Antti Palosaari <crope@iki.fi>
2705L: linux-media@vger.kernel.org
2706W: http://linuxtv.org/
2707W: http://palosaari.fi/linux/
2708Q: http://patchwork.linuxtv.org/project/linux-media/list/
2709T: git git://linuxtv.org/anttip/media_tree.git
2710S: Maintained
2711F: drivers/media/usb/dvb-usb-v2/anysee*
2712
2713DVB_USB_AU6610 MEDIA DRIVER
2714M: Antti Palosaari <crope@iki.fi>
2715L: linux-media@vger.kernel.org
2716W: http://linuxtv.org/
2717W: http://palosaari.fi/linux/
2718Q: http://patchwork.linuxtv.org/project/linux-media/list/
2719T: git git://linuxtv.org/anttip/media_tree.git
2720S: Maintained
2721F: drivers/media/usb/dvb-usb-v2/au6610*
2722
2723DVB_USB_CE6230 MEDIA DRIVER
2724M: Antti Palosaari <crope@iki.fi>
2725L: linux-media@vger.kernel.org
2726W: http://linuxtv.org/
2727W: http://palosaari.fi/linux/
2728Q: http://patchwork.linuxtv.org/project/linux-media/list/
2729T: git git://linuxtv.org/anttip/media_tree.git
2730S: Maintained
2731F: drivers/media/usb/dvb-usb-v2/ce6230*
2732
Michael Krufkyd099dea2012-10-02 00:56:20 -03002733DVB_USB_CXUSB MEDIA DRIVER
2734M: Michael Krufky <mkrufky@linuxtv.org>
2735L: linux-media@vger.kernel.org
2736W: http://linuxtv.org/
2737W: http://github.com/mkrufky
2738Q: http://patchwork.linuxtv.org/project/linux-media/list/
2739T: git git://linuxtv.org/media_tree.git
2740S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002741F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002742
Antti Palosaari91952bc2012-10-01 12:28:46 -03002743DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2744M: Antti Palosaari <crope@iki.fi>
2745L: linux-media@vger.kernel.org
2746W: http://linuxtv.org/
2747W: http://palosaari.fi/linux/
2748Q: http://patchwork.linuxtv.org/project/linux-media/list/
2749T: git git://linuxtv.org/anttip/media_tree.git
2750S: Maintained
2751F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2752
2753DVB_USB_EC168 MEDIA DRIVER
2754M: Antti Palosaari <crope@iki.fi>
2755L: linux-media@vger.kernel.org
2756W: http://linuxtv.org/
2757W: http://palosaari.fi/linux/
2758Q: http://patchwork.linuxtv.org/project/linux-media/list/
2759T: git git://linuxtv.org/anttip/media_tree.git
2760S: Maintained
2761F: drivers/media/usb/dvb-usb-v2/ec168*
2762
Michael Krufky8856f5f2012-10-02 00:55:50 -03002763DVB_USB_MXL111SF MEDIA DRIVER
2764M: Michael Krufky <mkrufky@linuxtv.org>
2765L: linux-media@vger.kernel.org
2766W: http://linuxtv.org/
2767W: http://github.com/mkrufky
2768Q: http://patchwork.linuxtv.org/project/linux-media/list/
2769T: git git://linuxtv.org/mkrufky/mxl111sf.git
2770S: Maintained
2771F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2772
Antti Palosaari91952bc2012-10-01 12:28:46 -03002773DVB_USB_RTL28XXU MEDIA DRIVER
2774M: Antti Palosaari <crope@iki.fi>
2775L: linux-media@vger.kernel.org
2776W: http://linuxtv.org/
2777W: http://palosaari.fi/linux/
2778Q: http://patchwork.linuxtv.org/project/linux-media/list/
2779T: git git://linuxtv.org/anttip/media_tree.git
2780S: Maintained
2781F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2782
2783DVB_USB_V2 MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787W: http://palosaari.fi/linux/
2788Q: http://patchwork.linuxtv.org/project/linux-media/list/
2789T: git git://linuxtv.org/anttip/media_tree.git
2790S: Maintained
2791F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2792F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2793
Jason Baronac0ac382011-08-11 14:36:43 -04002794DYNAMIC DEBUG
2795M: Jason Baron <jbaron@redhat.com>
2796S: Maintained
2797F: lib/dynamic_debug.c
2798F: include/linux/dynamic_debug.h
2799
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002800DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002801M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002802S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002803F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002804
Antti Palosaari91952bc2012-10-01 12:28:46 -03002805E4000 MEDIA DRIVER
2806M: Antti Palosaari <crope@iki.fi>
2807L: linux-media@vger.kernel.org
2808W: http://linuxtv.org/
2809W: http://palosaari.fi/linux/
2810Q: http://patchwork.linuxtv.org/project/linux-media/list/
2811T: git git://linuxtv.org/anttip/media_tree.git
2812S: Maintained
2813F: drivers/media/tuners/e4000*
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002817L: linux-eata@i-connect.net
2818L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
2822EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002823M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824L: linux-scsi@vger.kernel.org
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002830L: linux-eata@i-connect.net
2831L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002837L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838W: http://ebtables.sourceforge.net/
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002841F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002842F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Antti Palosaari91952bc2012-10-01 12:28:46 -03002844EC100 MEDIA DRIVER
2845M: Antti Palosaari <crope@iki.fi>
2846L: linux-media@vger.kernel.org
2847W: http://linuxtv.org/
2848W: http://palosaari.fi/linux/
2849Q: http://patchwork.linuxtv.org/project/linux-media/list/
2850T: git git://linuxtv.org/anttip/media_tree.git
2851S: Maintained
2852F: drivers/media/dvb-frontends/ec100*
2853
Michael Halcrow237fead2006-10-04 02:16:22 -07002854ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002855M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002856M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002857L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002858W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002860F: Documentation/filesystems/ecryptfs.txt
2861F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002862
Alan Coxda9bb1d2006-01-18 17:44:13 -08002863EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002865L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002866W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002868F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002869F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002870F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002871
Borislav Petkovc476c232009-05-20 20:31:58 +02002872EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002874M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002875L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002876W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002877S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002878F: drivers/edac/amd64_edac*
2879
Ralf Baechlef65aad42012-10-17 00:39:09 +02002880EDAC-CAVIUM
2881M: Ralf Baechle <ralf@linux-mips.org>
2882M: David Daney <david.daney@cavium.com>
2883L: linux-edac@vger.kernel.org
2884L: linux-mips@linux-mips.org
2885W: bluesmoke.sourceforge.net
2886S: Supported
2887F: drivers/edac/octeon_edac*
2888
Dave Peterson0e438e32006-03-26 01:38:55 -08002889EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002890M: Mark Gross <mark.gross@intel.com>
2891M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002892L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002893W: bluesmoke.sourceforge.net
2894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002895F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002896
2897EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002898M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002899L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002900W: bluesmoke.sourceforge.net
2901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002903
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002904EDAC-GHES
2905M: Mauro Carvalho Chehab <mchehab@redhat.com>
2906L: linux-edac@vger.kernel.org
2907W: bluesmoke.sourceforge.net
2908S: Maintained
2909F: drivers/edac/ghes-edac.c
2910
Douglas Thompson6bc78402007-07-19 01:50:12 -07002911EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002913L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002914W: bluesmoke.sourceforge.net
2915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002916F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002917
2918EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002920L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002921W: bluesmoke.sourceforge.net
2922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002923F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002924
2925EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002926M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002927L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002928W: bluesmoke.sourceforge.net
2929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002930F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002931
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002932EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002933M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002934L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002935W: bluesmoke.sourceforge.net
2936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002937F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002938
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002939EDAC-I7300
2940M: Mauro Carvalho Chehab <mchehab@redhat.com>
2941L: linux-edac@vger.kernel.org
2942W: bluesmoke.sourceforge.net
2943S: Maintained
2944F: drivers/edac/i7300_edac.c
2945
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002946EDAC-I7CORE
2947M: Mauro Carvalho Chehab <mchehab@redhat.com>
2948L: linux-edac@vger.kernel.org
2949W: bluesmoke.sourceforge.net
2950S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002951F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002952
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002953EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002954M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302955M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002956L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002957W: bluesmoke.sourceforge.net
2958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002960
2961EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002962M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002963L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002964W: bluesmoke.sourceforge.net
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002967
Dave Peterson0e438e32006-03-26 01:38:55 -08002968EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002970L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002971W: bluesmoke.sourceforge.net
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002974
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002975EDAC-SBRIDGE
2976M: Mauro Carvalho Chehab <mchehab@redhat.com>
2977L: linux-edac@vger.kernel.org
2978W: bluesmoke.sourceforge.net
2979S: Maintained
2980F: drivers/edac/sb_edac.c
2981
Clemens Ladischaf399172011-01-10 16:32:54 +01002982EDIROL UA-101/UA-1000 DRIVER
2983M: Clemens Ladisch <clemens@ladisch.de>
2984L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2985T: git git://git.alsa-project.org/alsa-kernel.git
2986S: Maintained
2987F: sound/usb/misc/ua101.c
2988
Matt Fleming1f7df952012-10-03 10:04:02 +01002989EXTENSIBLE FIRMWARE INTERFACE (EFI)
2990M: Matt Fleming <matt.fleming@intel.com>
2991L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002992T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002993S: Maintained
2994F: Documentation/x86/efi-stub.txt
2995F: arch/ia64/kernel/efi.c
2996F: arch/x86/boot/compressed/eboot.[ch]
2997F: arch/x86/include/asm/efi.h
2998F: arch/x86/platform/efi/*
2999F: drivers/firmware/efivars.c
3000F: include/linux/efi*.h
3001
Peter Jones85a00d92010-09-22 13:05:04 -07003002EFIFB FRAMEBUFFER DRIVER
3003L: linux-fbdev@vger.kernel.org
3004M: Peter Jones <pjones@redhat.com>
3005S: Maintained
3006F: drivers/video/efifb.c
3007
Josh Triplett0bee8d22006-07-30 03:03:58 -07003008EFS FILESYSTEM
3009W: http://aeschi.ch.eu.org/efs/
3010S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003011F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003012
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003013EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003014M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3015M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003016L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003018F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003019
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003020EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003021M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003022L: netdev@vger.kernel.org
3023S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003024F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003025
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003026EM28XX VIDEO4LINUX DRIVER
3027M: Mauro Carvalho Chehab <mchehab@redhat.com>
3028L: linux-media@vger.kernel.org
3029W: http://linuxtv.org
3030T: git git://linuxtv.org/media_tree.git
3031S: Maintained
3032F: drivers/media/usb/em28xx/
3033
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003034EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003035M: Paul Gortmaker <paul.gortmaker@windriver.com>
3036M: Matt Mackall <mpm@selenic.com>
3037M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003038L: linux-embedded@vger.kernel.org
3039S: Maintained
3040
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003041EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003042M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003043L: linux-scsi@vger.kernel.org
3044W: http://sourceforge.net/projects/lpfcxxxx
3045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003046F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003047
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003048ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003049M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003050S: Maintained
3051F: drivers/misc/cb710/
3052F: drivers/mmc/host/cb710-mmc.*
3053F: include/linux/cb710.h
3054
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003055ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3056M: Maxim Levitsky <maximlevitsky@gmail.com>
3057S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003058F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003059
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003060EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003061M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003062S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003063T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003064F: drivers/video/s1d13xxxfb.c
3065F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003068M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003069L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003070L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003071W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: include/linux/netfilter_bridge/
3074F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003077M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003078L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003080F: Documentation/filesystems/ext2.txt
3081F: fs/ext2/
3082F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003085M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003087M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003088L: linux-ext4@vger.kernel.org
3089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: Documentation/filesystems/ext3.txt
3091F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003092
3093EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003095M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003096L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003097W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003098Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: Documentation/filesystems/ext4.txt
3101F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Mimi Zoharc5532b02011-08-17 18:52:24 -04003103Extended Verification Module (EVM)
3104M: Mimi Zohar <zohar@us.ibm.com>
3105S: Supported
3106F: security/integrity/evm/
3107
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003108EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3109M: MyungJoo Ham <myungjoo.ham@samsung.com>
3110M: Chanwoo Choi <cw00.choi@samsung.com>
3111L: linux-kernel@vger.kernel.org
3112S: Maintained
3113F: drivers/extcon/
3114F: Documentation/extcon/
3115
Jingoo Han0a799512012-02-06 11:30:39 +09003116EXYNOS DP DRIVER
3117M: Jingoo Han <jg1.han@samsung.com>
3118L: linux-fbdev@vger.kernel.org
3119S: Maintained
3120F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003121F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003122
Donghwa Lee33ad3912012-03-06 11:44:58 +09003123EXYNOS MIPI DISPLAY DRIVERS
3124M: Inki Dae <inki.dae@samsung.com>
3125M: Donghwa Lee <dh09.lee@samsung.com>
3126M: Kyungmin Park <kyungmin.park@samsung.com>
3127L: linux-fbdev@vger.kernel.org
3128S: Maintained
3129F: drivers/video/exynos/exynos_mipi*
3130F: include/video/exynos_mipi*
3131
Jean Delvaree53004e2006-01-09 23:26:14 +01003132F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003134L: lm-sensors@lm-sensors.org
3135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/hwmon/f71805f
3137F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003138
Michael Büscheea977e2012-04-02 12:14:32 -03003139FC0011 TUNER DRIVER
3140M: Michael Buesch <m@bues.ch>
3141L: linux-media@vger.kernel.org
3142S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003143F: drivers/media/tuners/fc0011.h
3144F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003145
Antti Palosaari91952bc2012-10-01 12:28:46 -03003146FC2580 MEDIA DRIVER
3147M: Antti Palosaari <crope@iki.fi>
3148L: linux-media@vger.kernel.org
3149W: http://linuxtv.org/
3150W: http://palosaari.fi/linux/
3151Q: http://patchwork.linuxtv.org/project/linux-media/list/
3152T: git git://linuxtv.org/anttip/media_tree.git
3153S: Maintained
3154F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Eric Paris88b2dbd2010-08-18 12:25:50 -04003156FANOTIFY
3157M: Eric Paris <eparis@redhat.com>
3158S: Maintained
3159F: fs/notify/fanotify/
3160F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003161F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003164M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165W: http://www.farsite.co.uk/
3166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003167F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Akinobu Mitac5408b82007-04-23 14:41:20 -07003169FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003172F: Documentation/fault-injection/
3173F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003174
Robert Lovecae727d2010-02-16 12:16:00 -08003175FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3176M: Robert Love <robert.w.love@intel.com>
3177L: devel@open-fcoe.org
3178W: www.Open-FCoE.org
3179S: Supported
3180F: drivers/scsi/libfc/
3181F: drivers/scsi/fcoe/
3182F: include/scsi/fc/
3183F: include/scsi/libfc.h
3184F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003185F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003187FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003189L: linux-fsdevel@vger.kernel.org
3190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: include/linux/fcntl.h
3192F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003193F: include/uapi/linux/fcntl.h
3194F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003195F: fs/fcntl.c
3196F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003197
3198FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003199M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003200L: linux-fsdevel@vger.kernel.org
3201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003203
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003204FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003205M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003206L: lm-sensors@lm-sensors.org
3207S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003208F: drivers/hwmon/f75375s.c
3209F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003210
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003211FIREWIRE AUDIO DRIVERS
3212M: Clemens Ladisch <clemens@ladisch.de>
3213L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3214T: git git://git.alsa-project.org/alsa-kernel.git
3215S: Maintained
3216F: sound/firewire/
3217
Stefan Richtereb86ec52012-11-03 09:25:20 +01003218FIREWIRE MEDIA DRIVERS (firedtv)
3219M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3220L: linux-media@vger.kernel.org
3221L: linux1394-devel@lists.sourceforge.net
3222T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3223S: Maintained
3224F: drivers/media/firewire/
3225
Chris Boota511ce32012-04-14 17:50:35 -07003226FIREWIRE SBP-2 TARGET
3227M: Chris Boot <bootc@bootc.net>
3228L: linux-scsi@vger.kernel.org
3229L: target-devel@vger.kernel.org
3230L: linux1394-devel@lists.sourceforge.net
3231T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3232S: Maintained
3233F: drivers/target/sbp/
3234
Joe Perches7d2c86b2009-04-07 20:59:01 -07003235FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003238W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003239T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003242F: include/linux/firewire.h
3243F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003244F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003245
3246FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003247M: Ming Lei <ming.lei@canonical.com>
3248L: linux-kernel@vger.kernel.org
3249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003250F: Documentation/firmware_class/
3251F: drivers/base/firmware*.c
3252F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003253
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003254FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3255M: Joshua Morris <josh.h.morris@us.ibm.com>
3256M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3257S: Maintained
3258F: drivers/block/rsxx/
3259
Jiri Kosina8206f662012-05-18 13:52:29 +02003260FLOPPY DRIVER
3261M: Jiri Kosina <jkosina@suse.cz>
3262T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3263S: Odd fixes
3264F: drivers/block/floppy.c
3265
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003266FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003267M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003268W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003271
3272FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003273L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003274S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003275F: drivers/net/wan/dlci.c
3276F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003279M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003280L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003282Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003283T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003286F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003287F: drivers/video/
3288F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003289F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003290F: include/uapi/video/
3291F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Timur Tabia57c1882012-10-16 17:33:42 -05003293FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003294M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003295L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003296S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003297F: drivers/video/fsl-diu-fb.*
3298
Zhang Wei173acc72008-03-01 07:42:48 -07003299FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: Li Yang <leoli@freescale.com>
3301M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003302L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003305
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003306FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003307M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003308L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003309L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003311F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003312
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003313FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003314M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003315L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003317S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003318F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003319F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003320
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003321FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3323M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003324L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003325L: netdev@vger.kernel.org
3326S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003327F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003328F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003329
Timur Tabid9e9d822008-04-24 08:45:26 +10003330FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003331L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003333F: arch/powerpc/sysdev/qe_lib/
3334F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003335
Joe Perchesb55ef922009-10-26 16:49:46 -07003336FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003337M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003338L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003339L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003340S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003341F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003342
Li Yangbeaf53b2007-05-25 13:54:02 +08003343FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003344M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003345L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003346L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003347S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003348F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003349
Timur Tabid9e9d822008-04-24 08:45:26 +10003350FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003351M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003352L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003353S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003354F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003355
3356FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003357M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003358L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003359L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003360S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003361F: sound/soc/fsl/fsl*
3362F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003363
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003365M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003368F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Pavel Machek71038f52009-01-15 13:51:02 -08003370FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Pavel Machek <pavel@ucw.cz>
3372M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003373L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003375F: Documentation/power/freezing-of-tasks.txt
3376F: include/linux/freezer.h
3377F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003378
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003379FRONTSWAP API
3380M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3381L: linux-kernel@vger.kernel.org
3382S: Maintained
3383F: mm/frontswap.c
3384F: include/linux/frontswap.h
3385
David Howellsa5432f52009-04-20 15:46:45 +01003386FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003387M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003388L: linux-cachefs@redhat.com
3389S: Supported
3390F: Documentation/filesystems/caching/
3391F: fs/fscache/
3392F: include/linux/fscache*.h
3393
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003394F2FS FILE SYSTEM
3395M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3396L: linux-f2fs-devel@lists.sourceforge.net
3397W: http://en.wikipedia.org/wiki/F2FS
3398T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3399S: Maintained
3400F: Documentation/filesystems/f2fs.txt
3401F: fs/f2fs/
3402F: include/linux/f2fs_fs.h
3403
David Howells5ab7ffe2007-04-10 15:10:45 +01003404FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003407F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Jonathan Woithe20b93732008-06-11 10:14:56 +09303409FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303410M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003411L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003413F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303414
Heungjun Kim4da621b2011-11-11 08:05:33 -03003415FUJITSU M-5MO LS CAMERA ISP DRIVER
3416M: Kyungmin Park <kyungmin.park@samsung.com>
3417M: Heungjun Kim <riverful.kim@samsung.com>
3418L: linux-media@vger.kernel.org
3419S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003420F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003421F: include/media/m5mols.h
3422
Robert Gerlach2d24c492012-01-18 14:26:22 +01003423FUJITSU TABLET EXTRAS
3424M: Robert Gerlach <khnz@gmx.de>
3425L: platform-driver-x86@vger.kernel.org
3426S: Maintained
3427F: drivers/platform/x86/fujitsu-tablet.c
3428
Miklos Szeredi04578f12005-09-09 13:10:22 -07003429FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003431L: fuse-devel@lists.sourceforge.net
3432W: http://fuse.sourceforge.net/
3433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003434F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003435F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003440S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003441F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003444M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445L: linux-scsi@vger.kernel.org
3446W: http://www.icp-vortex.com/
3447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003448F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003450GEMTEK FM RADIO RECEIVER DRIVER
3451M: Hans Verkuil <hverkuil@xs4all.nl>
3452L: linux-media@vger.kernel.org
3453T: git git://linuxtv.org/media_tree.git
3454W: http://linuxtv.org
3455S: Maintained
3456F: drivers/media/radio/radio-gemtek*
3457
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003458GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003459M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003461F: drivers/i2c/busses/i2c-gpio.c
3462F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003463
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003464GENERIC GPIO I2C MULTIPLEXER DRIVER
3465M: Peter Korsgaard <peter.korsgaard@barco.com>
3466L: linux-i2c@vger.kernel.org
3467S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003468F: drivers/i2c/muxes/i2c-mux-gpio.c
3469F: include/linux/i2c-mux-gpio.h
3470F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003471
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003472GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: drivers/net/wan/c101.c
3477F: drivers/net/wan/hd6457*
3478F: drivers/net/wan/hdlc*
3479F: drivers/net/wan/n2.c
3480F: drivers/net/wan/pc300too.c
3481F: drivers/net/wan/pci200syn.c
3482F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003484GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003485M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003486L: linux-arch@vger.kernel.org
3487T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3488S: Maintained
3489F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003490F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003491
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003492GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003493M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003494L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003495S: Supported
3496F: drivers/uio/uio_pci_generic.c
3497
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003498GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003499M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003500L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003501W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003502T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3503T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003505F: Documentation/filesystems/gfs2*.txt
3506F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003507F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003508
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003509GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003510M: Hansjoerg Lipp <hjlipp@web.de>
3511M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003512L: gigaset307x-common@lists.sourceforge.net
3513W: http://gigaset307x.sourceforge.net/
3514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: Documentation/isdn/README.gigaset
3516F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003517F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003518
Grant Likelya0dc00b2011-02-12 01:48:14 -07003519GPIO SUBSYSTEM
3520M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003521M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003522S: Maintained
3523T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003524F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003525F: drivers/gpio/
3526F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003527F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003528
Harry Wei71a6d0a2011-05-11 15:13:33 -07003529GRE DEMULTIPLEXER DRIVER
3530M: Dmitry Kozlov <xeb@mail.ru>
3531L: netdev@vger.kernel.org
3532S: Maintained
3533F: net/ipv4/gre.c
3534F: include/net/gre.h
3535
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003536GRETH 10/100/1G Ethernet MAC device driver
3537M: Kristoffer Glembo <kristoffer@gaisler.com>
3538L: netdev@vger.kernel.org
3539S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003540F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003541
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003542GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003544L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003545T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003546S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003547F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003548
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003549GSPCA GL860 SUBDRIVER
3550M: Olivier Lorin <o.lorin@laposte.net>
3551L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003552T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003553S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003554F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003555
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003556GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003558L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003559T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003560S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003561F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003562
3563GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003565L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003566T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003567S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003568F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003569
Brian Johnson261982f2009-07-19 15:58:56 -03003570GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003571M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003572L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003573T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003574S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003575F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003576
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003577GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003579L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003580T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003581S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003582F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003583
3584GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003585M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003586L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003587T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003588S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003589F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003590
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003591STK1160 USB VIDEO CAPTURE DRIVER
3592M: Ezequiel Garcia <elezegarcia@gmail.com>
3593L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003594T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003595S: Maintained
3596F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003597
Harry Wei71a6d0a2011-05-11 15:13:33 -07003598HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3599M: Frank Seidel <frank@f-seidel.de>
3600L: platform-driver-x86@vger.kernel.org
3601W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3602S: Maintained
3603F: drivers/platform/x86/hdaps.c
3604
3605HWPOISON MEMORY FAILURE HANDLING
3606M: Andi Kleen <andi@firstfloor.org>
3607L: linux-mm@kvack.org
3608T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3609S: Maintained
3610F: mm/memory-failure.c
3611F: mm/hwpoison-inject.c
3612
3613HYPERVISOR VIRTUAL CONSOLE DRIVER
3614L: linuxppc-dev@lists.ozlabs.org
3615S: Odd Fixes
3616F: drivers/tty/hvc/
3617
Michael Buesch844dd052006-06-26 00:24:59 -07003618HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003619M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003620M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003621L: lm-sensors@lm-sensors.org
3622W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003623T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003624T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003625S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003626F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003627F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003628F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003629
3630HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003631M: Matt Mackall <mpm@selenic.com>
3632M: Herbert Xu <herbert@gondor.apana.org.au>
3633S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003634F: Documentation/hw_random.txt
3635F: drivers/char/hw_random/
3636F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003637
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003638HARDWARE SPINLOCK CORE
3639M: Ohad Ben-Cohen <ohad@wizery.com>
3640S: Maintained
3641F: Documentation/hwspinlock.txt
3642F: drivers/hwspinlock/hwspinlock_*
3643F: include/linux/hwspinlock.h
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003646L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Antti Palosaari91952bc2012-10-01 12:28:46 -03003650HD29L2 MEDIA DRIVER
3651M: Antti Palosaari <crope@iki.fi>
3652L: linux-media@vger.kernel.org
3653W: http://linuxtv.org/
3654W: http://palosaari.fi/linux/
3655Q: http://patchwork.linuxtv.org/project/linux-media/list/
3656T: git git://linuxtv.org/anttip/media_tree.git
3657S: Maintained
3658F: drivers/media/dvb-frontends/hd29l2*
3659
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003660HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003662L: iss_storagedev@hp.com
3663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003664F: Documentation/blockdev/cpqarray.txt
3665F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003666
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003667HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003668M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003669L: iss_storagedev@hp.com
3670S: Supported
3671F: Documentation/scsi/hpsa.txt
3672F: drivers/scsi/hpsa*.[ch]
3673F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003674F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003675
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003676HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003677M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003678L: iss_storagedev@hp.com
3679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003680F: Documentation/blockdev/cciss.txt
3681F: drivers/block/cciss*
3682F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003683F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003686L: linux-fsdevel@vger.kernel.org
3687S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003688F: Documentation/filesystems/hfs.txt
3689F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003692M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693L: linux-nvidia@lists.surfsouth.com
3694W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003696F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003698HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003699M: Pavel Machek <pavel@ucw.cz>
3700M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003701L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003703F: arch/x86/power/
3704F: drivers/base/power/
3705F: kernel/power/
3706F: include/linux/suspend.h
3707F: include/linux/freezer.h
3708F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003709F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003710
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003711HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003713L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003714T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003716F: drivers/hid/
3717F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003718F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003719
Ingo Molnar38bed542007-02-22 09:09:34 +01003720HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003721M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003722T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003724F: Documentation/timers/
3725F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003726F: kernel/time/clockevents.c
3727F: kernel/time/tick*.*
3728F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003729F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003730F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003734S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003735F: drivers/net/hamradio/dmascc.c
3736F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003738HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003740W: http://www.highpoint-tech.com
3741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003742F: Documentation/scsi/hptiop.txt
3743F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747L: linux-hippi@sunsite.dk
3748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003750F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003751F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003752F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Jouni Malinenff1d2762005-05-12 22:54:16 -04003754HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003755M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003756L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003757L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003758W: http://hostap.epitest.fi/
3759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003761
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003762HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003763L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003764S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003765F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003766
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003767HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003768M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003769S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003770F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003771
Joe Perches7d2c86b2009-04-07 20:59:01 -07003772HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003775F: Documentation/timers/hpet.txt
3776F: drivers/char/hpet.c
3777F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003778F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003779
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003780HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003781M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003783F: arch/x86/kernel/hpet.c
3784F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003787M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003790F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Joe Perches7d2c86b2009-04-07 20:59:01 -07003792HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003794W: http://www.pharscape.org
3795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003796F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003797
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003798HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003799M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003800L: linux-input@vger.kernel.org
3801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003802F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003805M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003809Hyper-V CORE AND DRIVERS
3810M: K. Y. Srinivasan <kys@microsoft.com>
3811M: Haiyang Zhang <haiyangz@microsoft.com>
3812L: devel@linuxdriverproject.org
3813S: Maintained
3814F: drivers/hv/
3815F: drivers/hid/hid-hyperv.c
3816F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003817
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003818I2C OVER PARALLEL PORT
3819M: Jean Delvare <khali@linux-fr.org>
3820L: linux-i2c@vger.kernel.org
3821S: Maintained
3822F: Documentation/i2c/busses/i2c-parport
3823F: Documentation/i2c/busses/i2c-parport-light
3824F: drivers/i2c/busses/i2c-parport.c
3825F: drivers/i2c/busses/i2c-parport-light.c
3826
3827I2C/SMBUS CONTROLLER DRIVERS FOR PC
3828M: Jean Delvare <khali@linux-fr.org>
3829L: linux-i2c@vger.kernel.org
3830S: Maintained
3831F: Documentation/i2c/busses/i2c-ali1535
3832F: Documentation/i2c/busses/i2c-ali1563
3833F: Documentation/i2c/busses/i2c-ali15x3
3834F: Documentation/i2c/busses/i2c-amd756
3835F: Documentation/i2c/busses/i2c-amd8111
3836F: Documentation/i2c/busses/i2c-i801
3837F: Documentation/i2c/busses/i2c-nforce2
3838F: Documentation/i2c/busses/i2c-piix4
3839F: Documentation/i2c/busses/i2c-sis5595
3840F: Documentation/i2c/busses/i2c-sis630
3841F: Documentation/i2c/busses/i2c-sis96x
3842F: Documentation/i2c/busses/i2c-via
3843F: Documentation/i2c/busses/i2c-viapro
3844F: drivers/i2c/busses/i2c-ali1535.c
3845F: drivers/i2c/busses/i2c-ali1563.c
3846F: drivers/i2c/busses/i2c-ali15x3.c
3847F: drivers/i2c/busses/i2c-amd756.c
3848F: drivers/i2c/busses/i2c-amd756-s4882.c
3849F: drivers/i2c/busses/i2c-amd8111.c
3850F: drivers/i2c/busses/i2c-i801.c
3851F: drivers/i2c/busses/i2c-isch.c
3852F: drivers/i2c/busses/i2c-nforce2.c
3853F: drivers/i2c/busses/i2c-nforce2-s4985.c
3854F: drivers/i2c/busses/i2c-piix4.c
3855F: drivers/i2c/busses/i2c-sis5595.c
3856F: drivers/i2c/busses/i2c-sis630.c
3857F: drivers/i2c/busses/i2c-sis96x.c
3858F: drivers/i2c/busses/i2c-via.c
3859F: drivers/i2c/busses/i2c-viapro.c
3860
Neil Hormancb7f07a2013-02-10 11:59:03 -05003861I2C/SMBUS ISMT DRIVER
3862M: Seth Heasley <seth.heasley@intel.com>
3863M: Neil Horman <nhorman@tuxdriver.com>
3864L: linux-i2c@vger.kernel.org
3865F: drivers/i2c/busses/i2c-ismt.c
3866F: Documentation/i2c/busses/i2c-ismt
3867
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003868I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003869M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003870L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003871S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003872F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003873
Jean Delvare5b543962005-08-15 19:51:02 +02003874I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003875M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003877L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003878W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003879T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003881F: Documentation/i2c/
3882F: drivers/i2c/
3883F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003884F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003885F: include/uapi/linux/i2c.h
3886F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003888I2C-TAOS-EVM DRIVER
3889M: Jean Delvare <khali@linux-fr.org>
3890L: linux-i2c@vger.kernel.org
3891S: Maintained
3892F: Documentation/i2c/busses/i2c-taos-evm
3893F: drivers/i2c/busses/i2c-taos-evm.c
3894
Till Harbaume8c76ee2007-05-01 23:26:35 +02003895I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003896M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003897L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003898W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003903M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003905F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
3907i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003908M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003909T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910S: Maintained
3911
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003913M: Tony Luck <tony.luck@intel.com>
3914M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003916T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Kent Yoder956c2032012-09-07 04:17:01 +08003920IBM Power in-Nest Crypto Acceleration
3921M: Kent Yoder <key@linux.vnet.ibm.com>
3922L: linux-crypto@vger.kernel.org
3923S: Supported
3924F: drivers/crypto/nx/
3925
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003926IBM Power 842 compression accelerator
3927M: Robert Jennings <rcj@linux.vnet.ibm.com>
3928S: Supported
3929F: drivers/crypto/nx/nx-842.c
3930F: include/linux/nx842.h
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003935F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Santiago Leon9d348af2010-09-03 18:29:53 +00003937IBM Power Virtual Ethernet Device Driver
3938M: Santiago Leon <santil@linux.vnet.ibm.com>
3939L: netdev@vger.kernel.org
3940S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003941F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003942
Robert Jennings4b7652c2012-07-31 12:34:36 -05003943IBM Power Virtual SCSI/FC Device Drivers
3944M: Robert Jennings <rcj@linux.vnet.ibm.com>
3945L: linux-scsi@vger.kernel.org
3946S: Supported
3947F: drivers/scsi/ibmvscsi/
3948X: drivers/scsi/ibmvscsi/ibmvstgt.c
3949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950IBM ServeRAID RAID DRIVER
3951P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003952M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003955F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003957ICH LPC AND GPIO DRIVER
3958M: Peter Tyser <ptyser@xes-inc.com>
3959S: Maintained
3960F: drivers/mfd/lpc_ich.c
3961F: drivers/gpio/gpio-ich.c
3962
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003963IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003964M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003966Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003967T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003969F: Documentation/ide/
3970F: drivers/ide/
3971F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Ike Panhc6cb8c132011-08-25 22:28:45 +08003973IDEAPAD LAPTOP EXTRAS DRIVER
3974M: Ike Panhc <ike.pan@canonical.com>
3975L: platform-driver-x86@vger.kernel.org
3976W: http://launchpad.net/ideapad-laptop
3977S: Maintained
3978F: drivers/platform/x86/ideapad-laptop.c
3979
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003980IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003981M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003982L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003984F: Documentation/cdrom/ide-cd
3985F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Andy Henroid27471fd2008-10-09 11:45:22 -07003987IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003989L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003992
Sergey Lapin02cf2282009-06-08 12:18:50 +00003993IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003994M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003996L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003997W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003998T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003999S: Maintained
4000F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004001F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004002F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004003
Sean Young40ad4a32012-11-19 10:32:53 -03004004IGUANAWORKS USB IR TRANSCEIVER
4005M: Sean Young <sean@mess.org>
4006L: linux-media@vger.kernel.org
4007S: Maintained
4008F: drivers/media/rc/iguanair.c
4009
Ameya Palande9545f862012-01-10 09:00:58 -08004010IIO SUBSYSTEM AND DRIVERS
4011M: Jonathan Cameron <jic23@cam.ac.uk>
4012L: linux-iio@vger.kernel.org
4013S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004014F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004015F: drivers/staging/iio/
4016
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004017IKANOS/ADI EAGLE ADSL USB DRIVER
4018M: Matthieu Castet <castet.matthieu@free.fr>
4019M: Stanislaw Gruszka <stf_xl@wp.pl>
4020S: Maintained
4021F: drivers/usb/atm/ueagle-atm.c
4022
Guenter Roecke89ab512013-03-08 08:13:09 -08004023INA209 HARDWARE MONITOR DRIVER
4024M: Guenter Roeck <linux@roeck-us.net>
4025L: lm-sensors@lm-sensors.org
4026S: Maintained
4027F: Documentation/hwmon/ina209
4028F: Documentation/devicetree/bindings/i2c/ina209.txt
4029F: drivers/hwmon/ina209.c
4030
4031INA2XX HARDWARE MONITOR DRIVER
4032M: Guenter Roeck <linux@roeck-us.net>
4033L: lm-sensors@lm-sensors.org
4034S: Maintained
4035F: Documentation/hwmon/ina2xx
4036F: drivers/hwmon/ina2xx.c
4037F: include/linux/platform_data/ina2xx.h
4038
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004039INDUSTRY PACK SUBSYSTEM (IPACK)
4040M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4041M: Jens Taprogge <jens.taprogge@taprogge.org>
4042M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4043L: industrypack-devel@lists.sourceforge.net
4044W: http://industrypack.sourceforge.net
4045S: Maintained
4046F: drivers/ipack/
4047
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004048INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004049M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004051F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004052
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004054L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004055S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004056F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
4058INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004059M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Sean Hefty <sean.hefty@intel.com>
4061M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004062L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004063W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004064Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004065T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004067F: Documentation/infiniband/
4068F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004069F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Robert Lovec9f04f52005-07-15 12:21:07 -04004071INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004072M: John McCutchan <john@johnmccutchan.com>
4073M: Robert Love <rlove@rlove.org>
4074M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004076F: Documentation/filesystems/inotify.txt
4077F: fs/notify/inotify/
4078F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004079F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004080
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004081INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004082M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4083M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004084L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004085Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004086T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004088F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004089F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004090F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004091F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004092
Henrik Rydberg3267a872010-06-24 19:10:40 -07004093INPUT MULTITOUCH (MT) PROTOCOL
4094M: Henrik Rydberg <rydberg@euromail.se>
4095L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004096T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004097S: Maintained
4098F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004099F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004100K: \b(ABS|SYN)_MT_
4101
Dave Jiang4ac13e12011-07-29 17:16:55 -07004102INTEL C600 SERIES SAS CONTROLLER DRIVER
4103M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004104M: Lukasz Dorau <lukasz.dorau@intel.com>
4105M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004106M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004107L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004108T: git git://git.code.sf.net/p/intel-sas/isci
4109S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004110F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004111
Len Brown26717172010-03-08 14:07:30 -05004112INTEL IDLE DRIVER
4113M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004114L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004115T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004116S: Supported
4117F: drivers/idle/intel_idle.c
4118
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004119INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004120M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004121L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004123F: Documentation/fb/intelfb.txt
4124F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004125
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004128L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004130F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304132INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004133M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004134L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304135W: http://www.lesswatts.org/projects/acpi/
4136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004137F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304138
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004140M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: arch/x86/kernel/microcode_core.c
4143F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004145INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004146M: Dan Williams <djbw@fb.com>
4147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004148F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004149
David Woodhouse6c8909b2008-10-18 16:12:17 +01004150INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004151M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004152L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004153T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004154S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004155F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004156F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004157
Dan Williamsb3e5f262007-08-07 10:26:35 -07004158INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004159M: Dan Williams <djbw@fb.com>
4160S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004162
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004163INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004166F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4167F: arch/arm/mach-ixp4xx/include/mach/npe.h
4168F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4169F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004170F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004171F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004172
Michael Buesch844dd052006-06-26 00:24:59 -07004173INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004174M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004176F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004177
Jeff Kirsher0d164402010-10-05 01:15:17 +00004178INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004179M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4180M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4181M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004182M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4183M: Don Skidmore <donald.c.skidmore@intel.com>
4184M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004185M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004186M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004188M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004189L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004190W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004191W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004192T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4193T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004195F: Documentation/networking/e100.txt
4196F: Documentation/networking/e1000.txt
4197F: Documentation/networking/e1000e.txt
4198F: Documentation/networking/igb.txt
4199F: Documentation/networking/igbvf.txt
4200F: Documentation/networking/ixgb.txt
4201F: Documentation/networking/ixgbe.txt
4202F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004203F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004205INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4206M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004207L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004209F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004210F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004211F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004212
Shane Wang4bd96a72010-03-10 14:36:10 +08004213INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004214M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4215M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004216M: Shane Wang <shane.wang@intel.com>
4217L: tboot-devel@lists.sourceforge.net
4218W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004219T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004220S: Supported
4221F: Documentation/intel_txt.txt
4222F: include/linux/tboot.h
4223F: arch/x86/kernel/tboot.c
4224
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004225INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004226M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004227M: linux-wimax@intel.com
4228L: wimax@linuxwimax.org
4229S: Supported
4230W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004231F: Documentation/wimax/README.i2400m
4232F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004233F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004234
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004235INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4236M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004237L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004238S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004239F: drivers/net/wireless/iwlegacy/
4240
Zhu Yib481de92007-09-25 17:54:57 -07004241INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004242M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004243M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004244M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004245L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004246W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004247T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004249F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004250
Tomas Winklerde8fe022012-05-09 16:39:02 +03004251INTEL MANAGEMENT ENGINE (mei)
4252M: Tomas Winkler <tomas.winkler@intel.com>
4253L: linux-kernel@vger.kernel.org
4254S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004255F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004256F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004257F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004258
Ralf Baechlecb109a02007-08-30 23:56:30 -07004259IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004260M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261L: linux-mips@linux-mips.org
4262S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004263F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Ralf Baechlecb109a02007-08-30 23:56:30 -07004265IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004266M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004267L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004268S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004269F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004270
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004271IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004272M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004274F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Francois Romieu1202d6f2007-09-17 17:13:55 -07004276IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Francois Romieu <romieu@fr.zoreil.com>
4278M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004279L: netdev@vger.kernel.org
4280S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004281F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004282
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004283IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004284M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004285L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004288
Corey Minyard4409ebe2006-04-20 02:43:12 -07004289IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004290M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004291L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004292W: http://openipmi.sourceforge.net/
4293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004294F: Documentation/IPMI.txt
4295F: drivers/char/ipmi/
4296F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004297F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004298
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004299IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004300M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004301L: linux-scsi@vger.kernel.org
4302W: http://www.adaptec.com/
4303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004305
4306IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004307M: Wensong Zhang <wensong@linux-vs.org>
4308M: Simon Horman <horms@verge.net.au>
4309M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004310L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004311L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004314F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004315F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004316F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Randy Dunlape7839f22008-10-12 16:11:45 -07004318IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004319M: Jiri Kosina <jkosina@suse.cz>
4320M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004321S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004322F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004323
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004325M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326L: netdev@vger.kernel.org
4327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004329F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004330F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004331
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004334L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004337S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004338T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004339F: Documentation/networking/irda.txt
4340F: drivers/net/irda/
4341F: include/net/irda/
4342F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004344IRQ SUBSYSTEM
4345M: Thomas Gleixner <tglx@linutronix.de>
4346S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004347T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004348F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004349F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004350
Grant Likely7ab3a832012-02-14 14:06:47 -07004351IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4352M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4353M: Grant Likely <grant.likely@secretlab.ca>
4354T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4355S: Maintained
4356F: Documentation/IRQ-domain.txt
4357F: include/linux/irqdomain.h
4358F: kernel/irq/irqdomain.c
4359
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004360ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004361M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: Documentation/isapnp.txt
4364F: drivers/pnp/isapnp/
4365F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004366
Hans Verkuild39b8422012-11-23 07:07:02 -03004367ISA RADIO MODULE
4368M: Hans Verkuil <hverkuil@xs4all.nl>
4369L: linux-media@vger.kernel.org
4370T: git git://linuxtv.org/media_tree.git
4371W: http://linuxtv.org
4372S: Maintained
4373F: drivers/media/radio/radio-isa*
4374
Harry Wei71a6d0a2011-05-11 15:13:33 -07004375iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4376M: Peter Jones <pjones@redhat.com>
4377M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4378S: Maintained
4379F: drivers/firmware/iscsi_ibft*
4380
Mike Christie14816b12007-11-28 16:22:06 -08004381ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004383L: open-iscsi@googlegroups.com
4384W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004385T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004387F: drivers/scsi/*iscsi*
4388F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004389
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004392L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004393L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004395T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: Documentation/isdn/
4398F: drivers/isdn/
4399F: include/linux/isdn.h
4400F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004401F: include/uapi/linux/isdn.h
4402F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
4404ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004405M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004406L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407W: http://www.melware.de
4408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Jean Delvared6248702010-03-05 22:17:20 +01004411IT87 HARDWARE MONITORING DRIVER
4412M: Jean Delvare <khali@linux-fr.org>
4413L: lm-sensors@lm-sensors.org
4414S: Maintained
4415F: Documentation/hwmon/it87
4416F: drivers/hwmon/it87.c
4417
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004418IT913X MEDIA DRIVER
4419M: Malcolm Priestley <tvboxspy@gmail.com>
4420L: linux-media@vger.kernel.org
4421W: http://linuxtv.org/
4422Q: http://patchwork.linuxtv.org/project/linux-media/list/
4423S: Maintained
4424F: drivers/media/usb/dvb-usb-v2/it913x*
4425
4426IT913X FE MEDIA DRIVER
4427M: Malcolm Priestley <tvboxspy@gmail.com>
4428L: linux-media@vger.kernel.org
4429W: http://linuxtv.org/
4430Q: http://patchwork.linuxtv.org/project/linux-media/list/
4431S: Maintained
4432F: drivers/media/dvb-frontends/it913x-fe*
4433
Hans Verkuil91821ff2007-12-02 09:35:33 -03004434IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004435M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004436L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004437L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004438T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004439W: http://www.ivtvdriver.org
4440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004441F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004442F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004443F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004444
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004445IX2505V MEDIA DRIVER
4446M: Malcolm Priestley <tvboxspy@gmail.com>
4447L: linux-media@vger.kernel.org
4448W: http://linuxtv.org/
4449Q: http://patchwork.linuxtv.org/project/linux-media/list/
4450S: Maintained
4451F: drivers/media/dvb-frontends/ix2505v*
4452
Guenter Roeck4453d732010-08-09 17:21:08 -07004453JC42.4 TEMPERATURE SENSOR DRIVER
4454M: Guenter Roeck <linux@roeck-us.net>
4455L: lm-sensors@lm-sensors.org
4456S: Maintained
4457F: drivers/hwmon/jc42.c
4458F: Documentation/hwmon/jc42
4459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004460JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004461M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004462L: jfs-discussion@lists.sourceforge.net
4463W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004464T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004466F: Documentation/filesystems/jfs.txt
4467F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004468
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004469JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004470M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004471L: netdev@vger.kernel.org
4472S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004473F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004474
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004476M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004477L: linux-mtd@lists.infradead.org
4478W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004480F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004481F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
Josh Triplettde456d32006-07-30 03:04:00 -07004483JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004485M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004486L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004487S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004488F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004489F: include/linux/jbd.h
4490
4491JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4492M: "Theodore Ts'o" <tytso@mit.edu>
4493L: linux-ext4@vger.kernel.org
4494S: Maintained
4495F: fs/jbd2/
4496F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004497
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004498JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004499M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004500L: linux-serial@vger.kernel.org
4501S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004502F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004503
Clemens Ladischaf399172011-01-10 16:32:54 +01004504K10TEMP HARDWARE MONITORING DRIVER
4505M: Clemens Ladisch <clemens@ladisch.de>
4506L: lm-sensors@lm-sensors.org
4507S: Maintained
4508F: Documentation/hwmon/k10temp
4509F: drivers/hwmon/k10temp.c
4510
Rudolf Marek4660cb32006-10-08 22:01:26 +02004511K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004512M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004513L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004515F: Documentation/hwmon/k8temp
4516F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004519M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004520L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004521S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004522F: Documentation/kbuild/kconfig-language.txt
4523F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Vivek Goyalea6c2082006-05-20 14:59:55 -07004525KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Vivek Goyal <vgoyal@redhat.com>
4527M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004528L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004529W: http://lse.sourceforge.net/kdump/
4530S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004531F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004532
Hans Verkuilf41bf022012-11-23 07:04:36 -03004533KEENE FM RADIO TRANSMITTER DRIVER
4534M: Hans Verkuil <hverkuil@xs4all.nl>
4535L: linux-media@vger.kernel.org
4536T: git git://linuxtv.org/media_tree.git
4537W: http://linuxtv.org
4538S: Maintained
4539F: drivers/media/radio/radio-keene*
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004543L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Michal Marek70fb7ba2010-01-29 14:22:43 +01004547KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004548M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004549T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4550T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004551L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004553F: Documentation/kbuild/
4554F: Makefile
4555F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004556F: scripts/basic/
4557F: scripts/mk*
4558F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
4560KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004561L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004562W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004563S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004565KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004567L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004570F: fs/nfsd/
4571F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004572F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004573F: fs/lockd/
4574F: fs/nfs_common/
4575F: net/sunrpc/
4576F: include/linux/lockd/
4577F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004578F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Avi Kivity426d62e2006-12-13 00:34:03 -08004580KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004581M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004582M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004583L: kvm@vger.kernel.org
4584W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004586F: Documentation/*/kvm.txt
4587F: arch/*/kvm/
4588F: arch/*/include/asm/kvm*
4589F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004590F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004591F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004592
Joerg Roedelad8003d2008-09-10 20:01:07 +02004593KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004594M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004595L: kvm@vger.kernel.org
4596W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004599F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004600
Hollis Blanchard513014b2008-04-16 23:28:08 -05004601KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004602M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004603L: kvm-ppc@vger.kernel.org
4604W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004605T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004607F: arch/powerpc/include/asm/kvm*
4608F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004609
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004610KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004612L: kvm-ia64@vger.kernel.org
4613W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004615F: Documentation/ia64/kvm.txt
4616F: arch/ia64/include/asm/kvm*
4617F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004618
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004619KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004621M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004622M: linux390@de.ibm.com
4623L: linux-s390@vger.kernel.org
4624W: http://www.ibm.com/developerworks/linux/linux390/
4625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004626F: Documentation/s390/kvm.txt
4627F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004628F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004629F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004630
Christoffer Dalla7494742013-01-20 18:42:26 -05004631KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4632M: Christoffer Dall <cdall@cs.columbia.edu>
4633L: kvmarm@lists.cs.columbia.edu
4634W: http://systems.cs.columbia.edu/projects/kvm-arm
4635S: Maintained
4636F: arch/arm/include/uapi/asm/kvm*
4637F: arch/arm/include/asm/kvm*
4638F: arch/arm/kvm/
4639
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004640KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004641M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004642W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004643L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004645F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004646F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004647F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004648
David Howellse9714612010-03-29 23:42:09 +01004649KEYS/KEYRINGS:
4650M: David Howells <dhowells@redhat.com>
4651L: keyrings@linux-nfs.org
4652S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004653F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004654F: include/linux/key.h
4655F: include/linux/key-type.h
4656F: include/keys/
4657F: security/keys/
4658
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004659KEYS-TRUSTED
4660M: David Safford <safford@watson.ibm.com>
4661M: Mimi Zohar <zohar@us.ibm.com>
4662L: linux-security-module@vger.kernel.org
4663L: keyrings@linux-nfs.org
4664S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004665F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004666F: include/keys/trusted-type.h
4667F: security/keys/trusted.c
4668F: security/keys/trusted.h
4669
4670KEYS-ENCRYPTED
4671M: Mimi Zohar <zohar@us.ibm.com>
4672M: David Safford <safford@watson.ibm.com>
4673L: linux-security-module@vger.kernel.org
4674L: keyrings@linux-nfs.org
4675S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004676F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004677F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004678F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004679
Jason Wessel5b778da2010-05-20 21:04:28 -05004680KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004681M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004682W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004683L: kgdb-bugreport@lists.sourceforge.net
4684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004685F: Documentation/DocBook/kgdb.tmpl
4686F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004687F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004688F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004689F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004690F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004691
Pekka Enberg456db8c2008-04-28 22:47:29 +03004692KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004693M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004694M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004695S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004696F: Documentation/kmemcheck.txt
4697F: arch/x86/include/asm/kmemcheck.h
4698F: arch/x86/mm/kmemcheck/
4699F: include/linux/kmemcheck.h
4700F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004701
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004702KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004703M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004704S: Maintained
4705F: Documentation/kmemleak.txt
4706F: include/linux/kmemleak.h
4707F: mm/kmemleak.c
4708F: mm/kmemleak-test.c
4709
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004710KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004711M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4712M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4713M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004714M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: Documentation/kprobes.txt
4717F: include/linux/kprobes.h
4718F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004719
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004720KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004722W: http://miguelojeda.es/auxdisplay.htm
4723W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: Documentation/auxdisplay/ks0108
4726F: drivers/auxdisplay/ks0108.c
4727F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004731S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004732F: Documentation/networking/lapb-module.txt
4733F: include/*/lapb.h
4734F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
4736LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004737M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738L: linux-scsi@vger.kernel.org
4739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: Documentation/scsi/53c700.txt
4741F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Richard Purdie263de9b2006-05-15 09:44:16 -07004743LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004744M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004745M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004746L: linux-leds@vger.kernel.org
4747T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004749F: drivers/leds/
4750F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004751
Jean Delvareb0461a42011-06-15 15:08:46 -07004752LEGACY EEPROM DRIVER
4753M: Jean Delvare <khali@linux-fr.org>
4754S: Maintained
4755F: Documentation/misc-devices/eeprom
4756F: drivers/misc/eeprom/eeprom.c
4757
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760L: legousb-devel@lists.sourceforge.net
4761W: http://legousb.sourceforge.net/
4762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004763F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Michael Krufky055616a2012-10-02 00:56:06 -03004765LG2160 MEDIA DRIVER
4766M: Michael Krufky <mkrufky@linuxtv.org>
4767L: linux-media@vger.kernel.org
4768W: http://linuxtv.org/
4769W: http://github.com/mkrufky
4770Q: http://patchwork.linuxtv.org/project/linux-media/list/
4771T: git git://linuxtv.org/mkrufky/tuners.git
4772S: Maintained
4773F: drivers/media/dvb-frontends/lg2160.*
4774
Michael Krufky6f0e7722012-10-02 00:56:00 -03004775LGDT3305 MEDIA DRIVER
4776M: Michael Krufky <mkrufky@linuxtv.org>
4777L: linux-media@vger.kernel.org
4778W: http://linuxtv.org/
4779W: http://github.com/mkrufky
4780Q: http://patchwork.linuxtv.org/project/linux-media/list/
4781T: git git://linuxtv.org/mkrufky/tuners.git
4782S: Maintained
4783F: drivers/media/dvb-frontends/lgdt3305.*
4784
Rusty Russell568a17f2007-10-25 14:12:24 +10004785LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004787L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004788W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004789S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004790F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004791F: arch/x86/lguest/
4792F: drivers/lguest/
4793F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004794F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004797M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798W: http://www.ibm.com/linux/ltc/projects/ppc
4799S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004800F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004802LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004803M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4804M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004806L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004807Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004808T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004810F: Documentation/powerpc/
4811F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004814M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004816L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004818F: arch/powerpc/platforms/powermac/
4819F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820
Grant Likely77a76362008-07-12 12:11:43 -06004821LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004822M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004823L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004824T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004826F: arch/powerpc/platforms/512x/
4827F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828
4829LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004830M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004833L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004834T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004836F: arch/powerpc/platforms/40x/
4837F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
Grant Likely260c02a2007-10-02 12:15:34 +10004839LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004841W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004842L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004843T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004845F: arch/powerpc/*/*virtex*
4846F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Tom Rinie93adf12005-07-26 12:49:53 -07004848LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Vitaly Bordug <vitb@kernel.crashing.org>
4850M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004851W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004852L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004853S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004854F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004855
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004857M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004858W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004859L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004860S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004861F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004862F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Olof Johanssonab06ff32006-09-06 14:44:54 -05004864LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004865M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004866L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004867S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004868F: arch/powerpc/platforms/pasemi/
4869F: drivers/*/*pasemi*
4870F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004871
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004873M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004874L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875S: Supported
4876
Harry Weia23ce6d2011-02-11 16:52:20 +01004877LIS3LV02D ACCELEROMETER DRIVER
4878M: Eric Piel <eric.piel@tremplin-utc.net>
4879S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004880F: Documentation/misc-devices/lis3lv02d
4881F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004882F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004883
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004884LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004888F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004889F: include/net/llc*
4890F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004891
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004892LM73 HARDWARE MONITOR DRIVER
4893M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4894L: lm-sensors@lm-sensors.org
4895S: Maintained
4896F: drivers/hwmon/lm73.c
4897
Jean Delvare156e2d12011-07-25 21:46:11 +02004898LM78 HARDWARE MONITOR DRIVER
4899M: Jean Delvare <khali@linux-fr.org>
4900L: lm-sensors@lm-sensors.org
4901S: Maintained
4902F: Documentation/hwmon/lm78
4903F: drivers/hwmon/lm78.c
4904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004906M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004907L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: Documentation/hwmon/lm83
4910F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911
4912LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004913M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004914L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004916F: Documentation/hwmon/lm90
4917F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004919LME2510 MEDIA DRIVER
4920M: Malcolm Priestley <tvboxspy@gmail.com>
4921L: linux-media@vger.kernel.org
4922W: http://linuxtv.org/
4923Q: http://patchwork.linuxtv.org/project/linux-media/list/
4924S: Maintained
4925F: drivers/media/usb/dvb-usb-v2/lmedm04*
4926
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004927LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004928M: Peter Zijlstra <peterz@infradead.org>
4929M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004930T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004932F: Documentation/lockdep*.txt
4933F: Documentation/lockstat.txt
4934F: include/linux/lockdep.h
4935F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004936
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004937LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004938M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004939L: linux-ntfs-dev@lists.sourceforge.net
4940W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004942F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004943F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944
Joern Engelef6ada32009-11-20 22:17:12 +01004945LogFS
4946M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304947M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004948L: logfs@logfs.org
4949W: logfs.org
4950S: Maintained
4951F: fs/logfs/
4952
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004953LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304954M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4955M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004956M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004957L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004958L: linux-scsi@vger.kernel.org
4959W: http://www.lsilogic.com/support
4960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004961F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304962F: drivers/scsi/mpt2sas/
4963F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004966M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967L: linux-scsi@vger.kernel.org
4968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004969F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
Guenter Roecke5f5c992010-06-25 11:59:54 -07004971LTC4261 HARDWARE MONITOR DRIVER
4972M: Guenter Roeck <linux@roeck-us.net>
4973L: lm-sensors@lm-sensors.org
4974S: Maintained
4975F: Documentation/hwmon/ltc4261
4976F: drivers/hwmon/ltc4261.c
4977
Mike Frysinger81365c32008-10-29 14:01:12 -07004978LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004979M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004980M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004981M: Cyril Hrubis <chrubis@suse.cz>
4982M: Caspar Zhang <caspar@casparzhang.com>
4983M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004984L: ltp-list@lists.sourceforge.net (subscribers-only)
4985W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004986T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004987T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004988S: Maintained
4989
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004990M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004992L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004993L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4994W: http://www.linux-m32r.org/
4995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004997
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000L: linux-m68k@lists.linux-m68k.org
5001W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005002T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005004F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005005F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
5007M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005008M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005010L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005012F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
5014M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016W: http://www.tazenda.demon.co.uk/phil/linux-hp
5017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005020M88RS2000 MEDIA DRIVER
5021M: Malcolm Priestley <tvboxspy@gmail.com>
5022L: linux-media@vger.kernel.org
5023W: http://linuxtv.org/
5024Q: http://patchwork.linuxtv.org/project/linux-media/list/
5025S: Maintained
5026F: drivers/media/dvb-frontends/m88rs2000*
5027
Alexey Klimov07a092f2012-11-12 02:57:32 -03005028MA901 MASTERKIT USB FM RADIO DRIVER
5029M: Alexey Klimov <klimov.linux@gmail.com>
5030L: linux-media@vger.kernel.org
5031T: git git://linuxtv.org/media_tree.git
5032S: Maintained
5033F: drivers/media/radio/radio-ma901.c
5034
Jiri Benc64a327a2007-05-05 11:47:08 -07005035MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005036M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005037L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005038W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005039T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5040T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005042F: Documentation/networking/mac80211-injection.txt
5043F: include/net/mac80211.h
5044F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005045
Stefano Brivio1036d862007-12-23 04:46:27 +01005046MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005047M: Stefano Brivio <stefano.brivio@polimi.it>
5048M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005049L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005050W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005051T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5052T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005055
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005056MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005058L: netdev@vger.kernel.org
5059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005060F: drivers/net/macvlan.c
5061F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005062
Michael Kerriskfaf16682005-07-31 22:34:47 -07005063MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005064M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005065W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005066L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005067S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005068
stephen hemminger44c14c12012-04-02 12:59:47 +00005069MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5070M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005071M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005072L: netdev@vger.kernel.org
5073S: Maintained
5074F: drivers/net/ethernet/marvell/sk*
5075
Stefano Brivio74cda162007-11-19 20:27:46 +01005076MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005077L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005078S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005079F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005080
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005081MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005082M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005083L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005084S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005085F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005086F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005088MARVELL MVNETA ETHERNET DRIVER
5089M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5090L: netdev@vger.kernel.org
5091S: Maintained
5092F: drivers/net/ethernet/marvell/mvneta.*
5093
Bing Zhaofcad5842011-07-13 13:11:58 -07005094MARVELL MWIFIEX WIRELESS DRIVER
5095M: Bing Zhao <bzhao@marvell.com>
5096L: linux-wireless@vger.kernel.org
5097S: Maintained
5098F: drivers/net/wireless/mwifiex/
5099
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005100MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005101M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005102L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005103S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005104F: drivers/net/wireless/mwl8k.c
5105
Pierre Ossman2a695672009-03-16 19:52:26 +01005106MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005107M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005108S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005109F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005110
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005112L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005113S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005114F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005115F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
Guenter Roeckca462082012-06-01 23:28:23 -07005117MAX16065 HARDWARE MONITOR DRIVER
5118M: Guenter Roeck <linux@roeck-us.net>
5119L: lm-sensors@lm-sensors.org
5120S: Maintained
5121F: Documentation/hwmon/max16065
5122F: drivers/hwmon/max16065.c
5123
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005124MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005125M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005126L: lm-sensors@lm-sensors.org
5127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005128F: Documentation/hwmon/max6650
5129F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005130
Guenter Roecke89ab512013-03-08 08:13:09 -08005131MAX6697 HARDWARE MONITOR DRIVER
5132M: Guenter Roeck <linux@roeck-us.net>
5133L: lm-sensors@lm-sensors.org
5134S: Maintained
5135F: Documentation/hwmon/max6697
5136F: Documentation/devicetree/bindings/i2c/max6697.txt
5137F: drivers/hwmon/max6697.c
5138F: include/linux/platform_data/max6697.h
5139
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005140MAXIRADIO FM RADIO RECEIVER DRIVER
5141M: Hans Verkuil <hverkuil@xs4all.nl>
5142L: linux-media@vger.kernel.org
5143T: git git://linuxtv.org/media_tree.git
5144W: http://linuxtv.org
5145S: Maintained
5146F: drivers/media/radio/radio-maxiradio*
5147
Joe Perches127c49a2009-04-08 08:34:04 -07005148MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005149M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005150P: LinuxTV.org Project
5151L: linux-media@vger.kernel.org
5152W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005153Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005154T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005155S: Maintained
5156F: Documentation/dvb/
5157F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005158F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005159F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005160F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005161F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005162F: include/uapi/linux/dvb/
5163F: include/uapi/linux/videodev2.h
5164F: include/uapi/linux/media.h
5165F: include/uapi/linux/v4l2-*
5166F: include/uapi/linux/meye.h
5167F: include/uapi/linux/ivtv*
5168F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005169
Hans Verkuil6149a932012-11-23 07:21:19 -03005170MEDIAVISION PRO MOVIE STUDIO DRIVER
5171M: Hans Verkuil <hverkuil@xs4all.nl>
5172L: linux-media@vger.kernel.org
5173T: git git://linuxtv.org/media_tree.git
5174W: http://linuxtv.org
5175S: Odd Fixes
5176F: drivers/media/parport/pms*
5177
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005178MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005180L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005181W: http://megaraid.lsilogic.com
5182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005183F: Documentation/scsi/megaraid.txt
5184F: drivers/scsi/megaraid.*
5185F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005186
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005187MELLANOX ETHERNET DRIVER (mlx4_en)
5188M: Amir Vadai <amirv@mellanox.com>
5189L: netdev@vger.kernel.org
5190S: Supported
5191W: http://www.mellanox.com
5192Q: http://patchwork.ozlabs.org/project/netdev/list/
5193F: drivers/net/ethernet/mellanox/mlx4/en_*
5194
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005195MEMORY MANAGEMENT
5196L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005197W: http://www.linux-mm.org
5198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005199F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005200F: include/linux/gfp.h
5201F: include/linux/mmzone.h
5202F: include/linux/memory_hotplug.h
5203F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005204F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005205
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005206MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005207M: Johannes Weiner <hannes@cmpxchg.org>
5208M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005209M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005211L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005212L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005214F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005215F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005216
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005217MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005218M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005220W: http://www.linux-mtd.infradead.org/
5221Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005222T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005224F: drivers/mtd/
5225F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005226F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227
James Hogan12285942012-10-10 12:59:49 +01005228METAG ARCHITECTURE
5229M: James Hogan <james.hogan@imgtec.com>
5230S: Supported
5231F: arch/metag/
5232F: Documentation/metag/
5233F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005234F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005235F: drivers/irqchip/irq-metag.c
5236F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005237F: drivers/tty/metag_da.c
5238F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005239
Michal Simekc6375b02009-03-27 14:25:52 +01005240MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005241M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005242L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005243W: http://www.monstr.eu/fdt/
5244T: git git://git.monstr.eu/linux-2.6-microblaze.git
5245S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005246F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
5248MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005249M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005251F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252
5253MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005256W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005257T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005258Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005260F: Documentation/mips/
5261F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
Hans Verkuil08b76202012-11-23 07:15:42 -03005263MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5264M: Hans Verkuil <hverkuil@xs4all.nl>
5265L: linux-media@vger.kernel.org
5266T: git git://linuxtv.org/media_tree.git
5267W: http://linuxtv.org
5268S: Odd Fixes
5269F: drivers/media/radio/radio-miropcm20*
5270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005272M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005274F: include/linux/module.h
5275F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
5277MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005279S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005280F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005281F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005282F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
Jiri Slabyb9705b62008-04-30 00:53:48 -07005284MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005287F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005288F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005289
Alexey Klimov889b2f82012-11-16 17:43:59 -03005290MR800 AVERMEDIA USB FM RADIO DRIVER
5291M: Alexey Klimov <klimov.linux@gmail.com>
5292L: linux-media@vger.kernel.org
5293T: git git://linuxtv.org/media_tree.git
5294S: Maintained
5295F: drivers/media/radio/radio-mr800.c
5296
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005297MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005298M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005299L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005301F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005302
Anisse Astier0f1006b2009-12-17 11:28:49 +01005303MSI WMI SUPPORT
5304M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005305L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005306S: Supported
5307F: drivers/platform/x86/msi-wmi.c
5308
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005309MT9M032 SENSOR DRIVER
5310M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5311L: linux-media@vger.kernel.org
5312T: git git://linuxtv.org/media_tree.git
5313S: Maintained
5314F: drivers/media/i2c/mt9m032.c
5315F: include/media/mt9m032.h
5316
5317MT9P031 SENSOR DRIVER
5318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5319L: linux-media@vger.kernel.org
5320T: git git://linuxtv.org/media_tree.git
5321S: Maintained
5322F: drivers/media/i2c/mt9p031.c
5323F: include/media/mt9p031.h
5324
5325MT9T001 SENSOR DRIVER
5326M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5327L: linux-media@vger.kernel.org
5328T: git git://linuxtv.org/media_tree.git
5329S: Maintained
5330F: drivers/media/i2c/mt9t001.c
5331F: include/media/mt9t001.h
5332
5333MT9V032 SENSOR DRIVER
5334M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5335L: linux-media@vger.kernel.org
5336T: git git://linuxtv.org/media_tree.git
5337S: Maintained
5338F: drivers/media/i2c/mt9v032.c
5339F: include/media/mt9v032.h
5340
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005341MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005342M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005343T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005344S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005345F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005346
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005347MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005348M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005349L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005350T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005352F: drivers/mmc/
5353F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005354F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005355
David Brownell15a05802007-08-08 09:12:54 -07005356MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005357S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005358F: drivers/mmc/host/mmc_spi.c
5359F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005360
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005362M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005364F: Documentation/sound/oss/MultiSound
5365F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Jiri Slabyd7354102006-12-08 02:38:35 -08005367MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005368S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005369F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005370F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005371
Felipe Balbi550a7372008-07-24 12:27:36 +03005372MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005373M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005374L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005375T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005378
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005379MXL5007T MEDIA DRIVER
5380M: Michael Krufky <mkrufky@linuxtv.org>
5381L: linux-media@vger.kernel.org
5382W: http://linuxtv.org/
5383W: http://github.com/mkrufky
5384Q: http://patchwork.linuxtv.org/project/linux-media/list/
5385T: git git://linuxtv.org/mkrufky/tuners.git
5386S: Maintained
5387F: drivers/media/tuners/mxl5007t.*
5388
Brice Goglin2d3cf582008-05-17 12:45:36 +02005389MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005390M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005391L: netdev@vger.kernel.org
5392W: http://www.myri.com/scs/download-Myri10GE.html
5393S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005394F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005395
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005397S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005398F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
Daniel Mack23dc05a2011-05-18 11:28:38 +02005400NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5401M: Daniel Mack <zonque@gmail.com>
5402S: Maintained
5403L: alsa-devel@alsa-project.org
5404W: http://www.native-instruments.com
5405F: sound/usb/caiaq/
5406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005408M: Petr Vandrovec <petr@vandrovec.name>
5409S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005410F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
5412NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005413M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414L: linux-scsi@vger.kernel.org
5415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005416F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005418NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005419M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005420L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005421W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005422S: Supported
5423F: drivers/infiniband/hw/nes/
5424
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005425NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005426M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005427L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005429F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005430
Jon Masonb2f5a052010-07-15 08:47:27 +00005431NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005432M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005433L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005435F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005436F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005437F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005438
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440P: Harald Welte
5441P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005442M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005443M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005444L: netfilter-devel@vger.kernel.org
5445L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005446L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447W: http://www.netfilter.org/
5448W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005449T: git git://1984.lsi.us.es/nf
5450T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005452F: include/linux/netfilter*
5453F: include/linux/netfilter/
5454F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005455F: include/uapi/linux/netfilter*
5456F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005457F: net/*/netfilter.c
5458F: net/*/netfilter/
5459F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Paul Moore4cc67732006-09-25 15:57:13 -07005461NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005462M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005463W: http://netlabel.sf.net
5464L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005465S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005466F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005467F: include/net/netlabel.h
5468F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005469
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005473W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005475F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005476F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005477F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005479NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005480M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005482L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005483F: Documentation/blockdev/nbd.txt
5484F: drivers/block/nbd.c
5485F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005486F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Neil Horman6e436502009-10-05 03:56:55 +00005488NETWORK DROP MONITOR
5489M: Neil Horman <nhorman@tuxdriver.com>
5490L: netdev@vger.kernel.org
5491S: Maintained
5492W: https://fedorahosted.org/dropwatch/
5493F: net/core/drop_monitor.c
5494
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005496M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005497L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005498W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005499Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005500T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5501T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005503F: net/
5504F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005505F: include/linux/in.h
5506F: include/linux/net.h
5507F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005508F: include/uapi/linux/in.h
5509F: include/uapi/linux/net.h
5510F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
5512NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: "David S. Miller" <davem@davemloft.net>
5514M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005515M: James Morris <jmorris@namei.org>
5516M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5517M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005518L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005519T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005521F: net/ipv4/
5522F: net/ipv6/
5523F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005524F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
David S. Miller73b76562012-10-16 14:08:40 -04005526NETWORKING [IPSEC]
5527M: Steffen Klassert <steffen.klassert@secunet.com>
5528M: Herbert Xu <herbert@gondor.apana.org.au>
5529M: "David S. Miller" <davem@davemloft.net>
5530L: netdev@vger.kernel.org
5531T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5532S: Maintained
5533F: net/xfrm/
5534F: net/key/
5535F: net/ipv4/xfrm*
5536F: net/ipv6/xfrm*
5537F: include/uapi/linux/xfrm.h
5538F: include/net/xfrm.h
5539
James Morris10e2ff12007-08-25 14:41:28 -07005540NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005541M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005542L: netdev@vger.kernel.org
5543S: Maintained
5544
John W. Linville29f8f632006-01-18 14:52:48 -08005545NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005546M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005547L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005548Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005549T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005550S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005551F: net/mac80211/
5552F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005553F: net/wireless/
5554F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005555F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005556F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005557F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005558F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005559
Joe Perches788873a2009-04-16 09:38:45 +00005560NETWORKING DRIVERS
5561L: netdev@vger.kernel.org
5562W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005563Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005564T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5565T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005566S: Odd Fixes
5567F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005568F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005569F: include/linux/netdevice.h
5570F: include/linux/arcdevice.h
5571F: include/linux/etherdevice.h
5572F: include/linux/fcdevice.h
5573F: include/linux/fddidevice.h
5574F: include/linux/hippidevice.h
5575F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005576F: include/uapi/linux/if_*
5577F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005578
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005579NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005580M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005581M: Sony Chacko <sony.chacko@qlogic.com>
5582M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005583L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005584W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005585S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005586F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005587
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005588NFC SUBSYSTEM
5589M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5590M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5591M: Samuel Ortiz <sameo@linux.intel.com>
5592L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005593L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005594S: Maintained
5595F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005596F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005597F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005598F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005599F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005601NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005602M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005603L: linux-nfs@vger.kernel.org
5604W: http://client.linux-nfs.org
5605T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005607F: fs/lockd/
5608F: fs/nfs/
5609F: fs/nfs_common/
5610F: net/sunrpc/
5611F: include/linux/lockd/
5612F: include/linux/nfs*
5613F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005614F: include/uapi/linux/nfs*
5615F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005617NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005618M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005619L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005620W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005621T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005623F: Documentation/filesystems/nilfs2.txt
5624F: fs/nilfs2/
5625F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005628M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: Documentation/scsi/NinjaSCSI.txt
5632F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
5634NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: GOTO Masanori <gotom@debian.or.jp>
5636M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005639F: Documentation/scsi/NinjaSCSI.txt
5640F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
Jon Masonfce8a7b2012-11-16 19:27:12 -07005642NTB DRIVER
5643M: Jon Mason <jon.mason@intel.com>
5644S: Supported
5645F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005646F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005647F: include/linux/ntb.h
5648
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005650M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005652W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005653T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005654S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005655F: Documentation/filesystems/ntfs.txt
5656F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005658NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005659M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005660L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/video/riva/
5663F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
Matthew Wilcox79461682012-11-10 08:54:53 -05005665NVM EXPRESS DRIVER
5666M: Matthew Wilcox <willy@linux.intel.com>
5667L: linux-nvme@lists.infradead.org
5668T: git git://git.infradead.org/users/willy/linux-nvme.git
5669S: Supported
5670F: drivers/block/nvme.c
5671F: include/linux/nvme.h
5672
Tony Lindgrenf5525782009-05-28 13:23:53 -07005673OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005674M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005675L: linux-omap@vger.kernel.org
5676W: http://www.muru.com/linux/omap/
5677W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005678Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005679T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005680S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005681F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005682F: drivers/i2c/busses/i2c-omap.c
5683F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005684
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005685OMAP DEVICE TREE SUPPORT
5686M: Benoît Cousson <b-cousson@ti.com>
5687M: Tony Lindgren <tony@atomide.com>
5688L: linux-omap@vger.kernel.org
5689L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5690S: Maintained
5691F: arch/arm/boot/dts/*omap*
5692F: arch/arm/boot/dts/*am3*
5693
Tony Lindgrenf5525782009-05-28 13:23:53 -07005694OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005695M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005696L: linux-omap@vger.kernel.org
5697S: Maintained
5698F: arch/arm/*omap*/*clock*
5699
5700OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005701M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005702L: linux-omap@vger.kernel.org
5703S: Maintained
5704F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005705F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005706
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005707OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5708M: Rajendra Nayak <rnayak@ti.com>
5709M: Paul Walmsley <paul@pwsan.com>
5710L: linux-omap@vger.kernel.org
5711S: Maintained
5712F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5713F: arch/arm/mach-omap2/powerdomain44xx.c
5714F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5715F: arch/arm/mach-omap2/clockdomain44xx.c
5716
Tony Lindgrenf5525782009-05-28 13:23:53 -07005717OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005718M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005719M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005720L: alsa-devel@alsa-project.org (subscribers-only)
5721L: linux-omap@vger.kernel.org
5722S: Maintained
5723F: sound/soc/omap/
5724
5725OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005726M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005727L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005728L: linux-omap@vger.kernel.org
5729S: Maintained
5730F: drivers/video/omap/
5731
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005732OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005733M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005734L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005735L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005736S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005737F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005738F: Documentation/arm/OMAP/DSS
5739
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005740OMAP HARDWARE SPINLOCK SUPPORT
5741M: Ohad Ben-Cohen <ohad@wizery.com>
5742L: linux-omap@vger.kernel.org
5743S: Maintained
5744F: drivers/hwspinlock/omap_hwspinlock.c
5745F: arch/arm/mach-omap2/hwspinlock.c
5746
Tony Lindgrenf5525782009-05-28 13:23:53 -07005747OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005748M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005749L: linux-omap@vger.kernel.org
5750S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005751F: drivers/mmc/host/omap.c
5752
5753OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305754M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305755L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005756L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305757S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005758F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005759
5760OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005761M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005762S: Maintained
5763F: drivers/char/hw_random/omap-rng.c
5764
Paul Walmsleyf400c822010-12-06 19:08:54 -07005765OMAP HWMOD SUPPORT
5766M: Benoît Cousson <b-cousson@ti.com>
5767M: Paul Walmsley <paul@pwsan.com>
5768L: linux-omap@vger.kernel.org
5769S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005770F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005771
5772OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5773M: Benoît Cousson <b-cousson@ti.com>
5774L: linux-omap@vger.kernel.org
5775S: Maintained
5776F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5777
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005778OMAP IMAGE SIGNAL PROCESSOR (ISP)
5779M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5780L: linux-media@vger.kernel.org
5781S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005782F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005783
Tony Lindgrenf5525782009-05-28 13:23:53 -07005784OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005785M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786L: linux-usb@vger.kernel.org
5787L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005788T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005789S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005790F: drivers/usb/*/*omap*
5791F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005792
Kevin Hilman6d994712012-07-16 10:05:07 -07005793OMAP GPIO DRIVER
5794M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005795M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005796L: linux-omap@vger.kernel.org
5797S: Maintained
5798F: drivers/gpio/gpio-omap.c
5799
Bob Copeland0ad122d2008-07-25 19:45:18 -07005800OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005802L: linux-karma-devel@lists.sourceforge.net
5803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005804F: Documentation/filesystems/omfs.txt
5805F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005806
Harald Weltec1986ee2005-11-13 16:06:29 -08005807OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005810F: drivers/char/pcmcia/cm4000_cs.c
5811F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005812F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005813
Harald Welte77c44ab2005-11-13 16:06:26 -08005814OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005815M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005818
Jonathan Corbet77d51402007-03-22 19:44:17 -03005819OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005820M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005821L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005822T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005823S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005824F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005825
Thomas Gleixner431bca72007-05-02 09:31:35 +02005826ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005828L: linux-mtd@lists.infradead.org
5829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005830F: drivers/mtd/onenand/
5831F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005834M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835L: osst-users@lists.sourceforge.net
5836L: linux-scsi@vger.kernel.org
5837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005838F: drivers/scsi/osst*
5839F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005841OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005842M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005843L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005845F: Documentation/i2c/busses/i2c-ocores
5846F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005847
Grant Likely860c44c2009-10-26 16:49:49 -07005848OPEN FIRMWARE AND FLATTENED DEVICE TREE
5849M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005850M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005851L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005852W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005853T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005854S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005855F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005856F: drivers/of
5857F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005858F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005859K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005860K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005861
Jonas Bonn19f9d392011-06-04 22:00:38 +03005862OPENRISC ARCHITECTURE
5863M: Jonas Bonn <jonas@southpole.se>
5864W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005865L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005866S: Maintained
5867T: git git://openrisc.net/~jonas/linux
5868F: arch/openrisc
5869
Jesse Grossccb13522011-10-25 19:26:31 -07005870OPENVSWITCH
5871M: Jesse Gross <jesse@nicira.com>
5872L: dev@openvswitch.org
5873W: http://openvswitch.org
5874T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5875S: Maintained
5876F: net/openvswitch/
5877
Clemens Ladischaf399172011-01-10 16:32:54 +01005878OPL4 DRIVER
5879M: Clemens Ladisch <clemens@ladisch.de>
5880L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5881T: git git://git.alsa-project.org/alsa-kernel.git
5882S: Maintained
5883F: sound/drivers/opl4/
5884
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005886M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887L: oprofile-list@lists.sf.net
5888S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005889F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005890F: arch/*/oprofile/
5891F: drivers/oprofile/
5892F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005894ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005895M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005896M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005897L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5898W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005899T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005901F: Documentation/filesystems/ocfs2.txt
5902F: Documentation/filesystems/dlmfs.txt
5903F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005904
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005906L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005907W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005908W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005909S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005910F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005912OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005913M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005914M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005915L: osd-dev@open-osd.org
5916W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005917T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005918S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005919F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005920F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005921F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005922
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005923P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005924M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005925L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005926W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005928F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005929
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005930PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005932L: netdev@vger.kernel.org
5933S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005934F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005935
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005936PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005938L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005940F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005941
Steffen Klassert48fc2672010-08-13 10:10:46 -04005942PADATA PARALLEL EXECUTION MECHANISM
5943M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005944L: linux-crypto@vger.kernel.org
5945S: Maintained
5946F: kernel/padata.c
5947F: include/linux/padata.h
5948F: Documentation/padata.txt
5949
Harald Welte709ee532008-09-23 17:46:57 +02005950PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005951M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005952L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005954F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005955
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005956PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005957M: David Howells <dhowells@redhat.com>
5958M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005959L: linux-am33-list@redhat.com (moderated for non-subscribers)
5960W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: Documentation/mn10300/
5963F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005966L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005967S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005968F: drivers/parport/
5969F: include/linux/parport*.h
5970F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005971F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005973PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005974M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Chris Wright <chrisw@sous-sol.org>
5976M: Alok Kataria <akataria@vmware.com>
5977M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005978L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005980F: Documentation/ia64/paravirt_ops.txt
5981F: arch/*/kernel/paravirt*
5982F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005983
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005985M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005986L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987W: http://www.torque.net/linux-pp.html
5988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005989F: Documentation/blockdev/paride.txt
5990F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
5992PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005993M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005994M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005995L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005997Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005998T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: arch/parisc/
6001F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
Jim Cromie1662d322006-10-06 00:43:59 -07006003PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006005L: lm-sensors@lm-sensors.org
6006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: Documentation/hwmon/pc87360
6008F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006009
6010PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006011M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006014
Jean Delvare1ad107f2010-08-14 21:09:00 +02006015PC87427 HARDWARE MONITORING DRIVER
6016M: Jean Delvare <khali@linux-fr.org>
6017L: lm-sensors@lm-sensors.org
6018S: Maintained
6019F: Documentation/hwmon/pc87427
6020F: drivers/hwmon/pc87427.c
6021
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006022PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006023M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006024S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006025F: drivers/leds/leds-pca9532.c
6026F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006027
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006028PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006029M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006030L: linux-i2c@vger.kernel.org
6031S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006032F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006033
Khalid Aziz3971dae2012-04-12 12:49:13 -07006034PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006035M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006036S: Maintained
6037F: drivers/firmware/pcdp.*
6038
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006039PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006040M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006041L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006043F: Documentation/PCI/pci-error-recovery.txt
6044F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006045
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006047M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006048L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006049Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006050T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006052F: Documentation/PCI/
6053F: drivers/pci/
6054F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006057P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006058L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006059W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006060T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006062F: Documentation/pcmcia/
6063F: drivers/pcmcia/
6064F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065
6066PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006067M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006068L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006070F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
Steffen Klassert48fc2672010-08-13 10:10:46 -04006072PCRYPT PARALLEL CRYPTO ENGINE
6073M: Steffen Klassert <steffen.klassert@secunet.com>
6074L: linux-crypto@vger.kernel.org
6075S: Maintained
6076F: crypto/pcrypt.c
6077F: include/crypto/pcrypt.h
6078
Tejun Heoe72df0b2010-12-10 17:02:49 +01006079PER-CPU MEMORY ALLOCATOR
6080M: Tejun Heo <tj@kernel.org>
6081M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006082T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6083S: Maintained
6084F: include/linux/percpu*.h
6085F: mm/percpu*.c
6086F: arch/*/include/asm/percpu.h
6087
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006088PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006089M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006091F: include/linux/delayacct.h
6092F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006093
Ingo Molnar57c0c152009-09-21 12:20:38 +02006094PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006095M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6096M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006097M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006098M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006099T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006100S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006101F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006102F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006103F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006104F: arch/*/kernel/perf_event*.c
6105F: arch/*/kernel/*/perf_event*.c
6106F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006107F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006108F: arch/*/kernel/perf_callchain.c
6109F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006110
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006111PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006112M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006113L: linux-abi-devel@lists.sourceforge.net
6114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006115F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006116F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006117
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006118PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006119M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006120S: Supported
6121F: Documentation/networking/phonet.txt
6122F: include/linux/phonet.h
6123F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006124F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006125F: net/phonet/
6126
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129L: linux-mtd@lists.infradead.org
6130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006131F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
Bruno Prémontefdbb102012-07-30 21:39:03 +02006133PICOLCD HID DRIVER
6134M: Bruno Prémont <bonbons@linux-vserver.org>
6135L: linux-input@vger.kernel.org
6136S: Maintained
6137F: drivers/hid/hid-picolcd*
6138
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006139PICOXCELL SUPPORT
6140M: Jamie Iles <jamie@jamieiles.com>
6141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6142T: git git://github.com/jamieiles/linux-2.6-ji.git
6143S: Supported
6144F: arch/arm/mach-picoxcell
6145F: drivers/*/picoxcell*
6146F: drivers/*/*/picoxcell*
6147
Linus Walleij2744e8a2011-05-02 20:50:54 +02006148PIN CONTROL SUBSYSTEM
6149M: Linus Walleij <linus.walleij@linaro.org>
6150S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006151F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006152F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006153
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006154PIN CONTROLLER - ATMEL AT91
6155M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6156L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6157S: Maintained
6158F: drivers/pinctrl/pinctrl-at91.c
6159
Viresh Kumardeda8282012-03-28 22:27:07 +05306160PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006161M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306162L: spear-devel@list.st.com
6163L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6164W: http://www.st.com/spear
6165S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006166F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306167
Peter Osterlund249a6772005-09-27 21:45:30 -07006168PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006169M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006171F: drivers/block/pktcdvd.c
6172F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006173F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006174
GuanXuetaob31d8272011-01-16 00:35:49 +08006175PKUNITY SOC DRIVERS
6176M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6177W: http://mprc.pku.edu.cn/~guanxuetao/linux
6178S: Maintained
6179T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6180F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006181F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006182F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006183F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006184
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006185PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006186M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006187L: lm-sensors@lm-sensors.org
6188W: http://www.lm-sensors.org/
6189W: http://www.roeck-us.net/linux/drivers/
6190T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6191S: Maintained
6192F: Documentation/hwmon/pmbus
6193F: drivers/hwmon/pmbus/
6194F: include/linux/i2c/pmbus.h
6195
Anil Ravindranath89a36812009-08-25 17:35:18 -07006196PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006197M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006198L: linux-scsi@vger.kernel.org
6199W: http://www.pmc-sierra.com/
6200S: Supported
6201F: drivers/scsi/pmcraid.*
6202
jack wangdbf9bfe2009-10-14 16:19:21 +08006203PMC SIERRA PM8001 DRIVER
6204M: jack_wang@usish.com
6205M: lindar_liu@usish.com
6206L: linux-scsi@vger.kernel.org
6207S: Supported
6208F: drivers/scsi/pm8001/
6209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006211M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006212T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006214F: fs/timerfd.c
6215F: include/linux/timer*
6216F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
Anton Vorontsov3be86142007-07-15 04:43:36 +04006218POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006219M: Anton Vorontsov <cbou@mail.ru>
6220M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006221T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006223F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006224F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006225
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006227M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006228M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006230F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231
Vitaly Wool999445d2007-01-04 13:07:03 +01006232PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006233M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006234L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006236F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006237
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006239M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240L: linux-ppp@vger.kernel.org
6241S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006242F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243
6244PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006245M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006248F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
6250PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006251M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006253F: drivers/net/ppp/pppoe.c
6254F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
James Chapmana6d23702007-06-27 15:53:17 -07006256PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006257M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006258S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006259F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006260F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006261F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006262
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006263PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006264M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006265W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6266L: linuxpps@ml.enneenne.com (subscribers-only)
6267S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006268F: Documentation/pps/
6269F: drivers/pps/
6270F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006271
Harry Wei71a6d0a2011-05-11 15:13:33 -07006272PPTP DRIVER
6273M: Dmitry Kozlov <xeb@mail.ru>
6274L: netdev@vger.kernel.org
6275S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006276F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006277W: http://sourceforge.net/projects/accel-pptp
6278
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006280M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281L: kpreempt-tech@lists.sourceforge.net
6282W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006284F: Documentation/preempt-locking.txt
6285F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286
6287PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006288M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006289L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006290W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006291S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006292F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006294PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006295M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006296L: linux-ide@vger.kernel.org
6297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006298F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006299
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006300PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006301M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006302L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006303L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006304S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006305F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006306
Geoff Levandf58a9d12006-11-23 00:46:51 +01006307PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006308M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006309L: linuxppc-dev@lists.ozlabs.org
6310L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: arch/powerpc/boot/ps3*
6313F: arch/powerpc/include/asm/lv1call.h
6314F: arch/powerpc/include/asm/ps3*.h
6315F: arch/powerpc/platforms/ps3/
6316F: drivers/*/ps3*
6317F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006318F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006319F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006320F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006321
Jim Pariscffb4add2009-01-06 11:32:10 +00006322PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006323M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006324L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006325S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006326F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006327
Anton Vorontsov8defe592012-08-03 18:07:20 -07006328PSTORE FILESYSTEM
6329M: Anton Vorontsov <cbouatmailru@gmail.com>
6330M: Colin Cross <ccross@android.com>
6331M: Kees Cook <keescook@chromium.org>
6332M: Tony Luck <tony.luck@intel.com>
6333S: Maintained
6334T: git git://git.infradead.org/users/cbou/linux-pstore.git
6335F: fs/pstore/
6336F: include/linux/pstore*
6337F: drivers/firmware/efivars.c
6338F: drivers/acpi/apei/erst.c
6339
Richard Cochran7fbc4152012-03-10 01:55:53 +00006340PTP HARDWARE CLOCK SUPPORT
6341M: Richard Cochran <richardcochran@gmail.com>
6342S: Maintained
6343W: http://linuxptp.sourceforge.net/
6344F: Documentation/ABI/testing/sysfs-ptp
6345F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006346F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006347F: drivers/net/phy/dp83640*
6348F: drivers/ptp/*
6349F: include/linux/ptp_cl*
6350
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006351PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Roland McGrath <roland@redhat.com>
6353M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006354S: Maintained
6355F: include/asm-generic/syscall.h
6356F: include/linux/ptrace.h
6357F: include/linux/regset.h
6358F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006359F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006360F: kernel/ptrace.c
6361
Michael Krufky83202042006-07-03 00:24:18 -07006362PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006363M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006364L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006365L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006366W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006367T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006370F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006371
Hans de Goede39532e62012-11-04 17:05:59 -03006372PWC WEBCAM DRIVER
6373M: Hans de Goede <hdegoede@redhat.com>
6374L: linux-media@vger.kernel.org
6375T: git git://linuxtv.org/media_tree.git
6376S: Maintained
6377F: drivers/media/usb/pwc/*
6378
Thierry Reding200efed2012-03-27 13:16:18 +02006379PWM SUBSYSTEM
6380M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006381L: linux-kernel@vger.kernel.org
6382S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006383W: http://gitorious.org/linux-pwm
6384T: git git://gitorious.org/linux-pwm/linux-pwm.git
6385F: Documentation/pwm.txt
6386F: Documentation/devicetree/bindings/pwm/
6387F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006388F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006389F: drivers/video/backlight/pwm_bl.c
6390F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006391
Eric Miao30ec2612008-06-12 15:21:41 -07006392PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006393M: Eric Miao <eric.y.miao@gmail.com>
6394M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006395M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006396L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006397T: git git://github.com/hzhuang1/linux.git
6398T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006400F: arch/arm/mach-pxa/
6401F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006402F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/usb/gadget/pxa2*
6404F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006405F: sound/arm/pxa*
6406F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006408MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006409M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006410M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006411L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006412T: git git://github.com/hzhuang1/linux.git
6413T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006414S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006415F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006416
Pierre Ossman272f1332007-05-14 21:25:26 +02006417PXA MMCI DRIVER
6418S: Orphan
6419
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006420PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006421M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006422L: rtc-linux@googlegroups.com
6423S: Maintained
6424
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006425QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006426M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006427L: linux-rdma@vger.kernel.org
6428S: Supported
6429F: drivers/infiniband/hw/qib/
6430
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006431QLOGIC QLA1280 SCSI DRIVER
6432M: Michael Reed <mdr@sgi.com>
6433L: linux-scsi@vger.kernel.org
6434S: Maintained
6435F: drivers/scsi/qla1280.[ch]
6436
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006438M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006439M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440L: linux-scsi@vger.kernel.org
6441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006442F: Documentation/scsi/LICENSE.qla2xxx
6443F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Ravi Anand883c98f2010-04-28 11:45:49 +05306445QLOGIC QLA4XXX iSCSI DRIVER
6446M: Ravi Anand <ravi.anand@qlogic.com>
6447M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6448M: iscsi-driver@qlogic.com
6449L: linux-scsi@vger.kernel.org
6450S: Supported
6451F: drivers/scsi/qla4xxx/
6452
Ron Mercer5a4faa82006-07-25 00:40:21 -07006453QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006454M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07006456M: linux-driver@qlogic.com
6457L: netdev@vger.kernel.org
6458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006459F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006460F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07006461
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006462QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006463M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6464M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006465M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006466M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006467M: linux-driver@qlogic.com
6468L: netdev@vger.kernel.org
6469S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006470F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006471
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006472QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006473M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006475M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006476L: netdev@vger.kernel.org
6477S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006478F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006479
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482W: http://www.alarsen.net/linux/qnx4fs/
6483S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006484F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006485F: include/uapi/linux/qnx4_fs.h
6486F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
Antti Palosaari91952bc2012-10-01 12:28:46 -03006488QT1010 MEDIA DRIVER
6489M: Antti Palosaari <crope@iki.fi>
6490L: linux-media@vger.kernel.org
6491W: http://linuxtv.org/
6492W: http://palosaari.fi/linux/
6493Q: http://patchwork.linuxtv.org/project/linux-media/list/
6494T: git git://linuxtv.org/anttip/media_tree.git
6495S: Maintained
6496F: drivers/media/tuners/qt1010*
6497
Richard Kuo4f4567c2011-10-31 18:56:38 -05006498QUALCOMM HEXAGON ARCHITECTURE
6499M: Richard Kuo <rkuo@codeaurora.org>
6500L: linux-hexagon@vger.kernel.org
6501S: Supported
6502F: arch/hexagon/
6503
Hans Verkuil35e35402012-11-23 07:02:29 -03006504QUICKCAM PARALLEL PORT WEBCAMS
6505M: Hans Verkuil <hverkuil@xs4all.nl>
6506L: linux-media@vger.kernel.org
6507T: git git://linuxtv.org/media_tree.git
6508W: http://linuxtv.org
6509S: Odd Fixes
6510F: drivers/media/parport/*-qcam*
6511
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006512RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006513M: Yehuda Sadeh <yehuda@inktank.com>
6514M: Sage Weil <sage@inktank.com>
6515M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006516M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006517W: http://ceph.com/
6518T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006519S: Supported
6520F: drivers/block/rbd.c
6521F: drivers/block/rbd_types.h
6522
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006524M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006525L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006527F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006528F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529
Hans de Goedec6c9b342012-11-04 17:03:58 -03006530RADIOSHARK RADIO DRIVER
6531M: Hans de Goede <hdegoede@redhat.com>
6532L: linux-media@vger.kernel.org
6533T: git git://linuxtv.org/media_tree.git
6534S: Maintained
6535F: drivers/media/radio/radio-shark.c
6536
6537RADIOSHARK2 RADIO DRIVER
6538M: Hans de Goede <hdegoede@redhat.com>
6539L: linux-media@vger.kernel.org
6540T: git git://linuxtv.org/media_tree.git
6541S: Maintained
6542F: drivers/media/radio/radio-shark2.c
6543F: drivers/media/radio/radio-tea5777.c
6544
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006546M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006547L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006549F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
Randy Dunlape7839f22008-10-12 16:11:45 -07006551RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006552P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006553M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006554M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006555M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006556L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006557L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006558W: http://rt2x00.serialmonkey.com/
6559S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006560T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006561F: drivers/net/wireless/rt2x00/
6562
Nick Piggin9db55792008-02-08 04:19:49 -08006563RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006564M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006566F: Documentation/blockdev/ramdisk.txt
6567F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006568
Matt Mackall9e95ce22005-04-16 15:25:56 -07006569RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006570M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006572F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006573
Matt Porter394b7012005-11-07 01:00:15 -08006574RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006575M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006576M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006578F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006580RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006581L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006582S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006583F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006584
6585RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006586M: Josh Triplett <josh@freedesktop.org>
6587M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006588S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006589T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006590F: Documentation/RCU/torture.txt
6591F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006592
Florian Fainellic1f766b2008-02-06 22:39:44 +01006593RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006594M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006595S: Maintained
6596
Florian Fainellidb17f392007-12-19 11:30:30 +01006597RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006598M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006599L: netdev@vger.kernel.org
6600S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006601F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006602
Andy Grovera09ed662009-02-24 15:30:41 +00006603RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006604M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006605L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006607F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006608
Josh Triplett595182b2006-10-04 02:17:21 -07006609READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006610M: Dipankar Sarma <dipankar@in.ibm.com>
6611M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006612W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006613S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006614T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006615F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006616X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006617F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006618F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006619X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006620
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006621REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006622M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006623L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006624Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: Documentation/rtc.txt
6627F: drivers/rtc/
6628F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006629F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006630
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006632L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006634F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635
Mark Brownb83a3132011-05-11 19:59:58 +02006636REGISTER MAP ABSTRACTION
6637M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6638T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6639S: Supported
6640F: drivers/base/regmap/
6641F: include/linux/regmap.h
6642
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006643REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6644M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006645T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006646S: Maintained
6647F: drivers/remoteproc/
6648F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006649F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006650
Ivo van Doorne08976452008-04-12 19:23:55 +02006651RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006652M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006653L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006654W: http://wireless.kernel.org/
6655T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6656T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006657S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006658F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006659F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006660
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006661RICOH SMARTMEDIA/XD DRIVER
6662M: Maxim Levitsky <maximlevitsky@gmail.com>
6663S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006664F: drivers/mtd/nand/r852.c
6665F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006666
Maxim Levitsky92634122011-03-25 01:56:59 -07006667RICOH R5C592 MEMORYSTICK DRIVER
6668M: Maxim Levitsky <maximlevitsky@gmail.com>
6669S: Maintained
6670F: drivers/memstick/host/r592.*
6671
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672ROCKETPORT DRIVER
6673P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674W: http://www.comtrol.com
6675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006677F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
6679ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006680M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006682W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006684F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006685F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006686F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687
Antti Palosaari91952bc2012-10-01 12:28:46 -03006688RTL2830 MEDIA DRIVER
6689M: Antti Palosaari <crope@iki.fi>
6690L: linux-media@vger.kernel.org
6691W: http://linuxtv.org/
6692W: http://palosaari.fi/linux/
6693Q: http://patchwork.linuxtv.org/project/linux-media/list/
6694T: git git://linuxtv.org/anttip/media_tree.git
6695S: Maintained
6696F: drivers/media/dvb-frontends/rtl2830*
6697
Larry Finger59840482008-11-12 17:13:09 -06006698RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006700L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006701W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006702T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006703S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006704F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006705
Larry Finger59840482008-11-12 17:13:09 -06006706RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006707M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006708M: Hin-Tak Leung <htl10@users.sourceforge.net>
6709M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006710L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006711W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006712T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006713S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006714F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006715
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006716RTL8192CE WIRELESS DRIVER
6717M: Larry Finger <Larry.Finger@lwfinger.net>
6718M: Chaoming Li <chaoming_li@realsil.com.cn>
6719L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006720W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006721T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6722S: Maintained
6723F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006724F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006725
6726S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006727M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006728L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006730F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006731
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732S390
Joe Perches8b58be82009-07-29 15:04:30 -07006733M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6734M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006736L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006737W: http://www.ibm.com/developerworks/linux/linux390/
6738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006739F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006740F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006741F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006742F: Documentation/s390/
6743F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006744
6745S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006746M: Ursula Braun <ursula.braun@de.ibm.com>
6747M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006748M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006749L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006750W: http://www.ibm.com/developerworks/linux/linux390/
6751S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006752F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006753
Felix Beckfeed9b62009-03-26 15:24:23 +01006754S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006755M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006756M: linux390@de.ibm.com
6757L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006758W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006759S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006760F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006761
Heiko Carstens5238da42006-02-11 17:56:01 -08006762S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006763M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006764M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006765L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006766W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006768F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769
Ursula Braundd96df22007-09-19 13:09:02 +02006770S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006771M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006772M: linux390@de.ibm.com
6773L: linux-s390@vger.kernel.org
6774W: http://www.ibm.com/developerworks/linux/linux390/
6775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006776F: drivers/s390/net/*iucv*
6777F: include/net/iucv/
6778F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006779
Ben Dooks4dde7f72008-06-30 22:40:38 +01006780S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006781M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006783S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006784F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006785
Hans Verkuil1f15a222012-11-23 07:45:29 -03006786SAA6588 RDS RECEIVER DRIVER
6787M: Hans Verkuil <hverkuil@xs4all.nl>
6788L: linux-media@vger.kernel.org
6789T: git git://linuxtv.org/media_tree.git
6790W: http://linuxtv.org
6791S: Odd Fixes
6792F: drivers/media/i2c/saa6588*
6793
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006794SAA7134 VIDEO4LINUX DRIVER
6795M: Mauro Carvalho Chehab <mchehab@redhat.com>
6796L: linux-media@vger.kernel.org
6797W: http://linuxtv.org
6798T: git git://linuxtv.org/media_tree.git
6799S: Odd fixes
6800F: Documentation/video4linux/saa7134/
6801F: drivers/media/pci/saa7134/
6802
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006804M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006805L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006806T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006808F: drivers/media/common/saa7146/
6809F: drivers/media/pci/saa7146/
6810F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811
Corentin Chary92304a42011-12-05 12:38:35 -05006812SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006813M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006814L: platform-driver-x86@vger.kernel.org
6815S: Maintained
6816F: drivers/platform/x86/samsung-laptop.c
6817
Mark Brown4a109cc2010-09-24 10:50:46 +01006818SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006819M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006820L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6821S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006822F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006823
Jingoo Han0d89a282011-12-19 11:09:35 +09006824SAMSUNG FRAMEBUFFER DRIVER
6825M: Jingoo Han <jg1.han@samsung.com>
6826L: linux-fbdev@vger.kernel.org
6827S: Maintained
6828F: drivers/video/s3c-fb.c
6829
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006830SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6831M: Sangbeom Kim <sbkim73@samsung.com>
6832L: linux-kernel@vger.kernel.org
6833S: Supported
6834F: drivers/mfd/sec*.c
6835F: drivers/regulator/s2m*.c
6836F: drivers/regulator/s5m*.c
6837F: drivers/rtc/rtc-sec.c
6838F: include/linux/mfd/samsung/
6839
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006840SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6841M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6842L: linux-media@vger.kernel.org
6843L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6844S: Maintained
6845F: drivers/media/platform/s3c-camif/
6846F: include/media/s3c_camif.h
6847
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006848SAMSUNG S5C73M3 CAMERA DRIVER
6849M: Kyungmin Park <kyungmin.park@samsung.com>
6850M: Andrzej Hajda <a.hajda@samsung.com>
6851L: linux-media@vger.kernel.org
6852S: Supported
6853F: drivers/media/i2c/s5c73m3/*
6854
Alan Coxca749e22011-03-18 13:56:14 +00006855SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006856M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006857L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006858S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006859F: drivers/tty/serial
6860
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306861SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006862M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306863S: Maintained
6864F: include/linux/dw_dmac.h
6865F: drivers/dma/dw_dmac_regs.h
6866F: drivers/dma/dw_dmac.c
6867
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006868SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6869M: Seungwon Jeon <tgih.jun@samsung.com>
6870M: Jaehoon Chung <jh80.chung@samsung.com>
6871L: linux-mmc@vger.kernel.org
6872S: Maintained
6873F: include/linux/mmc/dw_mmc.h
6874F: drivers/mmc/host/dw_mmc*
6875
Thomas Gleixner88606e82010-12-14 21:37:13 +01006876TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006877M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006878M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006879T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006880S: Supported
6881F: include/linux/clocksource.h
6882F: include/linux/time.h
6883F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006884F: include/uapi/linux/time.h
6885F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006886F: kernel/time/clocksource.c
6887F: kernel/time/time*.c
6888F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006889F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006890
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006891TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006892M: Huang Shijie <shijie8@gmail.com>
6893M: Kang Yong <kangyong@telegent.com>
6894M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006895S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006896F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006897
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006899M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006901F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
6903SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006904M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006905M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006906T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006908F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006909F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006910F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911
Chen Liqin6bcf6732009-06-13 15:24:33 +08006912SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006913M: Chen Liqin <liqin.chen@sunplusct.com>
6914M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006915W: http://www.sunplusct.com
6916S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006917F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006918
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006920M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921L: linux-scsi@vger.kernel.org
6922W: http://www.kernel.dk
6923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006924F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925
Roland Dreierfb50a832010-10-07 09:54:53 -07006926SCSI RDMA PROTOCOL (SRP) INITIATOR
6927M: David Dillow <dillowda@ornl.gov>
6928L: linux-rdma@vger.kernel.org
6929S: Supported
6930W: http://www.openfabrics.org
6931Q: http://patchwork.kernel.org/project/linux-rdma/list/
6932T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6933F: drivers/infiniband/ulp/srp/
6934F: include/scsi/srp.h
6935
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006937M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938L: linux-scsi@vger.kernel.org
6939W: http://www.torque.net/sg
6940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006941F: drivers/scsi/sg.c
6942F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943
6944SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006945M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006947T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6948T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6949T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006951F: drivers/scsi/
6952F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
6954SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006955M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956L: linux-scsi@vger.kernel.org
6957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006958F: Documentation/scsi/st.txt
6959F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960
6961SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006962M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006963M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006964M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006965L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006966W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006968F: Documentation/networking/sctp.txt
6969F: include/linux/sctp.h
6970F: include/net/sctp/
6971F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
6973SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006974M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006975S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006976F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006977F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006978F: drivers/watchdog/scx200_wdt.c
6979F: drivers/i2c/busses/scx200*
6980F: drivers/mtd/maps/scx200_docflash.c
6981F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006982
6983SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006984M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006986F: drivers/char/scx200_gpio.c
6987F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006988
6989SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006990M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006992F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
Sascha Sommer6a369132008-07-15 14:21:29 +02006994SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006995M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006996L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006998F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006999
Randy Dunlape7839f22008-10-12 16:11:45 -07007000SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007001M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007002L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007003T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7004S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007005F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007006F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007007
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007008SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007009M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007010L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007011L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007013F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014
Ben Dooks0d1bb412009-06-14 13:52:37 +01007015SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007016M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007017L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007018S: Maintained
7019F: drivers/mmc/host/sdhci-s3c.c
7020
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007021SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007022M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007023L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007024L: linux-mmc@vger.kernel.org
7025S: Maintained
7026F: drivers/mmc/host/sdhci-spear.c
7027
James Morris8711cca2008-12-04 03:19:45 +11007028SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007029M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007030L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007031T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007032W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007033S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007034F: security/
James Morris8711cca2008-12-04 03:19:45 +11007035
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007037M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038S: Supported
7039
7040SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007042M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007043M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007044L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007045W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007046T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007048F: include/linux/selinux*
7049F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007050F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051
John Johansenc1c124e2010-07-29 14:48:09 -07007052APPARMOR SECURITY MODULE
7053M: John Johansen <john.johansen@canonical.com>
7054L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7055W: apparmor.wiki.kernel.org
7056T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7057S: Supported
7058F: security/apparmor/
7059
Jiri Slabycef2cf02007-05-08 00:31:45 -07007060SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007061M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007063F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007064F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007065
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007066SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007067M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007069T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007071F: drivers/ata/
7072F: include/linux/ata.h
7073F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307075SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007076M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007077L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007078W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007079S: Supported
7080F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307081
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007082SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007083M: Sathya Perla <sathya.perla@emulex.com>
7084M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7085M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007086L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007087W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007088S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007089F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007090
Ben Hutchings8ceee662008-04-27 12:55:59 +01007091SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007092M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007093M: Ben Hutchings <bhutchings@solarflare.com>
7094L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007095S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007096F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007097
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007098SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007099M: Dimitri Sivanich <sivanich@sgi.com>
7100M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007102F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007103
7104SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007105M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007106L: linux-ia64@vger.kernel.org
7107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007108F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007109F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007110F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007111
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114L: linux-visws-devel@lists.sf.net
7115W: http://linux-visws.sf.net
7116S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007117F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007118
Jack Steiner75312612008-08-15 00:40:42 -07007119SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007120M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007122F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007123
Hans Verkuil49cc6292012-11-30 07:13:29 -03007124SI470X FM RADIO RECEIVER I2C DRIVER
7125M: Hans Verkuil <hverkuil@xs4all.nl>
7126L: linux-media@vger.kernel.org
7127T: git git://linuxtv.org/media_tree.git
7128W: http://linuxtv.org
7129S: Odd Fixes
7130F: drivers/media/radio/si470x/radio-si470x-i2c.c
7131
7132SI470X FM RADIO RECEIVER USB DRIVER
7133M: Hans Verkuil <hverkuil@xs4all.nl>
7134L: linux-media@vger.kernel.org
7135T: git git://linuxtv.org/media_tree.git
7136W: http://linuxtv.org
7137S: Maintained
7138F: drivers/media/radio/si470x/radio-si470x-common.c
7139F: drivers/media/radio/si470x/radio-si470x.h
7140F: drivers/media/radio/si470x/radio-si470x-usb.c
7141
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007142SH_VEU V4L2 MEM2MEM DRIVER
7143M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7144L: linux-media@vger.kernel.org
7145S: Maintained
7146F: drivers/media/platform/sh_veu.c
7147F: include/media/sh_veu.h
7148
7149SH_VOU V4L2 OUTPUT DRIVER
7150M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7151L: linux-media@vger.kernel.org
7152S: Maintained
7153F: drivers/media/platform/sh_vou.c
7154F: include/media/sh_vou.h
7155
Len Brown6349d992009-08-14 15:07:14 -04007156SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007157M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007158L: sfi-devel@simplefirmware.org
7159W: http://simplefirmware.org/
7160T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007161S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007162F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007163F: drivers/sfi/
7164F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007165
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166SIMTEC EB110ATX (Chalice CATS)
7167P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007168P: Vincent Sanders <vince@simtec.co.uk>
7169M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170W: http://www.simtec.co.uk/products/EB110ATX/
7171S: Supported
7172
7173SIMTEC EB2410ITX (BAST)
7174P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007175P: Vincent Sanders <vince@simtec.co.uk>
7176M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177W: http://www.simtec.co.uk/products/EB2410ITX/
7178S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007179F: arch/arm/mach-s3c2410/mach-bast.c
7180F: arch/arm/mach-s3c2410/bast-ide.c
7181F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007182
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007183TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007184M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007185M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307186L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307187T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007188Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007189S: Supported
7190F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007191F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007192
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007193TI DAVINCI SERIES MEDIA DRIVER
7194M: Manjunath Hadli <manjunath.hadli@ti.com>
7195M: Prabhakar Lad <prabhakar.lad@ti.com>
7196L: linux-media@vger.kernel.org
7197L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7198W: http://linuxtv.org/
7199Q: http://patchwork.linuxtv.org/project/linux-media/list/
7200T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7201S: Supported
7202F: drivers/media/platform/davinci/
7203F: include/media/davinci/
7204
Francois Romieu92aab3c2005-07-30 13:11:18 +02007205SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007206M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007207L: netdev@vger.kernel.org
7208S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007209F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007210
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007212M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007214L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007216F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217
7218SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007219M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007222F: Documentation/fb/sisfb.txt
7223F: drivers/video/sis/
7224F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225
7226SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007227M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228W: http://www.winischhofer.at/linuxsisusbvga.shtml
7229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007230F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231
Christoph Lameter415ad262007-07-26 10:40:56 -07007232SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007233M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007234M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007235M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007236L: linux-mm@kvack.org
7237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007238F: include/linux/sl?b*.h
7239F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007240
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007241SLEEPABLE READ-COPY UPDATE (SRCU)
7242M: Lai Jiangshan <laijs@cn.fujitsu.com>
7243M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7244W: http://www.rdrop.com/users/paulmck/RCU/
7245S: Supported
7246T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7247F: include/linux/srcu*
7248F: kernel/srcu*
7249
Casey Schaufler66372842012-05-23 18:34:52 -07007250SMACK SECURITY MODULE
7251M: Casey Schaufler <casey@schaufler-ca.com>
7252L: linux-security-module@vger.kernel.org
7253W: http://schaufler-ca.com
7254T: git git://git.gitorious.org/smack-next/kernel.git
7255S: Maintained
7256F: Documentation/security/Smack.txt
7257F: security/smack/
7258
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007260M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007261S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007262F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263
Sakari Ailuse8e31622012-11-12 18:14:39 -03007264SMIA AND SMIA++ IMAGE SENSOR DRIVER
7265M: Sakari Ailus <sakari.ailus@iki.fi>
7266L: linux-media@vger.kernel.org
7267S: Maintained
7268F: drivers/media/i2c/smiapp
7269F: include/media/smiapp.h
7270F: drivers/media/i2c/smiapp-pll.c
7271F: drivers/media/i2c/smiapp-pll.h
7272
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007273SMM665 HARDWARE MONITOR DRIVER
7274M: Guenter Roeck <linux@roeck-us.net>
7275L: lm-sensors@lm-sensors.org
7276S: Maintained
7277F: Documentation/hwmon/smm665
7278F: drivers/hwmon/smm665.c
7279
Steve Glendinning9df73052010-08-14 21:08:54 +02007280SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007281M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007282L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007283S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007284F: Documentation/hwmon/emc2103
7285F: drivers/hwmon/emc2103.c
7286
Hans de Goedea98d5062011-03-21 17:59:36 +01007287SMSC SCH5627 HARDWARE MONITOR DRIVER
7288M: Hans de Goede <hdegoede@redhat.com>
7289L: lm-sensors@lm-sensors.org
7290S: Supported
7291F: Documentation/hwmon/sch5627
7292F: drivers/hwmon/sch5627.c
7293
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007294SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007295M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007296L: lm-sensors@lm-sensors.org
7297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007298F: Documentation/hwmon/smsc47b397
7299F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007300
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007301SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007302M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007303L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007305F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007306F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007307
Steve Glendinning2cb37722008-12-11 20:54:30 -08007308SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007309M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007310L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007311S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007312F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007313
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007314SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007315M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007316L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007317S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007318F: drivers/video/smscufx.c
7319
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007320SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007321M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007322L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007323T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007324S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007325F: include/media/soc*
7326F: drivers/media/i2c/soc_camera/
7327F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007328
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007329SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007330M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007332F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007333
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007335M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007338F: drivers/md/
7339F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007340F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007343M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007344L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007346F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347
Michael Buesch61e115a2007-09-18 15:12:50 -04007348SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007349M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007350L: netdev@vger.kernel.org
7351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007352F: drivers/ssb/
7353F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007354
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007356M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007357L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007358W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007360F: Documentation/laptops/sony-laptop.txt
7361F: drivers/char/sonypi.c
7362F: drivers/platform/x86/sony-laptop.c
7363F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364
Alex Dubovbaf85322008-02-09 10:20:54 -08007365SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007366M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007367W: http://tifmxx.berlios.de/
7368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007369F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007370
Linus Torvalds1da177e2005-04-16 15:20:36 -07007371SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007372M: Jaroslav Kysela <perex@perex.cz>
7373M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007374L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007375W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007376T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007377T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007379F: Documentation/sound/
7380F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007381F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007382F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007383
Mark Brownbd903bd2008-11-19 19:16:05 +00007384SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007385M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007386M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007387T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007388L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007389W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007391F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007392F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007393
Sam Ravnborg473321f2009-01-04 15:47:49 -08007394SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007395M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007397Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007398T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7399T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007401F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007402F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403
David S. Miller6404fcc2010-03-16 01:00:17 -07007404SPARC SERIAL DRIVERS
7405M: "David S. Miller" <davem@davemloft.net>
7406L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007407T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7408T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007409S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007410F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007411F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007412F: drivers/tty/serial/sunhv.c
7413F: drivers/tty/serial/sunsab.c
7414F: drivers/tty/serial/sunsab.h
7415F: drivers/tty/serial/sunsu.c
7416F: drivers/tty/serial/sunzilog.c
7417F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007418
Christopher Li389325b2012-04-05 14:25:14 -07007419SPARSE CHECKER
7420M: "Christopher Li" <sparse@chrisli.org>
7421L: linux-sparse@vger.kernel.org
7422W: https://sparse.wiki.kernel.org/
7423T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7424T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7425S: Maintained
7426F: include/linux/compiler.h
7427
viresh kumarfc0c1952010-04-01 12:31:21 +01007428SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007429M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307430M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007431L: spear-devel@list.st.com
7432L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007433W: http://www.st.com/spear
7434S: Maintained
7435F: arch/arm/plat-spear/
7436
Viresh Kumar71e09a92012-04-20 22:39:48 +05307437SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007438M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307439M: Shiraz Hashim <shiraz.hashim@st.com>
7440L: spear-devel@list.st.com
7441L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7442W: http://www.st.com/spear
7443S: Maintained
7444F: arch/arm/mach-spear13xx/
7445
viresh kumarfc0c1952010-04-01 12:31:21 +01007446SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007447M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307448M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007449L: spear-devel@list.st.com
7450L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007451W: http://www.st.com/spear
7452S: Maintained
7453F: arch/arm/mach-spear3xx/
7454
7455SPEAR6XX MACHINE SUPPORT
7456M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307457M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007458M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007459L: spear-devel@list.st.com
7460L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007461W: http://www.st.com/spear
7462S: Maintained
7463F: arch/arm/mach-spear6xx/
7464
7465SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007466M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007467L: spear-devel@list.st.com
7468L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007469W: http://www.st.com/spear
7470S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307471F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007473SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007474M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007475M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007476L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007477Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007478T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007480F: Documentation/spi/
7481F: drivers/spi/
7482F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007483F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007484
Jim Lewis2752e402006-09-29 02:01:19 -07007485SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007486M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7487M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007488L: netdev@vger.kernel.org
7489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007490F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007491F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007492
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007493SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007494M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007495L: linuxppc-dev@lists.ozlabs.org
7496L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007497W: http://www.ibm.com/developerworks/power/cell/
7498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007499F: Documentation/filesystems/spufs.txt
7500F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007501
Phillip Lougherfc555842009-01-05 08:46:29 +00007502SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007503M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007504L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7505W: http://squashfs.org.uk
7506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007507F: Documentation/filesystems/squashfs.txt
7508F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007509
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007511M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007513F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514
Linus Torvalds26e9a392008-10-17 09:50:12 -07007515STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007516M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007517L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007518S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007519
Linus Torvalds26e9a392008-10-17 09:50:12 -07007520STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007521M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007522T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007523L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007525F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007526
Joe Perchesc8c8b102011-07-05 09:42:12 -07007527STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7528M: Henk de Groot <pe1dnn@amsat.org>
7529S: Odd Fixes
7530F: drivers/staging/wlags49_h2/
7531F: drivers/staging/wlags49_h25/
7532
Joe Perchesc9555152011-07-05 09:42:01 -07007533STAGING - ASUS OLED
7534M: Jakub Schmidtke <sjakub@gmail.com>
7535S: Odd Fixes
7536F: drivers/staging/asus_oled/
7537
Joe Perchesebd3d012011-07-05 09:42:02 -07007538STAGING - COMEDI
7539M: Ian Abbott <abbotti@mev.co.uk>
7540M: Mori Hess <fmhess@users.sourceforge.net>
7541S: Odd Fixes
7542F: drivers/staging/comedi/
7543
Joe Perches8ca572c2011-07-05 09:42:03 -07007544STAGING - CRYSTAL HD VIDEO DECODER
7545M: Naren Sankar <nsankar@broadcom.com>
7546M: Jarod Wilson <jarod@wilsonet.com>
7547M: Scott Davilla <davilla@4pi.com>
7548M: Manu Abraham <abraham.manu@gmail.com>
7549S: Odd Fixes
7550F: drivers/staging/crystalhd/
7551
Joe Perches0f16ffc2011-07-05 09:42:04 -07007552STAGING - ECHO CANCELLER
7553M: Steve Underwood <steveu@coppice.org>
7554M: David Rowe <david@rowetel.com>
7555S: Odd Fixes
7556F: drivers/staging/echo/
7557
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007558STAGING - ET131X NETWORK DRIVER
7559M: Mark Einon <mark.einon@gmail.com>
7560S: Odd Fixes
7561F: drivers/staging/et131x/
7562
Joe Perchesa0138162011-07-05 15:21:34 -07007563STAGING - FLARION FT1000 DRIVERS
7564M: Marek Belisko <marek.belisko@gmail.com>
7565S: Odd Fixes
7566F: drivers/staging/ft1000/
7567
Joe Perchesec3fab92011-07-05 09:42:05 -07007568STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7569M: David Täht <d@teklibre.com>
7570S: Odd Fixes
7571F: drivers/staging/frontier/
7572
Joe Perches6c1bb422011-07-05 09:42:07 -07007573STAGING - INDUSTRIAL IO
7574M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007575L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007576S: Odd Fixes
7577F: drivers/staging/iio/
7578
Joe Perchesa0138162011-07-05 15:21:34 -07007579STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7580M: Jarod Wilson <jarod@wilsonet.com>
7581W: http://www.lirc.org/
7582S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007583F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007584
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007585STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007586M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007587M: Marc Dietrich <marvin24@gmx.de>
7588L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007589L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007590S: Maintained
7591F: drivers/staging/nvec/
7592
Joe Perchesa0138162011-07-05 15:21:34 -07007593STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7594M: Andres Salomon <dilinger@queued.net>
7595M: Chris Ball <cjb@laptop.org>
7596M: Jon Nettleton <jon.nettleton@gmail.com>
7597W: http://wiki.laptop.org/go/DCON
7598S: Odd Fixes
7599F: drivers/staging/olpc_dcon/
7600
Chris Kelly94cfdd12012-03-14 10:55:42 +00007601STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007602M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007603S: Maintained
7604F: drivers/staging/ozwpan/
7605
Joe Perchesa0138162011-07-05 15:21:34 -07007606STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007607M: Willy Tarreau <willy@meta-x.org>
7608S: Odd Fixes
7609F: drivers/staging/panel/
7610
Joe Perchesa0138162011-07-05 15:21:34 -07007611STAGING - REALTEK RTL8712U DRIVERS
7612M: Larry Finger <Larry.Finger@lwfinger.net>
7613M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7614S: Odd Fixes
7615F: drivers/staging/rtl8712/
7616
Joe Perches9629fa82011-07-05 09:42:09 -07007617STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7618M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7619S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007620F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007621
Joe Perchesa0138162011-07-05 15:21:34 -07007622STAGING - SOFTLOGIC 6x10 MPEG CODEC
7623M: Ben Collins <bcollins@bluecherry.net>
7624S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007625F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007626
7627STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7628M: William Hubbs <w.d.hubbs@gmail.com>
7629M: Chris Brannon <chris@the-brannons.com>
7630M: Kirk Reiser <kirk@braille.uwo.ca>
7631M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7632L: speakup@braille.uwo.ca
7633W: http://www.linux-speakup.org/
7634S: Odd Fixes
7635F: drivers/staging/speakup/
7636
7637STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007638M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007639S: Odd Fixes
7640F: drivers/staging/tidspbridge/
7641
Joe Perchesa0138162011-07-05 15:21:34 -07007642STAGING - USB ENE SM/MS CARD READER DRIVER
7643M: Al Cho <acho@novell.com>
7644S: Odd Fixes
7645F: drivers/staging/keucr/
7646
Joe Perchesb3e871c2011-07-05 09:42:10 -07007647STAGING - VIA VT665X DRIVERS
7648M: Forest Bond <forest@alittletooquiet.net>
7649S: Odd Fixes
7650F: drivers/staging/vt665?/
7651
Joe Perches81a9a522011-07-05 09:42:11 -07007652STAGING - WINBOND IS89C35 WLAN USB DRIVER
7653M: Pavel Machek <pavel@ucw.cz>
7654S: Odd Fixes
7655F: drivers/staging/winbond/
7656
Joe Perches709bcb02011-07-05 09:42:13 -07007657STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007658M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007659S: Odd Fixes
7660F: drivers/staging/xgifb/
7661
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007663M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007664S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007665F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007667SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007668M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007669W: http://sammy.net/sun3/
7670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007671F: arch/m68k/kernel/*sun3*
7672F: arch/m68k/sun3*/
7673F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007674F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007675
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007676SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007678L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007680Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007681T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007682S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007683F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007684F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007685F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007687SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007688M: Len Brown <len.brown@intel.com>
7689M: Pavel Machek <pavel@ucw.cz>
7690M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007691L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007693F: Documentation/power/
7694F: arch/x86/kernel/acpi/
7695F: drivers/base/power/
7696F: kernel/power/
7697F: include/linux/suspend.h
7698F: include/linux/freezer.h
7699F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700
7701SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007702M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703L: linux-video@atrey.karlin.mff.cuni.cz
7704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007705F: Documentation/svga.txt
7706F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007708SWIOTLB SUBSYSTEM
7709M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7710L: linux-kernel@vger.kernel.org
7711S: Supported
7712F: lib/swiotlb.c
7713F: arch/*/kernel/pci-swiotlb.c
7714F: include/linux/swiotlb.h
7715
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307716SYNOPSYS ARC ARCHITECTURE
7717M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307718S: Supported
7719F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307720F: Documentation/devicetree/bindings/arc/
7721F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307722
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007724M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007726F: Documentation/filesystems/sysv-fs.txt
7727F: fs/sysv/
7728F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007730TARGET SUBSYSTEM
7731M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7732L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007733L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007734L: http://groups.google.com/group/linux-iscsi-target-dev
7735W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007736T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007737S: Supported
7738F: drivers/target/
7739F: include/target/
7740F: Documentation/target/
7741
Alan Cox4e688522008-04-30 00:52:11 -07007742TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007743M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007745F: Documentation/accounting/taskstats*
7746F: include/linux/taskstats*
7747F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007748
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007749TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007750M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007751L: netdev@vger.kernel.org
7752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007753F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007754F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007755F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007756
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007757TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007758M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7759M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007760W: http://tcp-lp-mod.sourceforge.net/
7761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007762F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007763
Antti Palosaari91952bc2012-10-01 12:28:46 -03007764TDA10071 MEDIA DRIVER
7765M: Antti Palosaari <crope@iki.fi>
7766L: linux-media@vger.kernel.org
7767W: http://linuxtv.org/
7768W: http://palosaari.fi/linux/
7769Q: http://patchwork.linuxtv.org/project/linux-media/list/
7770T: git git://linuxtv.org/anttip/media_tree.git
7771S: Maintained
7772F: drivers/media/dvb-frontends/tda10071*
7773
7774TDA18212 MEDIA DRIVER
7775M: Antti Palosaari <crope@iki.fi>
7776L: linux-media@vger.kernel.org
7777W: http://linuxtv.org/
7778W: http://palosaari.fi/linux/
7779Q: http://patchwork.linuxtv.org/project/linux-media/list/
7780T: git git://linuxtv.org/anttip/media_tree.git
7781S: Maintained
7782F: drivers/media/tuners/tda18212*
7783
7784TDA18218 MEDIA DRIVER
7785M: Antti Palosaari <crope@iki.fi>
7786L: linux-media@vger.kernel.org
7787W: http://linuxtv.org/
7788W: http://palosaari.fi/linux/
7789Q: http://patchwork.linuxtv.org/project/linux-media/list/
7790T: git git://linuxtv.org/anttip/media_tree.git
7791S: Maintained
7792F: drivers/media/tuners/tda18218*
7793
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007794TDA18271 MEDIA DRIVER
7795M: Michael Krufky <mkrufky@linuxtv.org>
7796L: linux-media@vger.kernel.org
7797W: http://linuxtv.org/
7798W: http://github.com/mkrufky
7799Q: http://patchwork.linuxtv.org/project/linux-media/list/
7800T: git git://linuxtv.org/mkrufky/tuners.git
7801S: Maintained
7802F: drivers/media/tuners/tda18271*
7803
Michael Krufkye48307a2012-10-02 00:56:33 -03007804TDA827x MEDIA DRIVER
7805M: Michael Krufky <mkrufky@linuxtv.org>
7806L: linux-media@vger.kernel.org
7807W: http://linuxtv.org/
7808W: http://github.com/mkrufky
7809Q: http://patchwork.linuxtv.org/project/linux-media/list/
7810T: git git://linuxtv.org/mkrufky/tuners.git
7811S: Maintained
7812F: drivers/media/tuners/tda8290.*
7813
Michael Krufky66cf9212012-10-02 00:56:28 -03007814TDA8290 MEDIA DRIVER
7815M: Michael Krufky <mkrufky@linuxtv.org>
7816L: linux-media@vger.kernel.org
7817W: http://linuxtv.org/
7818W: http://github.com/mkrufky
7819Q: http://patchwork.linuxtv.org/project/linux-media/list/
7820T: git git://linuxtv.org/mkrufky/tuners.git
7821S: Maintained
7822F: drivers/media/tuners/tda8290.*
7823
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007824TDA9840 MEDIA DRIVER
7825M: Hans Verkuil <hverkuil@xs4all.nl>
7826L: linux-media@vger.kernel.org
7827T: git git://linuxtv.org/media_tree.git
7828W: http://linuxtv.org
7829S: Maintained
7830F: drivers/media/i2c/tda9840*
7831
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007832TEA5761 TUNER DRIVER
7833M: Mauro Carvalho Chehab <mchehab@redhat.com>
7834L: linux-media@vger.kernel.org
7835W: http://linuxtv.org
7836T: git git://linuxtv.org/media_tree.git
7837S: Odd fixes
7838F: drivers/media/tuners/tea5761.*
7839
7840TEA5767 TUNER DRIVER
7841M: Mauro Carvalho Chehab <mchehab@redhat.com>
7842L: linux-media@vger.kernel.org
7843W: http://linuxtv.org
7844T: git git://linuxtv.org/media_tree.git
7845S: Maintained
7846F: drivers/media/tuners/tea5767.*
7847
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007848TEA6415C MEDIA DRIVER
7849M: Hans Verkuil <hverkuil@xs4all.nl>
7850L: linux-media@vger.kernel.org
7851T: git git://linuxtv.org/media_tree.git
7852W: http://linuxtv.org
7853S: Maintained
7854F: drivers/media/i2c/tea6415c*
7855
7856TEA6420 MEDIA DRIVER
7857M: Hans Verkuil <hverkuil@xs4all.nl>
7858L: linux-media@vger.kernel.org
7859T: git git://linuxtv.org/media_tree.git
7860W: http://linuxtv.org
7861S: Maintained
7862F: drivers/media/i2c/tea6420*
7863
Jiri Pirko3d249d42011-11-11 22:16:48 +00007864TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007865M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007866L: netdev@vger.kernel.org
7867S: Supported
7868F: drivers/net/team/
7869F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007870F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007871
Vivien Didelot7d029122013-01-04 16:18:14 -05007872TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7873M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7874S: Maintained
7875F: arch/x86/platform/ts5500/
7876
Sean Young40ad4a32012-11-19 10:32:53 -03007877TECHNOTREND USB IR RECEIVER
7878M: Sean Young <sean@mess.org>
7879L: linux-media@vger.kernel.org
7880S: Maintained
7881F: drivers/media/rc/ttusbir.c
7882
Erik Gilling84b94142010-06-09 15:35:53 -07007883TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007884M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007885L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007886Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7887T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007888S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007889K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007890
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007891TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007892M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007893L: netdev@vger.kernel.org
7894S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007895F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007896
Alan Cox4e688522008-04-30 00:52:11 -07007897Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007900F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007901
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007902TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007903M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007904M: Max Filippov <jcmvbkbc@gmail.com>
7905L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007907F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007908
Zhang Ruid3fb6952012-11-15 08:58:27 +08007909THERMAL
7910M: Zhang Rui <rui.zhang@intel.com>
7911L: linux-pm@vger.kernel.org
7912T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7913S: Supported
7914F: drivers/thermal/
7915F: include/linux/thermal.h
7916
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007917THINGM BLINK(1) USB RGB LED DRIVER
7918M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7919S: Maintained
7920F: drivers/hid/hid-thingm.c
7921
Alan Cox4e688522008-04-30 00:52:11 -07007922THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007923M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007924L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007925L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007926W: http://ibm-acpi.sourceforge.net
7927W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007928T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007930F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007931
Alex Dubov4020f2d2006-10-04 02:15:37 -07007932TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007933M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007935F: drivers/misc/tifm*
7936F: drivers/mmc/host/tifm_sd.c
7937F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007938
M R Swami Reddy152ad442012-04-02 20:02:31 +05307939TI LM49xxx FAMILY ASoC CODEC DRIVERS
7940M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307941M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307942L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7943S: Maintained
7944F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307945F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307946
Kim, Milo0edd8072012-12-17 16:01:17 -08007947TI LP855x BACKLIGHT DRIVER
7948M: Milo Kim <milo.kim@ti.com>
7949S: Maintained
7950F: Documentation/backlight/lp855x-driver.txt
7951F: drivers/video/backlight/lp855x_bl.c
7952F: include/linux/platform_data/lp855x.h
7953
Kim, Milofaf13f62012-12-10 05:27:03 +00007954TI LP8727 CHARGER DRIVER
7955M: Milo Kim <milo.kim@ti.com>
7956S: Maintained
7957F: drivers/power/lp8727_charger.c
7958F: include/linux/platform_data/lp8727.h
7959
Kim, Milo22f12292012-12-10 05:27:55 +00007960TI LP8788 MFD DRIVER
7961M: Milo Kim <milo.kim@ti.com>
7962S: Maintained
7963F: drivers/iio/adc/lp8788_adc.c
7964F: drivers/leds/leds-lp8788.c
7965F: drivers/mfd/lp8788*.c
7966F: drivers/power/lp8788-charger.c
7967F: drivers/regulator/lp8788-*.c
7968F: include/linux/mfd/lp8788*.h
7969
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007970TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007971M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007972L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7973S: Maintained
7974F: sound/soc/codecs/twl4030*
7975
Luciano Coelho90921012011-11-20 21:40:41 +02007976TI WILINK WIRELESS DRIVERS
7977M: Luciano Coelho <coelho@ti.com>
7978L: linux-wireless@vger.kernel.org
7979W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7980W: http://wireless.kernel.org/en/users/Drivers/wl1251
7981T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7982S: Maintained
7983F: drivers/net/wireless/ti/
7984F: include/linux/wl12xx.h
7985
Per Lidene86eaa32006-01-12 16:45:18 +01007986TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007987M: Jon Maloy <jon.maloy@ericsson.com>
7988M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007989L: netdev@vger.kernel.org (core kernel code)
7990L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007991W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007992S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007993F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007994F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007995
Chris Metcalf867e3592010-05-28 23:09:12 -04007996TILE ARCHITECTURE
7997M: Chris Metcalf <cmetcalf@tilera.com>
7998W: http://www.tilera.com/scm/
7999S: Supported
8000F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008001F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008002F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008003F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008004
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008006M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008007L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008W: http://sourceforge.net/projects/tlan/
8009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008010F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008011F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008013TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008014M: Kentaro Takeda <takedakn@nttdata.co.jp>
8015M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008016L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8017L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008018L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8019L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8020W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008021T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008023F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008024
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008025TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008026M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008027L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008028S: Maintained
8029F: drivers/platform/x86/topstar-laptop.c
8030
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008032L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008033S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008034F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035
8036TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038L: tlinux-users@tce.toshiba-dme.co.jp
8039W: http://www.buzzard.org.uk/toshiba/
8040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008041F: drivers/char/toshiba.c
8042F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008043F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044
Pierre Ossmand719f902009-03-24 21:06:09 +01008045TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008046M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008047M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008048L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008049S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008050F: drivers/mmc/host/tmio_mmc*
8051F: drivers/mmc/host/sh_mobile_sdhi.c
8052F: include/linux/mmc/tmio.h
8053F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008054
Hugh Dickins98f32602009-05-21 20:33:58 +01008055TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008056M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008057L: linux-mm@kvack.org
8058S: Maintained
8059F: include/linux/shmem_fs.h
8060F: mm/shmem.c
8061
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008062TM6000 VIDEO4LINUX DRIVER
8063M: Mauro Carvalho Chehab <mchehab@redhat.com>
8064L: linux-media@vger.kernel.org
8065W: http://linuxtv.org
8066T: git git://linuxtv.org/media_tree.git
8067S: Odd fixes
8068F: drivers/media/usb/tm6000/
8069
Alan Cox4e688522008-04-30 00:52:11 -07008070TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008071M: Kent Yoder <key@linux.vnet.ibm.com>
8072M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008073W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008074M: Marcel Selhorst <tpmdd@selhorst.net>
8075M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008076W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008077L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008079F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008080
Joe Perchesd6f005a2009-10-26 16:49:40 -07008081TRACING
8082M: Steven Rostedt <rostedt@goodmis.org>
8083M: Frederic Weisbecker <fweisbec@gmail.com>
8084M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008085T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008086S: Maintained
8087F: Documentation/trace/ftrace.txt
8088F: arch/*/*/*/ftrace.h
8089F: arch/*/kernel/ftrace.c
8090F: include/*/ftrace.h
8091F: include/linux/trace*.h
8092F: include/trace/
8093F: kernel/trace/
8094
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008096M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008097T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008098S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008099K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100
Alan Cox4e688522008-04-30 00:52:11 -07008101TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008102M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008103M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008104S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008105T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008106F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008107F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008108F: include/linux/serial_core.h
8109F: include/linux/serial.h
8110F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008111F: include/uapi/linux/serial_core.h
8112F: include/uapi/linux/serial.h
8113F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008114
Antti Palosaari91952bc2012-10-01 12:28:46 -03008115TUA9001 MEDIA DRIVER
8116M: Antti Palosaari <crope@iki.fi>
8117L: linux-media@vger.kernel.org
8118W: http://linuxtv.org/
8119W: http://palosaari.fi/linux/
8120Q: http://patchwork.linuxtv.org/project/linux-media/list/
8121T: git git://linuxtv.org/anttip/media_tree.git
8122S: Maintained
8123F: drivers/media/tuners/tua9001*
8124
Grant Grundler740db6d2008-02-17 11:53:49 -07008125TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008126M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008127L: netdev@vger.kernel.org
8128S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008129F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130
8131TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008132M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133W: http://vtun.sourceforge.net/tun
8134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008135F: Documentation/networking/tuntap.txt
8136F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008138TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008139M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008141F: drivers/tc/
8142F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008143
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008145M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146L: linux-scsi@vger.kernel.org
8147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008148F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008150UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008151M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008152M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008153L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008154T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008155W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008157F: Documentation/filesystems/ubifs.txt
8158F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008159
Alan Coxcc2020e2008-05-19 14:21:51 +01008160UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008161M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008162W: http://www.uclinux.org/
8163L: uclinux-dev@uclinux.org (subscribers-only)
8164S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008165F: arch/m68k/*/*_no.*
8166F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008167
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008168UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008169M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008170W: http://uclinux-h8.sourceforge.jp/
8171S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008172F: arch/h8300/
8173F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008174F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008175
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008177M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008179F: Documentation/filesystems/udf.txt
8180F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181
Alan Coxcc2020e2008-05-19 14:21:51 +01008182UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008183M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008185F: Documentation/filesystems/ufs.txt
8186F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008187
David Herrmann0a09d3a2012-06-10 15:16:28 +02008188UHID USERSPACE HID IO DRIVER:
8189M: David Herrmann <dh.herrmann@googlemail.com>
8190L: linux-input@vger.kernel.org
8191S: Maintained
8192F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008193F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008194
David Vrabel18332a82008-09-17 16:34:44 +01008195ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008196L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008197S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008198F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008199F: include/linux/uwb.h
8200F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008201
GuanXuetaob31d8272011-01-16 00:35:49 +08008202UNICORE32 ARCHITECTURE:
8203M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8204W: http://mprc.pku.edu.cn/~guanxuetao/linux
8205S: Maintained
8206T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8207F: arch/unicore32/
8208
Tony Finchd8379ab2009-11-27 15:50:30 +00008209UNIFDEF
8210M: Tony Finch <dot@dotat.at>
8211W: http://dotat.at/prog/unifdef
8212S: Maintained
8213F: scripts/unifdef.c
8214
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008216M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217W: http://www.kernel.dk
8218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008219F: Documentation/cdrom/
8220F: drivers/cdrom/cdrom.c
8221F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008222F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308224UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8225M: Vinayak Holikatti <vinholikatti@gmail.com>
8226M: Santosh Y <santoshsy@gmail.com>
8227L: linux-scsi@vger.kernel.org
8228S: Supported
8229F: Documentation/scsi/ufs.txt
8230F: drivers/scsi/ufs/
8231
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008232UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008233M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008234W: http://www.linux-mtd.infradead.org/
8235L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008236T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008237S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008238F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008239F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008240F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008241
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008242UNSORTED BLOCK IMAGES (UBI) Fastmap
8243M: Richard Weinberger <richard@nod.at>
8244L: linux-mtd@lists.infradead.org
8245S: Maintained
8246F: drivers/mtd/ubi/fastmap.c
8247
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008249M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008250L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008252F: Documentation/usb/acm.txt
8253F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008255USB AR5523 WIRELESS DRIVER
8256M: Pontus Fuchs <pontus.fuchs@gmail.com>
8257L: linux-wireless@vger.kernel.org
8258S: Maintained
8259F: drivers/net/wireless/ath/ar5523/
8260
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008261USB ATTACHED SCSI
8262M: Matthew Wilcox <willy@linux.intel.com>
8263M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008264M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008265L: linux-usb@vger.kernel.org
8266L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008267S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008268F: drivers/usb/storage/uas.c
8269
Linus Torvalds1da177e2005-04-16 15:20:36 -07008270USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008271M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008272L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008274F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008275F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008277USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008278M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008279L: linux-usb@vger.kernel.org
8280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008281F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008282
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008283USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008284M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008285L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008286W: http://www.linux-usb.org/usbnet
8287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008288F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008289
Alan Coxcc2020e2008-05-19 14:21:51 +01008290USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008292L: rio500-users@lists.sourceforge.net
8293W: http://rio500.sourceforge.net
8294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008295F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008296
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008298M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008299L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008301F: Documentation/usb/ehci.txt
8302F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303
David Brownell69ae9e32006-11-14 02:03:31 -08008304USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008305M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008306L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008307W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008308T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008310F: drivers/usb/gadget/
8311F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008312
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008313USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008314M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008315L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008316T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008318F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008319F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320
matt mooney857aab32011-06-17 15:50:46 -07008321USB/IP DRIVERS
8322M: Matt Mooney <mfm@muteddisk.com>
8323L: linux-usb@vger.kernel.org
8324S: Maintained
8325F: drivers/staging/usbip/
8326
Olav Kongas959eea22005-11-03 17:38:14 +02008327USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008328M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008329L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008331F: drivers/usb/host/isp116x*
8332F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008333
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008335M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008336L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008338F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339
8340USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008341M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008342L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008343L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344S: Maintained
8345W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008346F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347
Clemens Ladischaf399172011-01-10 16:32:54 +01008348USB MIDI DRIVER
8349M: Clemens Ladisch <clemens@ladisch.de>
8350L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8351T: git git://git.alsa-project.org/alsa-kernel.git
8352S: Maintained
8353F: sound/usb/midi.*
8354
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008356M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008357L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008359F: Documentation/usb/ohci.txt
8360F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361
Matthias Urlichsba460e42005-07-14 00:33:47 -07008362USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008363M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008364L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008366F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008367
Linus Torvalds1da177e2005-04-16 15:20:36 -07008368USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008369M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008370L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008371L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008372W: http://pegasus2.sourceforge.net/
8373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008374F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008375
Felipe Balbid3ad5582012-05-21 16:24:49 +03008376USB PHY LAYER
8377M: Felipe Balbi <balbi@ti.com>
8378L: linux-usb@vger.kernel.org
8379T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8380S: Maintained
8381F: drivers/usb/phy/
8382F: drivers/usb/otg/
8383
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008384USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008385M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008386L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008388F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389
8390USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008391M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008392L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008393L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394W: http://pegasus2.sourceforge.net/
8395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008396F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397
Alan Cox4e688522008-04-30 00:52:11 -07008398USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008399M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008400L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008402F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008403
8404USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008405M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008406L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008407S: Maintained
8408W: http://geocities.com/i0xox0i
8409W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008410F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008411
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008413M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008416F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417
8418USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008419M: Peter Berger <pberger@brimson.com>
8420M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008421L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008423F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424
8425USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008426M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008427L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008429F: Documentation/usb/usb-serial.txt
8430F: drivers/usb/serial/generic.c
8431F: drivers/usb/serial/usb-serial.c
8432F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008435M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008436L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008438F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008439
8440USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008441M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008442L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008444F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445
8446USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008447M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008448L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008449W: http://www.connecttech.com
8450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008451F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008452
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008453USB SMSC75XX ETHERNET DRIVER
8454M: Steve Glendinning <steve.glendinning@shawell.net>
8455L: netdev@vger.kernel.org
8456S: Maintained
8457F: drivers/net/usb/smsc75xx.*
8458
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008459USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008460M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008461L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008463F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008464
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008465USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008466M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008467L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008468L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008469T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470W: http://www.linux-projects.org
8471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008472F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008473F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474
8475USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008476M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008477L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008478W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008479T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008481F: Documentation/usb/
8482F: drivers/net/usb/
8483F: drivers/usb/
8484F: include/linux/usb.h
8485F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486
8487USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008488M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008489L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008491F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492
David Brownell69ae9e32006-11-14 02:03:31 -08008493USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008494M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008495L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008496W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008498F: drivers/net/usb/usbnet.c
8499F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008501USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008502M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008503L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008504L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008505T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008506W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008507S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008508F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008509F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008511USB VISION DRIVER
8512M: Hans Verkuil <hverkuil@xs4all.nl>
8513L: linux-media@vger.kernel.org
8514T: git git://linuxtv.org/media_tree.git
8515W: http://linuxtv.org
8516S: Odd Fixes
8517F: drivers/media/usb/usbvision/
8518
Laurent Pinchart8282da42012-10-04 02:32:42 +02008519USB WEBCAM GADGET
8520M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8521L: linux-usb@vger.kernel.org
8522S: Maintained
8523F: drivers/usb/gadget/*uvc*.c
8524F: drivers/usb/gadget/webcam.c
8525
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008526USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008527M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008528L: linux-wireless@vger.kernel.org
8529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008530F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008531
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008532USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008533M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008534L: linux-usb@vger.kernel.org
8535S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008536F: drivers/usb/host/xhci*
8537F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008538
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008540L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008542S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008543F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008545USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008546M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008547L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008548L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008549T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008550W: http://royale.zerezo.com/zr364xx/
8551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008552F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008553F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008554
Randy Dunlape7839f22008-10-12 16:11:45 -07008555USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008556M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008557M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558L: user-mode-linux-devel@lists.sourceforge.net
8559L: user-mode-linux-user@lists.sourceforge.net
8560W: http://user-mode-linux.sourceforge.net
8561S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008562F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008563F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008564F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008565F: fs/hostfs/
8566F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008567
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008568USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008569M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008570M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008572F: Documentation/DocBook/uio-howto.tmpl
8573F: drivers/uio/
8574F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008575
Karel Zak256cccb2012-06-01 10:13:09 +02008576UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008577M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008578L: util-linux@vger.kernel.org
8579W: http://en.wikipedia.org/wiki/Util-linux
8580T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008581S: Maintained
8582
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008583UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008584M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008585L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008586W: http://dev.gentoo.org/~spock/projects/uvesafb/
8587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008588F: Documentation/fb/uvesafb.txt
8589F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008590
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008591VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008592M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008594F: Documentation/filesystems/vfat.txt
8595F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596
Alex Williamsoncba33452012-07-31 08:16:22 -06008597VFIO DRIVER
8598M: Alex Williamson <alex.williamson@redhat.com>
8599L: kvm@vger.kernel.org
8600S: Maintained
8601F: Documentation/vfio.txt
8602F: drivers/vfio/
8603F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008604F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008605
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008606VIDEOBUF2 FRAMEWORK
8607M: Pawel Osciak <pawel@osciak.com>
8608M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008609M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008610L: linux-media@vger.kernel.org
8611S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008612F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008613F: include/media/videobuf2-*
8614
Amit Shah9a824462010-03-23 18:23:09 +05308615VIRTIO CONSOLE DRIVER
8616M: Amit Shah <amit.shah@redhat.com>
8617L: virtualization@lists.linux-foundation.org
8618S: Maintained
8619F: drivers/char/virtio_console.c
8620F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008621F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308622
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308623VIRTIO CORE, NET AND BLOCK DRIVERS
8624M: Rusty Russell <rusty@rustcorp.com.au>
8625M: "Michael S. Tsirkin" <mst@redhat.com>
8626L: virtualization@lists.linux-foundation.org
8627S: Maintained
8628F: drivers/virtio/
8629F: drivers/net/virtio_net.c
8630F: drivers/block/virtio_blk.c
8631F: include/linux/virtio_*.h
8632
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008633VIRTIO HOST (VHOST)
8634M: "Michael S. Tsirkin" <mst@redhat.com>
8635L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008636L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008637L: netdev@vger.kernel.org
8638S: Maintained
8639F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008640F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008641
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008643M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008645F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646
Harald Weltef0bf7f62009-06-17 20:22:39 +02008647VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008648M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008649M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008650S: Maintained
8651F: drivers/mmc/host/via-sdmmc.c
8652
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008653VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008654M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008655L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008656S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008657F: include/linux/via-core.h
8658F: include/linux/via-gpio.h
8659F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008660F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008661
Francois Romieu01f20732007-01-26 00:57:17 -08008662VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008663M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008664L: netdev@vger.kernel.org
8665S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008666F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008667
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008668VIVI VIRTUAL VIDEO DRIVER
8669M: Hans Verkuil <hverkuil@xs4all.nl>
8670L: linux-media@vger.kernel.org
8671T: git git://linuxtv.org/media_tree.git
8672W: http://linuxtv.org
8673S: Maintained
8674F: drivers/media/platform/vivi*
8675
Patrick McHardybe7f8272007-10-23 20:26:36 -07008676VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008677M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008678L: netdev@vger.kernel.org
8679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008680F: drivers/net/macvlan.c
8681F: include/linux/if_*vlan.h
8682F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008683
Florian Fainelli55e331c2009-06-16 15:33:53 -07008684VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008685M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008686L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008687S: Maintained
8688F: drivers/vlynq/vlynq.c
8689F: include/linux/vlynq.h
8690
Martyn Welch390beae2012-05-03 17:52:36 +01008691VME SUBSYSTEM
8692M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008693M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008694M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8695L: devel@driverdev.osuosl.org
8696S: Maintained
8697T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8698F: Documentation/vme_api.txt
8699F: drivers/staging/vme/
8700F: drivers/vme/
8701F: include/linux/vme*
8702
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008703VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008704M: Shreyas Bhatewara <sbhatewara@vmware.com>
8705M: "VMware, Inc." <pv-drivers@vmware.com>
8706L: netdev@vger.kernel.org
8707S: Maintained
8708F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008709
Alok Kataria851b1642009-10-13 14:51:05 -07008710VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008711M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008712M: VMware PV-Drivers <pv-drivers@vmware.com>
8713L: linux-scsi@vger.kernel.org
8714S: Maintained
8715F: drivers/scsi/vmw_pvscsi.c
8716F: drivers/scsi/vmw_pvscsi.h
8717
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008718VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008719M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008720M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008721W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008722W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008723T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008724S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008725F: drivers/regulator/
8726F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008727
Juerg Haefligerab413192006-09-24 20:54:04 +02008728VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008729M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008730L: lm-sensors@lm-sensors.org
8731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008732F: Documentation/hwmon/vt1211
8733F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008734
Roger Lucas1de9e372005-11-26 20:20:05 +01008735VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008736M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008737L: lm-sensors@lm-sensors.org
8738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008739F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008740
Tony Olech88095e72011-05-14 16:48:13 -04008741VUB300 USB to SDIO/SD/MMC bridge chip
8742M: Tony Olech <tony.olech@elandigitalsystems.com>
8743L: linux-mmc@vger.kernel.org
8744L: linux-usb@vger.kernel.org
8745S: Supported
8746F: drivers/mmc/host/vub300.c
8747
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008749M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008751F: Documentation/w1/
8752F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753
Charles Spirakis13927072006-07-05 18:05:15 +02008754W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008755M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008756L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008758F: Documentation/hwmon/w83791d
8759F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008760
Rudolf Marek61db0112006-12-12 18:18:30 +01008761W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008762M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008763L: lm-sensors@lm-sensors.org
8764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008765F: Documentation/hwmon/w83793
8766F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008767
Jean Delvaree3760b42010-10-28 20:31:49 +02008768W83795 HARDWARE MONITORING DRIVER
8769M: Jean Delvare <khali@linux-fr.org>
8770L: lm-sensors@lm-sensors.org
8771S: Maintained
8772F: drivers/hwmon/w83795.c
8773
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008775M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008777F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008779WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008780M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008781L: linux-watchdog@vger.kernel.org
8782W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008783T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: Documentation/watchdog/
8786F: drivers/watchdog/
8787F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008788F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008789
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008791M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008792L: linux-scsi@vger.kernel.org
8793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008794F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008795
David Herrmannb22e00f2011-09-06 13:50:40 +02008796WIIMOTE HID DRIVER
8797M: David Herrmann <dh.herrmann@googlemail.com>
8798L: linux-input@vger.kernel.org
8799S: Maintained
8800F: drivers/hid/hid-wiimote*
8801
David Härdemane258b802009-09-21 17:04:53 -07008802WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008803M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008804S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008805F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008806
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008807WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008808M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008809M: linux-wimax@intel.com
8810L: wimax@linuxwimax.org
8811S: Supported
8812W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008813F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008814F: include/linux/wimax/debug.h
8815F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008816F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008817F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008818
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008819WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008820M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008822F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008823
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008825M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008826L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008827W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008829F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008830
Mark Brownfebf1df2008-04-02 00:51:09 -04008831WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008832M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8833M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008834L: linux-input@vger.kernel.org
8835T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8836W: http://opensource.wolfsonmicro.com/node/7
8837S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008838F: drivers/input/touchscreen/*wm97*
8839F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008840
Mark Brown055bcbc2010-08-13 14:18:12 +01008841WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008842M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008843L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008844T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008845T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008846W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008847S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008848F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008849F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008850F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008851F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008852F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008853F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008854F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008855F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008856F: drivers/input/misc/wm831x-on.c
8857F: drivers/input/touchscreen/wm831x-ts.c
8858F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008859F: drivers/mfd/arizona*
8860F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008861F: drivers/power/wm83*.c
8862F: drivers/rtc/rtc-wm83*.c
8863F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008864F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008865F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008866F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008867F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008868F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008869F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008870F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008871F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008872F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008873F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008874
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008875WORKQUEUE
8876M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008877T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8878S: Maintained
8879F: include/linux/workqueue.h
8880F: kernel/workqueue.c
8881F: Documentation/workqueue.txt
8882
Linus Torvalds1da177e2005-04-16 15:20:36 -07008883X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008884M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008885L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008886S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008887F: Documentation/networking/x25*
8888F: include/net/x25*
8889F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008891X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008892M: Thomas Gleixner <tglx@linutronix.de>
8893M: Ingo Molnar <mingo@redhat.com>
8894M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008895M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008896T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008898F: Documentation/x86/
8899F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008900
Matthew Garrettd0944852010-02-11 10:40:13 -05008901X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008902M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008903L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008904T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008905S: Maintained
8906F: drivers/platform/x86
8907
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008908X86 MCE INFRASTRUCTURE
8909M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008910M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008911L: linux-edac@vger.kernel.org
8912S: Maintained
8913F: arch/x86/kernel/cpu/mcheck/*
8914
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008915XC2028/3028 TUNER DRIVER
8916M: Mauro Carvalho Chehab <mchehab@redhat.com>
8917L: linux-media@vger.kernel.org
8918W: http://linuxtv.org
8919T: git git://linuxtv.org/media_tree.git
8920S: Maintained
8921F: drivers/media/tuners/tuner-xc2028.*
8922
Ian Campbellc4468082011-04-27 15:26:46 -07008923XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008924M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008925M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008926L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8927L: virtualization@lists.linux-foundation.org
8928S: Supported
8929F: arch/x86/xen/
8930F: drivers/*/xen-*front.c
8931F: drivers/xen/
8932F: arch/x86/include/asm/xen/
8933F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008934F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008935
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008936XEN HYPERVISOR ARM
8937M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8938L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8939S: Supported
8940F: arch/arm/xen/
8941F: arch/arm/include/asm/xen/
8942
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008943XEN NETWORK BACKEND DRIVER
8944M: Ian Campbell <ian.campbell@citrix.com>
8945L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8946L: netdev@vger.kernel.org
8947S: Supported
8948F: drivers/net/xen-netback/*
8949
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008950XEN PCI SUBSYSTEM
8951M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008952L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008953S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008954F: arch/x86/pci/*xen*
8955F: drivers/pci/*xen*
8956
8957XEN SWIOTLB SUBSYSTEM
8958M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008959L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008960S: Supported
8961F: arch/x86/xen/*swiotlb*
8962F: drivers/xen/*swiotlb*
8963
Linus Torvalds1da177e2005-04-16 15:20:36 -07008964XFS FILESYSTEM
8965P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008966M: Ben Myers <bpm@sgi.com>
8967M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008968M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008969L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008971T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008973F: Documentation/filesystems/xfs.txt
8974F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008976XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008977M: Anirudha Sarangi <anirudh@xilinx.com>
8978M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008979S: Maintained
8980F: drivers/net/ethernet/xilinx/xilinx_axienet*
8981
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008982XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008983M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008984W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008986F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008987
Peter Korsgaard238b8722006-12-06 20:35:17 -08008988XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008989M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008990L: linux-serial@vger.kernel.org
8991S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008992F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008993
Linus Torvalds1da177e2005-04-16 15:20:36 -07008994YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008995M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996L: linux-hams@vger.kernel.org
8997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008998F: drivers/net/hamradio/yam*
8999F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000
Henkaf64a5e2005-10-12 15:02:56 +02009001YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009002M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009003L: usbb2k-api-dev@nongnu.org
9004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009005F: Documentation/input/yealink.txt
9006F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009007
Linus Torvalds1da177e2005-04-16 15:20:36 -07009008Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009009M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010W: http://yaina.de/jreuter/
9011W: http://www.qsl.net/dl1bke/
9012L: linux-hams@vger.kernel.org
9013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009014F: Documentation/networking/z8530drv.txt
9015F: drivers/net/hamradio/*scc.c
9016F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009018ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009019M: Daniel Drake <dsd@gentoo.org>
9020M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009021W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009022L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009023L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009025F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009026
Linus Torvalds1da177e2005-04-16 15:20:36 -07009027ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009029L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009031T: Mercurial http://linuxtv.org/hg/v4l-dvb
9032S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009033F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009034
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009035ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009036M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009037S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009038F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009039
Linus Torvalds1da177e2005-04-16 15:20:36 -07009040THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009041M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009042L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009043Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009044T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009045S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009046F: *
9047F: */