blob: 59d708f2924953814e5b6b9b4d7063435733e71b [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.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800183
Antti Palosaari91952bc2012-10-01 12:28:46 -0300184A8293 MEDIA DRIVER
185M: Antti Palosaari <crope@iki.fi>
186L: linux-media@vger.kernel.org
187W: http://linuxtv.org/
188W: http://palosaari.fi/linux/
189Q: http://patchwork.linuxtv.org/project/linux-media/list/
190T: git git://linuxtv.org/anttip/media_tree.git
191S: Maintained
192F: drivers/media/dvb-frontends/a8293*
193
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700195M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196L: linux-scsi@vger.kernel.org
197W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700199F: Documentation/scsi/aacraid.txt
200F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700202ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100203M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204L: lm-sensors@lm-sensors.org
205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700206F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700209M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210L: lm-sensors@lm-sensors.org
211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700212F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700215M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216L: linux-acenic@sunsite.dk
217S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700218F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Peter Feuerere86435e2009-06-21 18:53:03 +0200220ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700221M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500222L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700223W: http://piie.net/?section=acerhdf
224S: Maintained
225F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200226
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800228M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500229L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700234M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200235M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500236L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400237W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800238Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/acpi/
242F: drivers/pnp/pnpacpi/
243F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700244F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500245
Len Brown8b59a452007-01-08 19:03:28 -0500246ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700247M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Len Brown8b59a452007-01-08 19:03:28 -0500253ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700254M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700259
Len Brown359acec2007-02-10 01:59:24 -0500260ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700261M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500266
Carlos Corbachobff431e2008-02-05 02:17:04 +0000267ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500268L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100269S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700270F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000271
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100272AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700273M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200274W: http://wiki.parisc-linux.org/AD1889
275L: linux-parisc@vger.kernel.org
276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700277F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100278
Michael Hennerich527a1a82010-10-28 11:31:28 +0000279AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
280M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100281L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700282W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000283S: Supported
284F: drivers/misc/ad525x_dpot.c
285
286AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
287M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100288L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700289W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000290S: Supported
291F: drivers/regulator/ad5398.c
292
293AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
294M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100295L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700296W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000297S: Supported
298F: drivers/input/misc/ad714x.c
299
300AD7877 TOUCHSCREEN DRIVER
301M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100302L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700303W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000304S: Supported
305F: drivers/input/touchscreen/ad7877.c
306
307AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
308M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100309L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700310W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000311S: Supported
312F: drivers/input/touchscreen/ad7879.c
313
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700314ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
315M: Jiri Kosina <jkosina@suse.cz>
316S: Maintained
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700319M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200320L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700322F: Documentation/hwmon/adm1025
323F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700326M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100327L: lm-sensors@lm-sensors.org
328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700329F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330
Michael Wucc0b88c2007-08-31 01:15:25 -0400331ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400332L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200333W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400334S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700335F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400336
Sakari Ailuse8e31622012-11-12 18:14:39 -0300337ADP1653 FLASH CONTROLLER DRIVER
338M: Sakari Ailus <sakari.ailus@iki.fi>
339L: linux-media@vger.kernel.org
340S: Maintained
341F: drivers/media/i2c/adp1653.c
342F: include/media/adp1653.h
343
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
345M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100346L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700347W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000348S: Supported
349F: drivers/mfd/adp5520.c
350F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700351F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800352F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000353F: drivers/input/keyboard/adp5520-keys.c
354
355ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
356M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100357L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700358W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000359S: Supported
360F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800361F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362
363ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
364M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100365L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700366W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000367S: Supported
368F: drivers/video/backlight/adp8860_bl.c
369
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100370ADS1015 HARDWARE MONITOR DRIVER
371M: Dirk Eibach <eibach@gdsys.de>
372L: lm-sensors@lm-sensors.org
373S: Maintained
374F: Documentation/hwmon/ads1015
375F: drivers/hwmon/ads1015.c
376F: include/linux/i2c/ads1015.h
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700379M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jean Delvareb058b852009-12-09 20:36:08 +0100383ADT7475 HARDWARE MONITOR DRIVER
384M: Jean Delvare <khali@linux-fr.org>
385L: lm-sensors@lm-sensors.org
386S: Maintained
387F: Documentation/hwmon/adt7475
388F: drivers/hwmon/adt7475.c
389
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
391M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100392L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700393W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000394S: Supported
395F: drivers/input/misc/adxl34x.c
396
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700398M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399L: linux-scsi@vger.kernel.org
400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700401F: Documentation/scsi/advansys.txt
402F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700405M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700407F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Antti Palosaari91952bc2012-10-01 12:28:46 -0300409AF9013 MEDIA DRIVER
410M: Antti Palosaari <crope@iki.fi>
411L: linux-media@vger.kernel.org
412W: http://linuxtv.org/
413W: http://palosaari.fi/linux/
414Q: http://patchwork.linuxtv.org/project/linux-media/list/
415T: git git://linuxtv.org/anttip/media_tree.git
416S: Maintained
417F: drivers/media/dvb-frontends/af9013*
418
419AF9033 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9033*
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200430L: linux-fsdevel@vger.kernel.org
431S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700432F: Documentation/filesystems/affs.txt
433F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700436M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700437L: linux-afs@lists.infradead.org
438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700439F: fs/afs/
440F: include/net/af_rxrpc.h
441F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700444M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700445T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/char/agp/
448F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800449F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700452M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453L: linux-scsi@vger.kernel.org
454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/scsi/aha152x*
456F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700459M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460L: linux-scsi@vger.kernel.org
461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: drivers/scsi/aic7xxx/
463F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200464
Hans Verkuil450500a2012-11-23 07:11:33 -0300465AIMSLAB FM RADIO RECEIVER DRIVER
466M: Hans Verkuil <hverkuil@xs4all.nl>
467L: linux-media@vger.kernel.org
468T: git git://linuxtv.org/media_tree.git
469W: http://linuxtv.org
470S: Maintained
471F: drivers/media/radio/radio-aimslab*
472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700474M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475L: linux-aio@kvack.org
476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700477F: fs/aio.c
478F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700482L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483W: http://www.linux-usb.org/SpeedTouch/
484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/usb/atm/speedtch.c
486F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Pierre Ossman272f1332007-05-14 21:25:26 +0200488ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200492
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700494M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100495L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700497F: Documentation/i2c/busses/i2c-ali1563
498F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700501M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700502M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500503M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700504S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700505L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700506F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Tobias Klauseradf92512011-02-09 10:58:29 +0100508ALTERA UART/JTAG UART SERIAL DRIVERS
509M: Tobias Klauser <tklauser@distanz.ch>
510L: linux-serial@vger.kernel.org
511L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
512S: Maintained
513F: drivers/tty/serial/altera_uart.c
514F: drivers/tty/serial/altera_jtaguart.c
515F: include/linux/altera_uart.h
516F: include/linux/altera_jtaguart.h
517
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100519M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520L: lm-sensors@lm-sensors.org
521S: Maintained
522F: Documentation/hwmon/fam15h_power
523F: drivers/hwmon/fam15h_power.c
524
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700526M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530
Jordan Crousef90b8112006-01-06 00:12:14 -0800531AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800532P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700533L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800534W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/char/hw_random/geode-rng.c
537F: drivers/crypto/geode*
538F: drivers/video/geode/
539F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800540
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200542M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100544T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200545S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800546F: drivers/iommu/amd_iommu*.[ch]
547F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200548
Peter Orubae7f5b302008-07-28 18:44:11 +0200549AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700551L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200554
Stelian Pop284f42b2006-12-12 18:18:31 +0100555AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100557S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200558F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100559
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700561M: Tom Tucker <tom@opengridcomputing.com>
562M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700563L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700565F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566
Hans Verkuil531fca12012-11-23 06:53:24 -0300567ANALOG DEVICES INC AD9389B DRIVER
568M: Hans Verkuil <hans.verkuil@cisco.com>
569L: linux-media@vger.kernel.org
570S: Maintained
571F: drivers/media/i2c/ad9389b*
572
573ANALOG DEVICES INC ADV7604 DRIVER
574M: Hans Verkuil <hans.verkuil@cisco.com>
575L: linux-media@vger.kernel.org
576S: Maintained
577F: drivers/media/i2c/adv7604*
578
Michael Hennerich527a1a82010-10-28 11:31:28 +0000579ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200580M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100581L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700583W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100585F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200586F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100589F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400591ANALOG DEVICES INC ASOC DRIVERS
592L: uclinux-dist-devel@blackfin.uclinux.org
593L: alsa-devel@alsa-project.org (moderated for non-subscribers)
594W: http://blackfin.uclinux.org/
595S: Supported
596F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400597
Johannes Berg42269062006-07-25 16:15:50 +0200598AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000600L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700601L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700603F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200606M: Jiri Kosina <jkosina@suse.cz>
607S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700608F: arch/x86/kernel/apm_32.c
609F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800610F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200611F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700614M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700615L: linux-input@vger.kernel.org
616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700617F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700619APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200620M: Henrik Rydberg <rydberg@euromail.se>
621L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700623F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: drivers/net/appletalk/
629F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Viresh Kumara4801672011-02-22 15:46:07 +0530631ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700632M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530633L: linux-ide@vger.kernel.org
634S: Maintained
635F: include/linux/pata_arasan_cf_data.h
636F: drivers/ata/pata_arasan_cf.c
637
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700639M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700641F: drivers/video/arcfb.c
642F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700645M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700647F: arch/arm/lib/floppydma.S
648F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Will Deacon6f965212011-07-01 14:38:53 +0100650ARM PMU PROFILING AND DEBUGGING
651M: Will Deacon <will.deacon@arm.com>
652S: Maintained
653F: arch/arm/kernel/perf_event*
654F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100655F: arch/arm/include/asm/pmu.h
656F: arch/arm/kernel/hw_breakpoint.c
657F: arch/arm/include/asm/hw_breakpoint.h
658
Russell Kingd4275352009-04-16 14:05:27 +0100659ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100662W: http://www.arm.linux.org.uk/
663S: Maintained
664F: arch/arm/
665
Stephen Boydd323c2432012-10-24 11:00:29 -0700666ARM SUB-ARCHITECTURES
667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800668S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700669F: arch/arm/mach-*/
670F: arch/arm/plat-*/
671T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
672
Russell Kingcefbf4e2009-11-22 17:40:28 +0000673ARM PRIMECELL AACI PL041 DRIVER
674M: Russell King <linux@arm.linux.org.uk>
675S: Maintained
676F: sound/arm/aaci.*
677
678ARM PRIMECELL CLCD PL110 DRIVER
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/video/amba-clcd.*
682
683ARM PRIMECELL KMI PL050 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: drivers/input/serio/ambakmi.*
687F: include/linux/amba/kmi.h
688
Russell King2761f5c2007-05-24 06:56:08 +0200689ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000690M: Russell King <linux@arm.linux.org.uk>
691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000693F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200694
Russell King1b4304e2013-02-11 15:26:27 +0000695ARM PRIMECELL UART PL010 AND PL011 DRIVERS
696M: Russell King <linux@arm.linux.org.uk>
697S: Maintained
698F: drivers/tty/serial/amba-pl01*.c
699F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700
Russell Kingcefbf4e2009-11-22 17:40:28 +0000701ARM PRIMECELL BUS SUPPORT
702M: Russell King <linux@arm.linux.org.uk>
703S: Maintained
704F: drivers/amba/
705F: include/linux/amba/bus.h
706
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710S: Maintained
711
Sergey Lapin9c784f92008-08-03 02:29:48 +0100712ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700713M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100715S: Maintained
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Maxime Ripard1b106692012-11-15 21:51:26 +0100722ARM/Allwinner A1X SoC support
723M: Maxime Ripard <maxime.ripard@free-electrons.com>
724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
725S: Maintained
726F: arch/arm/mach-sunxi/
727
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700729M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800730M: Nicolas Ferre <nicolas.ferre@atmel.com>
731M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200733W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800734W: http://www.linux4sam.org
735S: Supported
736F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100737
Rob Herring986cf2e2011-06-22 11:28:53 -0500738ARM/CALXEDA HIGHBANK ARCHITECTURE
739M: Rob Herring <rob.herring@calxeda.com>
740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
741S: Maintained
742F: arch/arm/mach-highbank/
743
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300744ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
745M: Anton Vorontsov <avorontsov@mvista.com>
746S: Maintained
747F: arch/arm/mach-cns3xxx/
748T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
749
Alexander Shiyan386ab512012-11-17 17:57:24 +0400750ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
751M: Alexander Shiyan <shc_work@mail.ru>
752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
753S: Odd Fixes
754F: arch/arm/mach-clps711x/
755
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100757M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000758M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800760S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100761F: arch/arm/mach-ep93xx/
762F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763
764ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700765M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800767S: Maintained
768
Russell Kingd4275352009-04-16 14:05:27 +0100769ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700772S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100773F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700774F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100775
Mike Rapoportd48134e2008-08-20 09:03:26 +0100776ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700777M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100779S: Maintained
780
Hubert Feurstein94150092009-10-07 08:36:07 +0100781ARM/CONTEC MICRO9 MACHINE SUPPORT
782M: Hubert Feurstein <hubert.feurstein@contec.at>
783S: Maintained
784F: arch/arm/mach-ep93xx/micro9.c
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788S: Maintained
789
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200790ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100793T: git git://git.berlios.de/gemini-board
794S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300795F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200796
Barry Songa990cbd2011-07-12 21:44:10 +0800797ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
798M: Barry Song <baohua.song@csr.com>
799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
800S: Maintained
801F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800802F: drivers/dma/sirf-dma.c
803F: drivers/i2c/busses/i2c-sirf.c
804F: drivers/pinctrl/pinctrl-sirf.c
805F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800806
Russell Kingd4275352009-04-16 14:05:27 +0100807ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700808M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100810W: http://www.arm.linux.org.uk/
811S: Maintained
812F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700813F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100814
Russell Kinga9da4f72008-07-12 21:42:04 +0100815ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Daniel Ribeiro <drwyrm@gmail.com>
817M: Stefan Schmidt <stefan@openezx.org>
818M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200819L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100820W: http://www.openezx.org/
821S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200822T: topgit git://git.openezx.org/openezx.git
823F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100824
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200825ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100826M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700827L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100828S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700829T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300830F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200831
Russell Kingd4275352009-04-16 14:05:27 +0100832ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700833M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700834L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100835W: http://www.arm.linux.org.uk/
836S: Maintained
837F: arch/arm/include/asm/hardware/dec21285.h
838F: arch/arm/mach-footbridge/
839
Sascha Hauer86183a52008-07-24 23:50:35 +0200840ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200843S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700844T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100845F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700846F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200847
Shawn Guo8bcb9762011-10-07 22:24:18 +0800848ARM/FREESCALE IMX6
849M: Shawn Guo <shawn.guo@linaro.org>
850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
851S: Maintained
852T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
853F: arch/arm/mach-imx/*imx6*
854
Shawn Guoa9866a092011-10-21 11:53:34 +0800855ARM/FREESCALE MXS ARM ARCHITECTURE
856M: Shawn Guo <shawn.guo@linaro.org>
857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
858S: Maintained
859T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
860F: arch/arm/mach-mxs/
861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800862ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865S: Maintained
866
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100867ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100870S: Maintained
871
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200872ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700873M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100874M: Paul Parsons <lost.distance@yahoo.com>
875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200876S: Maintained
877F: arch/arm/mach-pxa/hx4700.c
878F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100879F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200880
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100881ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200883W: www.jlime.com
884S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700885T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
886F: arch/arm/mach-sa1100/jornada720.c
887F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100888
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200889ARM/IGEP MACHINE SUPPORT
890M: Enric Balletbo i Serra <eballetbo@gmail.com>
891M: Javier Martinez Canillas <javier@dowhile0.org>
892L: linux-omap@vger.kernel.org
893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894S: Maintained
895F: arch/arm/mach-omap2/board-igep0020.c
896
Marek Vasut403d2972010-05-22 00:29:39 +0200897ARM/INCOME PXA270 SUPPORT
898M: Marek Vasut <marek.vasut@gmail.com>
899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700901F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200902
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800903ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100908
909ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700910M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700912S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800913
914ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700915M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700916M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700918S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800919
920ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700921M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800926ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800929S: Maintained
930
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200931ARM/INTEL IXP4XX ARM ARCHITECTURE
932M: Imre Kaloz <kaloz@openwrt.org>
933M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200935S: Maintained
936F: arch/arm/mach-ixp4xx/
937
Joe Perches838553c2010-10-26 14:22:59 -0700938ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100939M: Jonathan Cameron <jic23@cam.ac.uk>
940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941S: Maintained
942F: arch/arm/mach-pxa/stargate2.c
943F: drivers/pcmcia/pxa2xx_stargate2.c
944
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800945ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700946M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700947M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700949S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800950
951ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700952M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700953L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800954S: Maintained
955
956ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800959S: Maintained
960
Philipp Zabel3b8861712008-07-09 21:27:15 +0100961ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700962M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100963S: Maintained
964
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200965ARM/Marvell Armada 370 and Armada XP SOC support
966M: Jason Cooper <jason@lakedaemon.net>
967M: Andrew Lunn <andrew@lunn.ch>
968M: Gregory Clement <gregory.clement@free-electrons.com>
969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970S: Maintained
971F: arch/arm/mach-mvebu/
972
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400973ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
974M: Jason Cooper <jason@lakedaemon.net>
975M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400977S: Maintained
978F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400979F: arch/arm/mach-kirkwood/
980F: arch/arm/mach-mv78xx0/
981F: arch/arm/mach-orion5x/
982F: arch/arm/plat-orion/
983
Alexander Clouterd69ac132011-04-14 15:22:02 -0700984ARM/Orion SoC/Technologic Systems TS-78xx platform support
985M: Alexander Clouter <alex@digriz.org.uk>
986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987W: http://www.digriz.org.uk/ts78xx/kernel
988S: Maintained
989F: arch/arm/mach-orion5x/ts78xx-*
990
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000991ARM/MICREL KS8695 ARCHITECTURE
992M: Greg Ungerer <gerg@uclinux.org>
993L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994F: arch/arm/mach-ks8695
995S: Odd Fixes
996
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200997ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700998M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700999L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001000F: arch/arm/mach-pxa/mioa701.c
1001S: Maintained
1002
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001003ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001004M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001005S: Maintained
1006
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001007ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001008M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001009M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001010M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012S: Maintained
1013F: arch/arm/mach-nomadik/
1014F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001015F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001016T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001017
Andy Green9d762952009-05-19 06:41:42 -03001018ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001019M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001020L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1021W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1022S: Supported
1023
Daniel Walker0c19d212009-12-07 16:53:51 -08001024ARM/QUALCOMM MSM MACHINE SUPPORT
1025M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001026M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001027M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001028L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001029F: arch/arm/mach-msm/
1030F: drivers/video/msm/
1031F: drivers/mmc/host/msm_sdcc.c
1032F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001033F: drivers/tty/serial/msm_serial.h
1034F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001035F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001036F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001037F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001038T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001039S: Maintained
1040
Dirk Opfer8459c152005-11-06 14:27:52 +00001041ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1043M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001044S: Maintained
1045
Marek Vasut5d783a22009-07-16 13:26:48 +02001046ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001047M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001048L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001049W: http://hackndev.com
1050S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001051F: arch/arm/mach-pxa/include/mach/palmtx.h
1052F: arch/arm/mach-pxa/palmtx.c
1053F: arch/arm/mach-pxa/include/mach/palmt5.h
1054F: arch/arm/mach-pxa/palmt5.c
1055F: arch/arm/mach-pxa/include/mach/palmld.h
1056F: arch/arm/mach-pxa/palmld.c
1057F: arch/arm/mach-pxa/include/mach/palmte2.h
1058F: arch/arm/mach-pxa/palmte2.c
1059F: arch/arm/mach-pxa/include/mach/palmtc.h
1060F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001061
Joe Perchesb57fe922009-12-14 18:00:52 -08001062ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001064L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001065W: http://hackndev.com
1066S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001067F: arch/arm/mach-pxa/include/mach/palmtreo.h
1068F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001069
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001070ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001071M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001072L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001073W: http://hackndev.com
1074S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001075F: arch/arm/mach-pxa/include/mach/palmz72.h
1076F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001079M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1081S: Maintained
1082
1083ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086W: http://www.arm.linux.org.uk/
1087S: Maintained
1088
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001092S: Maintained
1093
Russell Kingd4275352009-04-16 14:05:27 +01001094ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001095M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001096L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001097W: http://www.arm.linux.org.uk/
1098S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001099F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1100F: arch/arm/include/asm/hardware/ioc.h
1101F: arch/arm/include/asm/hardware/iomd.h
1102F: arch/arm/include/asm/hardware/memc.h
1103F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001104F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001105F: drivers/net/ethernet/i825xx/ether1*
1106F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001107F: drivers/scsi/arm/
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001110M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111W: http://www.shark-linux.de/shark.html
1112S: Maintained
1113
Ben Dooksb21477f2009-06-13 10:46:34 +01001114ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001115M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001116M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001117L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001118L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001119W: http://www.fluff.org/ben/linux/
1120S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001121F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001122F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001123F: arch/arm/mach-s3c24*/
1124F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001125F: drivers/*/*s3c2410*
1126F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001127F: drivers/spi/spi-s3c*
1128F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001130ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001131M: Kukjin Kim <kgene.kim@samsung.com>
1132L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1133L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1134S: Maintained
1135F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001136F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001137
Kyungmin Park10ffa962011-03-04 17:36:26 -08001138ARM/SAMSUNG MOBILE MACHINE SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141S: Maintained
1142F: arch/arm/mach-s5pv210/mach-aquila.c
1143F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001144F: arch/arm/mach-exynos/mach-universal_c210.c
1145F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001146
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001147ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1148M: Kyungmin Park <kyungmin.park@samsung.com>
1149M: Kamil Debski <k.debski@samsung.com>
1150L: linux-arm-kernel@lists.infradead.org
1151L: linux-media@vger.kernel.org
1152S: Maintained
1153F: drivers/media/platform/s5p-g2d/
1154
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001155ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1156M: Kyungmin Park <kyungmin.park@samsung.com>
1157M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1158L: linux-arm-kernel@lists.infradead.org
1159L: linux-media@vger.kernel.org
1160S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001161F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001162F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001163
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001164ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1165M: Kyungmin Park <kyungmin.park@samsung.com>
1166M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001167M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001168L: linux-arm-kernel@lists.infradead.org
1169L: linux-media@vger.kernel.org
1170S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001171F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001172F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001173
1174ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1175M: Kyungmin Park <kyungmin.park@samsung.com>
1176M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1177L: linux-arm-kernel@lists.infradead.org
1178L: linux-media@vger.kernel.org
1179S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001180F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001181
Paul Mundtd48d38e2010-02-08 12:50:24 +09001182ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001183M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001184M: Magnus Damm <magnus.damm@gmail.com>
1185L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001187Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001188T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001189S: Supported
1190F: arch/arm/mach-shmobile/
1191F: drivers/sh/
1192
Dinh Nguyen66314222012-07-18 16:07:18 -06001193ARM/SOCFPGA ARCHITECTURE
1194M: Dinh Nguyen <dinguyen@altera.com>
1195S: Maintained
1196F: arch/arm/mach-socfpga/
1197
1198ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1199M: Dinh Nguyen <dinguyen@altera.com>
1200S: Maintained
1201F: drivers/clk/socfpga/
1202
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001203ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001204M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001206S: Maintained
1207
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001208ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001209M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Maintained
1212
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001214M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001216S: Maintained
1217
wanzongshun98ad6e32009-02-13 06:04:32 +01001218ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001219M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001221W: http://www.mcuos.com
1222S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001223F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001224F: drivers/input/keyboard/w90p910_keypad.c
1225F: drivers/input/touchscreen/w90p910_ts.c
1226F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001227F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001228F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001229F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001230F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001231F: drivers/usb/host/ehci-w90x900.c
1232F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001233
Linus Walleij54274d72010-04-04 10:58:03 +01001234ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001235M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237S: Supported
1238F: arch/arm/mach-u300/
1239F: drivers/i2c/busses/i2c-stu300.c
1240F: drivers/rtc/rtc-coh901331.c
1241F: drivers/watchdog/coh901327_wdt.c
1242F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001243F: drivers/mfd/ab3100*
1244F: drivers/rtc/rtc-ab3100.c
1245F: drivers/rtc/rtc-coh901331.c
1246T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001247
Linus Walleij87572882010-12-22 09:18:29 +01001248ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001249M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001250M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001251L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252S: Maintained
1253F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001254F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001255F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001257F: drivers/mfd/abx500*
1258F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001259F: drivers/mfd/dbx500*
1260F: drivers/mfd/db8500*
1261F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001262F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001263F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001264T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001265
Russell Kingd4275352009-04-16 14:05:27 +01001266ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001267M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001269W: http://www.arm.linux.org.uk/
1270S: Maintained
1271F: arch/arm/vfp/
1272
Marek Vasute66b6d82010-03-26 06:51:32 +01001273ARM/VOIPAC PXA270 SUPPORT
1274M: Marek Vasut <marek.vasut@gmail.com>
1275L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276S: Maintained
1277F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001278F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001279
Tony Prisk04529fe2012-07-24 04:19:37 +12001280ARM/VT8500 ARM ARCHITECTURE
1281M: Tony Prisk <linux@prisktech.co.nz>
1282L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1283S: Maintained
1284F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001285F: drivers/clocksource/vt8500_timer.c
1286F: drivers/gpio/gpio-vt8500.c
1287F: drivers/mmc/host/wmt-sdmmc.c
1288F: drivers/pwm/pwm-vt8500.c
1289F: drivers/rtc/rtc-vt8500.c
1290F: drivers/tty/serial/vt8500_serial.c
1291F: drivers/usb/host/ehci-vt8500.c
1292F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001293F: drivers/video/vt8500lcdfb.*
1294F: drivers/video/wm8505fb*
1295F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001296
Marek Vasute66b6d82010-03-26 06:51:32 +01001297ARM/ZIPIT Z2 SUPPORT
1298M: Marek Vasut <marek.vasut@gmail.com>
1299L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300S: Maintained
1301F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001302F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001303
Michal Simek51f29d42013-01-21 17:41:46 +01001304ARM/ZYNQ ARCHITECTURE
1305M: Michal Simek <michal.simek@xilinx.com>
1306L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1307W: http://wiki.xilinx.com
1308T: git git://git.xilinx.com/linux-xlnx.git
1309S: Supported
1310F: arch/arm/mach-zynq/
1311
Catalin Marinas38074222012-03-05 11:49:34 +00001312ARM64 PORT (AARCH64 ARCHITECTURE)
1313M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001314M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001315L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316S: Maintained
1317F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001318F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001319
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001320AS3645A LED FLASH CONTROLLER DRIVER
1321M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1322L: linux-media@vger.kernel.org
1323T: git git://linuxtv.org/media_tree.git
1324S: Maintained
1325F: drivers/media/i2c/as3645a.c
1326F: include/media/as3645a.h
1327
George Josephd58de032010-03-05 22:17:25 +01001328ASC7621 HARDWARE MONITOR DRIVER
1329M: George Joseph <george.joseph@fairview5.com>
1330L: lm-sensors@lm-sensors.org
1331S: Maintained
1332F: Documentation/hwmon/asc7621
1333F: drivers/hwmon/asc7621.c
1334
Corentin Charyb229ece2011-02-26 10:20:40 +01001335ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001336M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001338L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001339W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001341F: drivers/platform/x86/asus*.c
1342F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Andrew Morton953a6472008-11-06 12:53:28 -08001344ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001345M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001346W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001348F: Documentation/crypto/async-tx-api.txt
1349F: crypto/async_tx/
1350F: drivers/dma/
1351F: include/linux/dmaengine.h
1352F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001353
Wolfram Sanga1867d32009-09-18 22:45:51 +02001354AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001355M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001356L: linux-i2c@vger.kernel.org
1357S: Maintained
1358F: drivers/misc/eeprom/at24.c
1359F: include/linux/i2c/at24.h
1360
Randy Dunlape7839f22008-10-12 16:11:45 -07001361ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001363W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001365F: Documentation/aoe/
1366F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Joe Perches9a10a872010-12-01 09:37:55 -08001368ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001369M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001370L: linux-wireless@vger.kernel.org
1371S: Supported
1372F: drivers/net/wireless/ath/*
1373
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001374ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Jiri Slaby <jirislaby@gmail.com>
1376M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001377M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001378L: linux-wireless@vger.kernel.org
1379L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001380W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001381S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001382F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001383
Kalle Valo12e62d62011-09-13 10:21:25 +03001384ATHEROS ATH6KL WIRELESS DRIVER
1385M: Kalle Valo <kvalo@qca.qualcomm.com>
1386L: linux-wireless@vger.kernel.org
1387W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1388T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1389S: Supported
1390F: drivers/net/wireless/ath/ath6kl/
1391
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001392ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001393M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1394M: Jouni Malinen <jouni@qca.qualcomm.com>
1395M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1396M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397L: linux-wireless@vger.kernel.org
1398L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001399W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001400S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001401F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001403WILOCITY WIL6210 WIRELESS DRIVER
1404M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1405L: linux-wireless@vger.kernel.org
1406L: wil6210@qca.qualcomm.com
1407S: Supported
1408W: http://wireless.kernel.org/en/users/Drivers/wil6210
1409F: drivers/net/wireless/ath/wil6210/
1410
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001411CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1412M: Christian Lamparter <chunkeey@googlemail.com>
1413L: linux-wireless@vger.kernel.org
1414W: http://wireless.kernel.org/en/users/Drivers/carl9170
1415S: Maintained
1416F: drivers/net/wireless/ath/carl9170/
1417
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001418ATK0110 HWMON DRIVER
1419M: Luca Tettamanti <kronos.it@gmail.com>
1420L: lm-sensors@lm-sensors.org
1421S: Maintained
1422F: drivers/hwmon/asus_atk0110.c
1423
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001424ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001425M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001427F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001428
Chris Snook7ae115b2008-09-09 03:26:57 -04001429ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001430M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001431M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001432L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001433W: http://sourceforge.net/projects/atl1
1434W: http://atl1.sourceforge.net
1435S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001436F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001439M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001440L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001441L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442W: http://linux-atm.sourceforge.net
1443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001444F: drivers/atm/
1445F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001446F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001448ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001449M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001450S: Maintained
1451F: drivers/mmc/host/atmel-mci.c
1452F: drivers/mmc/host/atmel-mci-regs.h
1453
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001454ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001455M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001456S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001457F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001458
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001459ATMEL DMA DRIVER
1460M: Nicolas Ferre <nicolas.ferre@atmel.com>
1461L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1462S: Supported
1463F: drivers/dma/at_hdmac.c
1464F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001465F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001466
Ludovic Desroches888f2802013-03-15 05:32:57 +00001467ATMEL I2C DRIVER
1468M: Ludovic Desroches <ludovic.desroches@atmel.com>
1469L: linux-i2c@vger.kernel.org
1470S: Supported
1471F: drivers/i2c/busses/i2c-at91.c
1472
Josh Wu15515542012-03-23 17:56:29 +08001473ATMEL ISI DRIVER
1474M: Josh Wu <josh.wu@atmel.com>
1475L: linux-media@vger.kernel.org
1476S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001477F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001478F: include/media/atmel-isi.h
1479
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001480ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001481M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001482L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001484F: drivers/video/atmel_lcdfb.c
1485F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001486
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001487ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001488M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001489S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001490F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001491
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001492ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001493M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001494S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001495F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001496
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001497ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1498M: Nicolas Ferre <nicolas.ferre@atmel.com>
1499L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500S: Supported
1501F: drivers/misc/atmel_tclib.c
1502F: drivers/clocksource/tcb_clksrc.c
1503
Josh Wuff2675d2012-03-23 17:56:55 +08001504ATMEL TSADCC DRIVER
1505M: Josh Wu <josh.wu@atmel.com>
1506L: linux-input@vger.kernel.org
1507S: Supported
1508F: drivers/input/touchscreen/atmel_tsadcc.c
1509
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001510ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001511M: Nicolas Ferre <nicolas.ferre@atmel.com>
1512L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001518L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519W: http://www.thekelleys.org.uk/atmel
1520W: http://atmelwlandriver.sourceforge.net/
1521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Chris Wrighta92b7b82005-07-07 18:12:23 -07001524AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001525M: Al Viro <viro@zeniv.linux.org.uk>
1526M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001527L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001528W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001529T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001531F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001532F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001533F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001534
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001535AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001537W: http://miguelojeda.es/auxdisplay.htm
1538W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/auxdisplay/
1541F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001542
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001543AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001544M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1545M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001546W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001547W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001550F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001551
1552AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001553M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1554M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001556F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001559M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001561W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001563F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001564F: include/net/ax25.h
1565F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001567AZ6007 DVB DRIVER
1568M: Mauro Carvalho Chehab <mchehab@redhat.com>
1569L: linux-media@vger.kernel.org
1570W: http://linuxtv.org
1571T: git git://linuxtv.org/media_tree.git
1572S: Maintained
1573F: drivers/media/usb/dvb-usb-v2/az6007.c
1574
Hans Verkuil67773762012-11-23 07:09:23 -03001575AZTECH FM RADIO RECEIVER DRIVER
1576M: Hans Verkuil <hverkuil@xs4all.nl>
1577L: linux-media@vger.kernel.org
1578T: git git://linuxtv.org/media_tree.git
1579W: http://linuxtv.org
1580S: Maintained
1581F: drivers/media/radio/radio-aztech*
1582
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001583B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001586L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001587W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001590
1591B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001592M: Larry Finger <Larry.Finger@lwfinger.net>
1593M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001595L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001596W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001598F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001599
Richard Purdie300abeb2007-02-07 22:21:07 +00001600BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/video/backlight/
1604F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001605
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001606BATMAN ADVANCED
1607M: Marek Lindner <lindner_marek@yahoo.de>
1608M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001609M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001610L: b.a.t.m.a.n@lists.open-mesh.org
1611W: http://www.open-mesh.org/
1612S: Maintained
1613F: net/batman-adv/
1614
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001615BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001616M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001617L: linux-hams@vger.kernel.org
1618W: http://www.baycom.org/~tom/ham/ham.html
1619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001621
1622BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001623S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001624F: Documentation/filesystems/befs.txt
1625F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001626
1627BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001628M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: Documentation/filesystems/bfs.txt
1631F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001632F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001633
Bryan Wu1394f032007-05-06 14:50:22 -07001634BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001636L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001637W: http://blackfin.uclinux.org
1638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001639F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001640
Bryan Wue190d6b2007-07-17 14:43:44 +08001641BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001642L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001643W: http://blackfin.uclinux.org
1644S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001645F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001646
Mike Frysinger566da5b2007-06-11 15:31:30 +08001647BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001648M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001649L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001650W: http://blackfin.uclinux.org
1651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001652F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001653
Mike Frysinger936ed492010-03-10 15:20:38 -08001654BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001655M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001656L: uclinux-dist-devel@blackfin.uclinux.org
1657W: http://blackfin.uclinux.org
1658S: Supported
1659F: drivers/mmc/host/bfin_sdh.c
1660
Bryan Wu1394f032007-05-06 14:50:22 -07001661BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001663L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001664W: http://blackfin.uclinux.org
1665S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001666F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001667
Bryan Wu1e6d3202007-07-15 02:50:02 +08001668BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001670L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001671W: http://blackfin.uclinux.org
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001674
Bryan Wud24ecfc2007-05-01 23:26:32 +02001675BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001677L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001678W: http://blackfin.uclinux.org/
1679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001680F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001681
Scott Jiang1e204372013-01-18 17:09:47 -03001682BLACKFIN MEDIA DRIVER
1683M: Scott Jiang <scott.jiang.linux@gmail.com>
1684L: uclinux-dist-devel@blackfin.uclinux.org
1685W: http://blackfin.uclinux.org/
1686S: Supported
1687F: drivers/media/platform/blackfin/
1688F: drivers/media/i2c/adv7183*
1689F: drivers/media/i2c/vs6624*
1690
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001691BLINKM RGB LED DRIVER
1692M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1693S: Maintained
1694F: drivers/leds/leds-blinkm.c
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001698T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001700F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Joern Engel2b54aae2008-02-06 01:38:02 -08001702BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001704L: linux-mtd@lists.infradead.org
1705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001706F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001707
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001708BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001709M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001710M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001711M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001712L: linux-bluetooth@vger.kernel.org
1713W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001714T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1715T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001717F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001720M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001721M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001722M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001723L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001724W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001725T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1726T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001728F: net/bluetooth/
1729F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001732M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001733M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001734L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001735W: http://sourceforge.net/projects/bonding/
1736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001737F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001738F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Gary Zambrano39105892006-06-22 17:26:20 -07001740BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001741M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001742L: netdev@vger.kernel.org
1743S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001744F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001745
Michael Chan948c51e2006-06-04 02:51:39 -07001746BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001747M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001748L: netdev@vger.kernel.org
1749S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001750F: drivers/net/ethernet/broadcom/bnx2.*
1751F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001752
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001753BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755L: netdev@vger.kernel.org
1756S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001757F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001758
Stephen Warrenf680f252012-09-15 00:18:54 -06001759BROADCOM BCM2835 ARM ARCHICTURE
1760M: Stephen Warren <swarren@wwwdotorg.org>
1761L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1762T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1763S: Maintained
1764F: arch/arm/mach-bcm2835/
1765F: arch/arm/boot/dts/bcm2835*
1766F: arch/arm/configs/bcm2835_defconfig
1767F: drivers/*/*bcm2835*
1768
Michael Chan948c51e2006-06-04 02:51:39 -07001769BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001770M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001771M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001772L: netdev@vger.kernel.org
1773S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001774F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001775
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001776BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1777M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001778M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001779M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001780M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001781L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001782L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001783S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001784F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001785
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001786BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1787M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1788L: linux-scsi@vger.kernel.org
1789S: Supported
1790F: drivers/scsi/bnx2fc/
1791
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001792BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1793M: Rafał Miłecki <zajec5@gmail.com>
1794L: linux-wireless@vger.kernel.org
1795S: Maintained
1796F: drivers/bcma/
1797F: include/linux/bcma/
1798
Jing Huang7725ccf2009-09-23 17:46:15 -07001799BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001800M: Anil Gurumurthy <agurumur@brocade.com>
1801M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001802L: linux-scsi@vger.kernel.org
1803S: Supported
1804F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001805
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001806BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1807M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808L: netdev@vger.kernel.org
1809S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001810F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001811
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001812BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001813M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001814L: linux-scsi@vger.kernel.org
1815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001816F: block/bsg.c
1817F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001818F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001819
Clemens Ladischaf399172011-01-10 16:32:54 +01001820BT87X AUDIO DRIVER
1821M: Clemens Ladisch <clemens@ladisch.de>
1822L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1823T: git git://git.alsa-project.org/alsa-kernel.git
1824S: Maintained
1825F: Documentation/sound/alsa/Bt87x.txt
1826F: sound/pci/bt87x.c
1827
Michael Bueschff1d5c22008-07-25 01:46:10 -07001828BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001829M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830W: http://bu3sch.de/btgpio.php
1831S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001832F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001833
Joe Percheseb1eb042009-01-21 10:49:16 -05001834BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001835M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001836L: linux-btrfs@vger.kernel.org
1837W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001838Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001839T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: Documentation/filesystems/btrfs.txt
1842F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001845M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001846L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001847W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001848T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001849S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001850F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001851F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Clemens Ladischaf399172011-01-10 16:32:54 +01001853C-MEDIA CMI8788 DRIVER
1854M: Clemens Ladisch <clemens@ladisch.de>
1855L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1856T: git git://git.alsa-project.org/alsa-kernel.git
1857S: Maintained
1858F: sound/pci/oxygen/
1859
Mark Salter21413552011-10-04 11:21:42 -04001860C6X ARCHITECTURE
1861M: Mark Salter <msalter@redhat.com>
1862M: Aurelien Jacquiot <a-jacquiot@ti.com>
1863L: linux-c6x-dev@linux-c6x.org
1864W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1865S: Maintained
1866F: arch/c6x/
1867
David Howellsa5432f52009-04-20 15:46:45 +01001868CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001869M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001870L: linux-cachefs@redhat.com
1871S: Supported
1872F: Documentation/filesystems/caching/cachefiles.txt
1873F: fs/cachefiles/
1874
Hans Verkuilc815ca32012-11-23 07:05:54 -03001875CADET FM/AM RADIO RECEIVER DRIVER
1876M: Hans Verkuil <hverkuil@xs4all.nl>
1877L: linux-media@vger.kernel.org
1878T: git git://linuxtv.org/media_tree.git
1879W: http://linuxtv.org
1880S: Maintained
1881F: drivers/media/radio/radio-cadet*
1882
Jonathan Corbet77d51402007-03-22 19:44:17 -03001883CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001884M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001885L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001886T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001888F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001889F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001890
Joe Perches201b6ba2010-09-07 20:33:24 +00001891CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001892M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001893L: netdev@vger.kernel.org
1894S: Supported
1895F: Documentation/networking/caif/
1896F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001897F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001898F: include/net/caif/
1899F: net/caif/
1900
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001901CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001902M: Muli Ben-Yehuda <muli@il.ibm.com>
1903M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001904L: discuss@x86-64.org
1905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001906F: arch/x86/kernel/pci-calgary_64.c
1907F: arch/x86/kernel/tce_64.c
1908F: arch/x86/include/asm/calgary.h
1909F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001910
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001911CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001912M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001913L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001914W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001915T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001916S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001917F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001918F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001919F: include/uapi/linux/can.h
1920F: include/uapi/linux/can/bcm.h
1921F: include/uapi/linux/can/raw.h
1922F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001923
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001924CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001926M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001927L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001928W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001929T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001930S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001931F: drivers/net/can/
1932F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001933F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001934F: include/uapi/linux/can/error.h
1935F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001936
James Morris95d16c72012-03-16 12:05:48 +11001937CAPABILITIES
1938M: Serge Hallyn <serge.hallyn@canonical.com>
1939L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001940S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001941F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001942F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001943F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001944F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001945F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001946
Arnd Bergmannb8154542008-05-16 11:10:59 +02001947CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001948M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001949L: linuxppc-dev@lists.ozlabs.org
1950L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001951W: http://www.ibm.com/developerworks/power/cell/
1952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001953F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001954F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001955F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001956F: arch/powerpc/oprofile/*cell*
1957F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001958
Sage Weil9030aaf2009-10-06 11:31:15 -07001959CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001960M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001961L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001962W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001963T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001964S: Supported
1965F: Documentation/filesystems/ceph.txt
1966F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001967F: net/ceph
1968F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001969F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001970
David Vrabel18332a82008-09-17 16:34:44 +01001971CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001972L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001973S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001974F: Documentation/usb/WUSB-Design-overview.txt
1975F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001976F: drivers/usb/host/hwa-hc.c
1977F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001978F: drivers/usb/wusbcore/
1979F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001980
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001981CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001983W: http://miguelojeda.es/auxdisplay.htm
1984W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/auxdisplay/cfag12864b.c
1987F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001988
1989CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001990M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001991W: http://miguelojeda.es/auxdisplay.htm
1992W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/auxdisplay/cfag12864bfb.c
1995F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001996
Johannes Berg704232c2007-04-23 12:20:05 -07001997CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001999L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002000W: http://wireless.kernel.org/
2001T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2002T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002003S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002004F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002005F: include/net/cfg80211.h
2006F: net/wireless/*
2007X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002008
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002009CHAR and MISC DRIVERS
2010M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002011M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002012T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002013S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002014F: drivers/char/*
2015F: drivers/misc/*
2016
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002017CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002018M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002019M: Joe Perches <joe@perches.com>
2020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002021F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002022
Harry Weif8407f262011-02-25 14:44:15 -08002023CHINESE DOCUMENTATION
2024M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002025L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002026L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2027S: Maintained
2028F: Documentation/zh_CN/
2029
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002030CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2031M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2032L: linux-usb@vger.kernel.org
2033S: Maintained
2034F: drivers/usb/chipidea/
2035
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002036CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002037M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002038M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002039M: Neel Patel <neepatel@cisco.com>
2040M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002041S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002042F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002043
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002044CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002045M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046L: netdev@vger.kernel.org
2047S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002048F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002049
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002051M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002052L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002055
Timur Tabid9e9d822008-04-24 08:45:26 +10002056CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002057M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002058L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002059S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002060F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002061
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002062CLEANCACHE API
2063M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2064L: linux-kernel@vger.kernel.org
2065S: Maintained
2066F: mm/cleancache.c
2067F: include/linux/cleancache.h
2068
Russell Kingd4275352009-04-16 14:05:27 +01002069CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002071S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002072F: include/linux/clk.h
2073
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002074CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002075M: Hiral Patel <hiralpat@cisco.com>
2076M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002077M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002078L: linux-scsi@vger.kernel.org
2079S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002080F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002081
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002082CMPC ACPI DRIVER
2083M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2084M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002085L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002086S: Supported
2087F: drivers/platform/x86/classmate-laptop.c
2088
Nicolas Palix74425ee2010-06-06 17:15:01 +02002089COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002090M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002092M: Nicolas Palix <nicolas.palix@imag.fr>
2093L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002094W: http://coccinelle.lip6.fr/
2095S: Supported
2096F: scripts/coccinelle/
2097F: scripts/coccicheck
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101M: coda@cs.cmu.edu
2102L: codalist@coda.cs.cmu.edu
2103W: http://www.coda.cs.cmu.edu/
2104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002105F: Documentation/filesystems/coda.txt
2106F: fs/coda/
2107F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002108F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Mike Turquette7704add2012-05-02 18:37:45 -07002110COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002111M: Mike Turquette <mturquette@linaro.org>
2112L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2113T: git git://git.linaro.org/people/mturquette/linux.git
2114S: Maintained
2115F: drivers/clk/clk.c
2116F: drivers/clk/clk-*
2117F: include/linux/clk-pr*
2118
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002119COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002121L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002122L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002124Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002125T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002127F: Documentation/filesystems/cifs.txt
2128F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002132L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002138L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002140F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002143M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002144L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002148COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002149M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002150L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002152F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002153
Simon Arlott949be0f2007-03-06 02:47:46 -08002154CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002156L: accessrunner-general@lists.sourceforge.net
2157W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002160
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002161CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002162M: Joel Becker <jlbec@evilplan.org>
2163T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002165F: fs/configfs/
2166F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002167
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002168CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002169M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002170L: netdev@vger.kernel.org
2171S: Maintained
2172F: drivers/connector/
2173
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002174CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002175M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002176M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002177L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002178L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002179T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002181F: include/linux/cgroup*
2182F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002183F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002184
Rudolf Marekbebe4672007-05-08 17:22:02 +02002185CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002186M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002187L: lm-sensors@lm-sensors.org
2188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: Documentation/hwmon/coretemp
2190F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002193M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194W: http://www.fi.muni.cz/~kas/cosa/
2195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002196F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Florian Fainelli4371ee32009-06-01 02:43:17 -07002198CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002199M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200L: netdev@vger.kernel.org
2201S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002202F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002205M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002206M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002207L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002208L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209S: Maintained
viresh kumar45c009a2013-04-26 12:53:16 +00002210T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/cpufreq/
2212F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002214CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2215M: Viresh Kumar <viresh.kumar@linaro.org>
2216M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2217L: cpufreq@vger.kernel.org
2218L: linux-pm@vger.kernel.org
2219W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2220S: Maintained
2221F: drivers/cpufreq/arm_big_little.h
2222F: drivers/cpufreq/arm_big_little.c
2223F: drivers/cpufreq/arm_big_little_dt.c
2224
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002225CPUIDLE DRIVERS
2226M: Rafael J. Wysocki <rjw@sisk.pl>
2227M: Daniel Lezcano <daniel.lezcano@linaro.org>
2228L: linux-pm@vger.kernel.org
2229S: Maintained
2230T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2231F: drivers/cpuidle/*
2232F: include/linux/cpuidle.h
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002237F: arch/x86/kernel/cpuid.c
2238F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002240CPU POWER MONITORING SUBSYSTEM
2241M: Dominik Brodowski <linux@dominikbrodowski.net>
2242M: Thomas Renninger <trenn@suse.de>
2243S: Maintained
2244F: tools/power/cpupower
2245
Paul Jacksoned90fb42005-09-27 21:45:37 -07002246CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002247M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002248W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002249W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: Documentation/cgroups/cpusets.txt
2252F: include/linux/cpuset.h
2253F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002256W: http://sourceforge.net/projects/cramfs/
2257S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002258F: Documentation/filesystems/cramfs.txt
2259F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002262M: Mikael Starvik <starvik@axis.com>
2263M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002264L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265W: http://developer.axis.com
2266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002268F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002271M: Herbert Xu <herbert@gondor.apana.org.au>
2272M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002274T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: Documentation/crypto/
2277F: arch/*/crypto/
2278F: crypto/
2279F: drivers/crypto/
2280F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Neil Horman5b07bd52009-02-05 16:03:04 +11002282CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002284L: linux-crypto@vger.kernel.org
2285S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002286F: crypto/ansi_cprng.c
2287F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002288
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002289CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002290M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002293
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002294CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002295M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002296L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002297L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002298T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002299W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002300W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002302F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002303F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002304F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002305
Hans Verkuil3f101d92012-11-23 07:00:02 -03002306CX2341X MPEG ENCODER HELPER MODULE
2307M: Hans Verkuil <hverkuil@xs4all.nl>
2308L: linux-media@vger.kernel.org
2309T: git git://linuxtv.org/media_tree.git
2310W: http://linuxtv.org
2311S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002312F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002313F: include/media/cx2341x*
2314
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002315CX88 VIDEO4LINUX DRIVER
2316M: Mauro Carvalho Chehab <mchehab@redhat.com>
2317L: linux-media@vger.kernel.org
2318W: http://linuxtv.org
2319T: git git://linuxtv.org/media_tree.git
2320S: Odd fixes
2321F: Documentation/video4linux/cx88/
2322F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002323
Antti Palosaari91952bc2012-10-01 12:28:46 -03002324CXD2820R MEDIA DRIVER
2325M: Antti Palosaari <crope@iki.fi>
2326L: linux-media@vger.kernel.org
2327W: http://linuxtv.org/
2328W: http://palosaari.fi/linux/
2329Q: http://patchwork.linuxtv.org/project/linux-media/list/
2330T: git git://linuxtv.org/anttip/media_tree.git
2331S: Maintained
2332F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002333
Steve Wisee5ec3782008-05-20 14:06:33 -07002334CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002335M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002336L: netdev@vger.kernel.org
2337W: http://www.chelsio.com
2338S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002339F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002340
2341CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002343L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002344W: http://www.openfabrics.org
2345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002346F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002347
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002348CXGB4 ETHERNET DRIVER (CXGB4)
2349M: Dimitris Michailidis <dm@chelsio.com>
2350L: netdev@vger.kernel.org
2351W: http://www.chelsio.com
2352S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002353F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002354
2355CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2356M: Steve Wise <swise@chelsio.com>
2357L: linux-rdma@vger.kernel.org
2358W: http://www.openfabrics.org
2359S: Supported
2360F: drivers/infiniband/hw/cxgb4/
2361
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002362CXGB4VF ETHERNET DRIVER (CXGB4VF)
2363M: Casey Leedom <leedom@chelsio.com>
2364L: netdev@vger.kernel.org
2365W: http://www.chelsio.com
2366S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002367F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002368
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002369STMMAC ETHERNET DRIVER
2370M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2371L: netdev@vger.kernel.org
2372W: http://www.stlinux.com
2373S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002374F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002377M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002378L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://www.arm.linux.org.uk/
2380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002381F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002385S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002386F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002387F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002388F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002392S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002393F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002395CYPRESS_FIRMWARE MEDIA DRIVER
2396M: Antti Palosaari <crope@iki.fi>
2397L: linux-media@vger.kernel.org
2398W: http://linuxtv.org/
2399W: http://palosaari.fi/linux/
2400Q: http://patchwork.linuxtv.org/project/linux-media/list/
2401T: git git://linuxtv.org/anttip/media_tree.git
2402S: Maintained
2403F: drivers/media/common/cypress_firmware*
2404
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002405CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002406M: Javier Martinez Canillas <javier@dowhile0.org>
2407L: linux-input@vger.kernel.org
2408S: Maintained
2409F: drivers/input/touchscreen/cyttsp*
2410F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002413M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414W: http://yaina.de/jreuter/
2415W: http://www.qsl.net/dl1bke/
2416L: linux-hams@vger.kernel.org
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: net/ax25/af_ax25.c
2419F: net/ax25/ax25_dev.c
2420F: net/ax25/ax25_ds_*
2421F: net/ax25/ax25_in.c
2422F: net/ax25/ax25_out.c
2423F: net/ax25/ax25_timer.c
2424F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002426DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002427L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002428S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002430F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002431
2432DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002433M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002440M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Ali Akcaagac <aliakc@web.de>
2442M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002444L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445L: http://lists.twibble.org/mailman/listinfo/dc395x/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: Documentation/scsi/dc395x.txt
2448F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002450DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002451M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002452L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002453W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002456F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002457F: include/linux/tfrc.h
2458F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461W: http://linux-decnet.sourceforge.net
2462L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002463S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002464F: Documentation/networking/decnet.txt
2465F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002468M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002470F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002472DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002474L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002476F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002479S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002480F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002481F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Doug Warzecha90563ec2005-09-06 15:17:15 -07002483DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002484M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002486F: Documentation/dcdbas.txt
2487F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002488
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002489DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002490M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002491S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002492F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002493
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002494DESIGNWARE USB2 DRD IP DRIVER
2495M: Paul Zimmerman <paulz@synopsys.com>
2496L: linux-usb@vger.kernel.org
2497S: Maintained
2498F: drivers/staging/dwc2/
2499
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002500DESIGNWARE USB3 DRD IP DRIVER
2501M: Felipe Balbi <balbi@ti.com>
2502L: linux-usb@vger.kernel.org
2503L: linux-omap@vger.kernel.org
2504T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2505S: Maintained
2506F: drivers/usb/dwc3/
2507
Kyungmin Park89d07762012-01-10 15:09:09 -08002508DEVICE FREQUENCY (DEVFREQ)
2509M: MyungJoo Ham <myungjoo.ham@samsung.com>
2510M: Kyungmin Park <kyungmin.park@samsung.com>
2511L: linux-kernel@vger.kernel.org
2512S: Maintained
2513F: drivers/devfreq/
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
2519
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002520DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002521M: Alasdair Kergon <agk@redhat.com>
2522M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002523L: dm-devel@redhat.com
2524W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002525Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002526T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: Documentation/device-mapper/
2529F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002530F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002531F: include/linux/device-mapper.h
2532F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002533
Guenter Roeck335d7c52011-01-26 11:45:49 -08002534DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002535M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002536L: linux-i2c@vger.kernel.org
2537S: Maintained
2538F: drivers/i2c/busses/i2c-diolan-u2c.c
2539
Randy Dunlape7839f22008-10-12 16:11:45 -07002540DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002543F: Documentation/filesystems/dnotify.txt
2544F: fs/notify/dnotify/
2545F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002548M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2550W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2551W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2552S: Maintained
2553
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002554DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002557F: Documentation/filesystems/quota.txt
2558F: fs/quota/
2559F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002560F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Bernie Thompson702686a2012-03-01 13:52:13 -08002562DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2563M: Bernie Thompson <bernie@plugable.com>
2564L: linux-fbdev@vger.kernel.org
2565S: Maintained
2566W: http://plugable.com/category/projects/udlfb/
2567F: drivers/video/udlfb.c
2568F: include/video/udlfb.h
2569F: Documentation/fb/udlfb.txt
2570
Randy Dunlape7839f22008-10-12 16:11:45 -07002571DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002572M: Christine Caulfield <ccaulfie@redhat.com>
2573M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002574L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002575W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002576T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002578F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002579
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302580DMA BUFFER SHARING FRAMEWORK
2581M: Sumit Semwal <sumit.semwal@linaro.org>
2582S: Maintained
2583L: linux-media@vger.kernel.org
2584L: dri-devel@lists.freedesktop.org
2585L: linaro-mm-sig@lists.linaro.org
2586F: drivers/base/dma-buf*
2587F: include/linux/dma-buf*
2588F: Documentation/dma-buf-sharing.txt
2589T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2590
Dan Williamsb3e5f262007-08-07 10:26:35 -07002591DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002592M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002593M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002595F: drivers/dma/
2596F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302597T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2598T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002599
Juerg Haefligerb8250372007-06-09 10:11:16 -04002600DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002602L: lm-sensors@lm-sensors.org
2603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002604F: Documentation/hwmon/dme1737
2605F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002606
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002607DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002608M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002609L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002611F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002612
Joe Perches7d2c86b2009-04-07 20:59:01 -07002613DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002614M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002615L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002616T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002618F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002621M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622L: blinux-list@redhat.com
2623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002624F: drivers/char/dtlk.c
2625F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002627DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002628M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002629L: linux-scsi@vger.kernel.org
2630W: http://www.adaptec.com/
2631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/scsi/dpt*
2633F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002634
Philipp Reisnerb411b362009-09-25 16:07:19 -07002635DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002636P: Philipp Reisner
2637P: Lars Ellenberg
2638M: drbd-dev@lists.linbit.com
2639L: drbd-user@lists.linbit.com
2640W: http://www.drbd.org
2641T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2642T: git git://git.drbd.org/drbd-8.3.git
2643S: Supported
2644F: drivers/block/drbd/
2645F: lib/lru_cache.c
2646F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002647
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002648DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002649M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002650T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002652F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002653F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002654F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002655F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002656F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002657F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002658F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002662L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002663T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002665F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002666F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002667F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Chris Wilson8daf7472010-09-28 14:07:26 +01002669INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002670M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002671L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002672L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002673T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002674S: Supported
2675F: drivers/gpu/drm/i915
2676F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002677F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002678
Kyungmin Park398a6d42011-11-02 11:33:16 +09002679DRM DRIVERS FOR EXYNOS
2680M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002681M: Joonyoung Shim <jy0922.shim@samsung.com>
2682M: Seung-Woo Kim <sw0312.kim@samsung.com>
2683M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002684L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002685T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002686S: Supported
2687F: drivers/gpu/drm/exynos
2688F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002689F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002690
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002691DRM DRIVERS FOR NVIDIA TEGRA
2692M: Thierry Reding <thierry.reding@avionic-design.de>
2693L: dri-devel@lists.freedesktop.org
2694L: linux-tegra@vger.kernel.org
2695T: git git://gitorious.org/thierryreding/linux.git
2696S: Maintained
2697F: drivers/gpu/drm/tegra/
2698F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2699
Alexey Klimov598df1a2012-11-28 17:16:32 -03002700DSBR100 USB FM RADIO DRIVER
2701M: Alexey Klimov <klimov.linux@gmail.com>
2702L: linux-media@vger.kernel.org
2703T: git git://linuxtv.org/media_tree.git
2704S: Maintained
2705F: drivers/media/radio/dsbr100.c
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002708M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002709L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002711F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Antti Palosaari91952bc2012-10-01 12:28:46 -03002713DVB_USB_AF9015 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/af9015*
2722
2723DVB_USB_AF9035 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/af9035*
2732
2733DVB_USB_ANYSEE MEDIA DRIVER
2734M: Antti Palosaari <crope@iki.fi>
2735L: linux-media@vger.kernel.org
2736W: http://linuxtv.org/
2737W: http://palosaari.fi/linux/
2738Q: http://patchwork.linuxtv.org/project/linux-media/list/
2739T: git git://linuxtv.org/anttip/media_tree.git
2740S: Maintained
2741F: drivers/media/usb/dvb-usb-v2/anysee*
2742
2743DVB_USB_AU6610 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/au6610*
2752
2753DVB_USB_CE6230 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/ce6230*
2762
Michael Krufkyd099dea2012-10-02 00:56:20 -03002763DVB_USB_CXUSB 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/media_tree.git
2770S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002771F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002772
Antti Palosaari91952bc2012-10-01 12:28:46 -03002773DVB_USB_EC168 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/ec168*
2782
Antti Palosaari55609832013-04-09 20:30:42 -03002783DVB_USB_GL861 MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787Q: http://patchwork.linuxtv.org/project/linux-media/list/
2788T: git git://linuxtv.org/anttip/media_tree.git
2789S: Maintained
2790F: drivers/media/usb/dvb-usb-v2/gl861*
2791
Michael Krufky8856f5f2012-10-02 00:55:50 -03002792DVB_USB_MXL111SF MEDIA DRIVER
2793M: Michael Krufky <mkrufky@linuxtv.org>
2794L: linux-media@vger.kernel.org
2795W: http://linuxtv.org/
2796W: http://github.com/mkrufky
2797Q: http://patchwork.linuxtv.org/project/linux-media/list/
2798T: git git://linuxtv.org/mkrufky/mxl111sf.git
2799S: Maintained
2800F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2801
Antti Palosaari91952bc2012-10-01 12:28:46 -03002802DVB_USB_RTL28XXU MEDIA DRIVER
2803M: Antti Palosaari <crope@iki.fi>
2804L: linux-media@vger.kernel.org
2805W: http://linuxtv.org/
2806W: http://palosaari.fi/linux/
2807Q: http://patchwork.linuxtv.org/project/linux-media/list/
2808T: git git://linuxtv.org/anttip/media_tree.git
2809S: Maintained
2810F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2811
2812DVB_USB_V2 MEDIA DRIVER
2813M: Antti Palosaari <crope@iki.fi>
2814L: linux-media@vger.kernel.org
2815W: http://linuxtv.org/
2816W: http://palosaari.fi/linux/
2817Q: http://patchwork.linuxtv.org/project/linux-media/list/
2818T: git git://linuxtv.org/anttip/media_tree.git
2819S: Maintained
2820F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2821F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2822
Jason Baronac0ac382011-08-11 14:36:43 -04002823DYNAMIC DEBUG
2824M: Jason Baron <jbaron@redhat.com>
2825S: Maintained
2826F: lib/dynamic_debug.c
2827F: include/linux/dynamic_debug.h
2828
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002829DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002830M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002831S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002832F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002833
Antti Palosaari91952bc2012-10-01 12:28:46 -03002834E4000 MEDIA DRIVER
2835M: Antti Palosaari <crope@iki.fi>
2836L: linux-media@vger.kernel.org
2837W: http://linuxtv.org/
2838W: http://palosaari.fi/linux/
2839Q: http://patchwork.linuxtv.org/project/linux-media/list/
2840T: git git://linuxtv.org/anttip/media_tree.git
2841S: Maintained
2842F: drivers/media/tuners/e4000*
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002846L: linux-eata@i-connect.net
2847L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853L: linux-scsi@vger.kernel.org
2854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002859L: linux-eata@i-connect.net
2860L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002862F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002866L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867W: http://ebtables.sourceforge.net/
2868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002870F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002871F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Antti Palosaari91952bc2012-10-01 12:28:46 -03002873EC100 MEDIA DRIVER
2874M: Antti Palosaari <crope@iki.fi>
2875L: linux-media@vger.kernel.org
2876W: http://linuxtv.org/
2877W: http://palosaari.fi/linux/
2878Q: http://patchwork.linuxtv.org/project/linux-media/list/
2879T: git git://linuxtv.org/anttip/media_tree.git
2880S: Maintained
2881F: drivers/media/dvb-frontends/ec100*
2882
Michael Halcrow237fead2006-10-04 02:16:22 -07002883ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002884M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002885M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002886L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002887W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002889F: Documentation/filesystems/ecryptfs.txt
2890F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002891
Alan Coxda9bb1d2006-01-18 17:44:13 -08002892EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002894L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002895W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002897F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002898F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002899F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002900
Borislav Petkovc476c232009-05-20 20:31:58 +02002901EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002903M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002904L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002905W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002906S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002907F: drivers/edac/amd64_edac*
2908
Ralf Baechlef65aad42012-10-17 00:39:09 +02002909EDAC-CAVIUM
2910M: Ralf Baechle <ralf@linux-mips.org>
2911M: David Daney <david.daney@cavium.com>
2912L: linux-edac@vger.kernel.org
2913L: linux-mips@linux-mips.org
2914W: bluesmoke.sourceforge.net
2915S: Supported
2916F: drivers/edac/octeon_edac*
2917
Dave Peterson0e438e32006-03-26 01:38:55 -08002918EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Mark Gross <mark.gross@intel.com>
2920M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002921L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002922W: bluesmoke.sourceforge.net
2923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002924F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002925
2926EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002927M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002928L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002929W: bluesmoke.sourceforge.net
2930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002932
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002933EDAC-GHES
2934M: Mauro Carvalho Chehab <mchehab@redhat.com>
2935L: linux-edac@vger.kernel.org
2936W: bluesmoke.sourceforge.net
2937S: Maintained
2938F: drivers/edac/ghes-edac.c
2939
Douglas Thompson6bc78402007-07-19 01:50:12 -07002940EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002941M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002942L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002943W: bluesmoke.sourceforge.net
2944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002945F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002946
2947EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002949L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002950W: bluesmoke.sourceforge.net
2951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002952F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002953
2954EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Doug Thompson <dougthompson@xmission.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/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002960
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002961EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002962M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002963L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002964W: bluesmoke.sourceforge.net
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002967
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002968EDAC-I7300
2969M: Mauro Carvalho Chehab <mchehab@redhat.com>
2970L: linux-edac@vger.kernel.org
2971W: bluesmoke.sourceforge.net
2972S: Maintained
2973F: drivers/edac/i7300_edac.c
2974
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002975EDAC-I7CORE
2976M: Mauro Carvalho Chehab <mchehab@redhat.com>
2977L: linux-edac@vger.kernel.org
2978W: bluesmoke.sourceforge.net
2979S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002980F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002981
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002982EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302984M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002985L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002986W: bluesmoke.sourceforge.net
2987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002988F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002989
2990EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002992L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002993W: bluesmoke.sourceforge.net
2994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002995F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002996
Dave Peterson0e438e32006-03-26 01:38:55 -08002997EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002998M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002999L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003000W: bluesmoke.sourceforge.net
3001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003002F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003003
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003004EDAC-SBRIDGE
3005M: Mauro Carvalho Chehab <mchehab@redhat.com>
3006L: linux-edac@vger.kernel.org
3007W: bluesmoke.sourceforge.net
3008S: Maintained
3009F: drivers/edac/sb_edac.c
3010
Clemens Ladischaf399172011-01-10 16:32:54 +01003011EDIROL UA-101/UA-1000 DRIVER
3012M: Clemens Ladisch <clemens@ladisch.de>
3013L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3014T: git git://git.alsa-project.org/alsa-kernel.git
3015S: Maintained
3016F: sound/usb/misc/ua101.c
3017
Matt Fleming1f7df952012-10-03 10:04:02 +01003018EXTENSIBLE FIRMWARE INTERFACE (EFI)
3019M: Matt Fleming <matt.fleming@intel.com>
3020L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003021T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003022S: Maintained
3023F: Documentation/x86/efi-stub.txt
3024F: arch/ia64/kernel/efi.c
3025F: arch/x86/boot/compressed/eboot.[ch]
3026F: arch/x86/include/asm/efi.h
3027F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003028F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003029F: include/linux/efi*.h
3030
Matt Flemingd68772b2013-02-08 16:27:24 +00003031EFI VARIABLE FILESYSTEM
3032M: Matthew Garrett <matthew.garrett@nebula.com>
3033M: Jeremy Kerr <jk@ozlabs.org>
3034M: Matt Fleming <matt.fleming@intel.com>
3035T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3036L: linux-efi@vger.kernel.org
3037S: Maintained
3038F: fs/efivarfs/
3039
Peter Jones85a00d92010-09-22 13:05:04 -07003040EFIFB FRAMEBUFFER DRIVER
3041L: linux-fbdev@vger.kernel.org
3042M: Peter Jones <pjones@redhat.com>
3043S: Maintained
3044F: drivers/video/efifb.c
3045
Josh Triplett0bee8d22006-07-30 03:03:58 -07003046EFS FILESYSTEM
3047W: http://aeschi.ch.eu.org/efs/
3048S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003049F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003050
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003051EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3053M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003054L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003056F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003057
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003058EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003059M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003060L: netdev@vger.kernel.org
3061S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003062F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003063
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003064EM28XX VIDEO4LINUX DRIVER
3065M: Mauro Carvalho Chehab <mchehab@redhat.com>
3066L: linux-media@vger.kernel.org
3067W: http://linuxtv.org
3068T: git git://linuxtv.org/media_tree.git
3069S: Maintained
3070F: drivers/media/usb/em28xx/
3071
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003072EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003073M: Paul Gortmaker <paul.gortmaker@windriver.com>
3074M: Matt Mackall <mpm@selenic.com>
3075M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003076L: linux-embedded@vger.kernel.org
3077S: Maintained
3078
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003079EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003080M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003081L: linux-scsi@vger.kernel.org
3082W: http://sourceforge.net/projects/lpfcxxxx
3083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003084F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003085
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003086ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003087M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003088S: Maintained
3089F: drivers/misc/cb710/
3090F: drivers/mmc/host/cb710-mmc.*
3091F: include/linux/cb710.h
3092
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003093ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3094M: Maxim Levitsky <maximlevitsky@gmail.com>
3095S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003096F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003097
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003098EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003099M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003100S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003101T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003102F: drivers/video/s1d13xxxfb.c
3103F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003106M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003107L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003108L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003109W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: include/linux/netfilter_bridge/
3112F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003115M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003116L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003118F: Documentation/filesystems/ext2.txt
3119F: fs/ext2/
3120F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
3122EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003123M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003125M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003126L: linux-ext4@vger.kernel.org
3127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: Documentation/filesystems/ext3.txt
3129F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003130
3131EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003133M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003134L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003135W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003136Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003138F: Documentation/filesystems/ext4.txt
3139F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Mimi Zoharc5532b02011-08-17 18:52:24 -04003141Extended Verification Module (EVM)
3142M: Mimi Zohar <zohar@us.ibm.com>
3143S: Supported
3144F: security/integrity/evm/
3145
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003146EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3147M: MyungJoo Ham <myungjoo.ham@samsung.com>
3148M: Chanwoo Choi <cw00.choi@samsung.com>
3149L: linux-kernel@vger.kernel.org
3150S: Maintained
3151F: drivers/extcon/
3152F: Documentation/extcon/
3153
Jingoo Han0a799512012-02-06 11:30:39 +09003154EXYNOS DP DRIVER
3155M: Jingoo Han <jg1.han@samsung.com>
3156L: linux-fbdev@vger.kernel.org
3157S: Maintained
3158F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003159F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003160
Donghwa Lee33ad3912012-03-06 11:44:58 +09003161EXYNOS MIPI DISPLAY DRIVERS
3162M: Inki Dae <inki.dae@samsung.com>
3163M: Donghwa Lee <dh09.lee@samsung.com>
3164M: Kyungmin Park <kyungmin.park@samsung.com>
3165L: linux-fbdev@vger.kernel.org
3166S: Maintained
3167F: drivers/video/exynos/exynos_mipi*
3168F: include/video/exynos_mipi*
3169
Jean Delvaree53004e2006-01-09 23:26:14 +01003170F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003171M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003172L: lm-sensors@lm-sensors.org
3173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: Documentation/hwmon/f71805f
3175F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003176
Michael Büscheea977e2012-04-02 12:14:32 -03003177FC0011 TUNER DRIVER
3178M: Michael Buesch <m@bues.ch>
3179L: linux-media@vger.kernel.org
3180S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003181F: drivers/media/tuners/fc0011.h
3182F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003183
Antti Palosaari91952bc2012-10-01 12:28:46 -03003184FC2580 MEDIA DRIVER
3185M: Antti Palosaari <crope@iki.fi>
3186L: linux-media@vger.kernel.org
3187W: http://linuxtv.org/
3188W: http://palosaari.fi/linux/
3189Q: http://patchwork.linuxtv.org/project/linux-media/list/
3190T: git git://linuxtv.org/anttip/media_tree.git
3191S: Maintained
3192F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Eric Paris88b2dbd2010-08-18 12:25:50 -04003194FANOTIFY
3195M: Eric Paris <eparis@redhat.com>
3196S: Maintained
3197F: fs/notify/fanotify/
3198F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003199F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003202M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203W: http://www.farsite.co.uk/
3204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003205F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Akinobu Mitac5408b82007-04-23 14:41:20 -07003207FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003208M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003210F: Documentation/fault-injection/
3211F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003212
Robert Lovecae727d2010-02-16 12:16:00 -08003213FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3214M: Robert Love <robert.w.love@intel.com>
3215L: devel@open-fcoe.org
3216W: www.Open-FCoE.org
3217S: Supported
3218F: drivers/scsi/libfc/
3219F: drivers/scsi/fcoe/
3220F: include/scsi/fc/
3221F: include/scsi/libfc.h
3222F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003223F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003224
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003225FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003226M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003227L: linux-fsdevel@vger.kernel.org
3228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003229F: include/linux/fcntl.h
3230F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003231F: include/uapi/linux/fcntl.h
3232F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003233F: fs/fcntl.c
3234F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003235
3236FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003237M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003238L: linux-fsdevel@vger.kernel.org
3239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003240F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003241
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003242FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003243M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003244L: lm-sensors@lm-sensors.org
3245S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003246F: drivers/hwmon/f75375s.c
3247F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003248
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003249FIREWIRE AUDIO DRIVERS
3250M: Clemens Ladisch <clemens@ladisch.de>
3251L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3252T: git git://git.alsa-project.org/alsa-kernel.git
3253S: Maintained
3254F: sound/firewire/
3255
Stefan Richtereb86ec52012-11-03 09:25:20 +01003256FIREWIRE MEDIA DRIVERS (firedtv)
3257M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3258L: linux-media@vger.kernel.org
3259L: linux1394-devel@lists.sourceforge.net
3260T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3261S: Maintained
3262F: drivers/media/firewire/
3263
Chris Boota511ce32012-04-14 17:50:35 -07003264FIREWIRE SBP-2 TARGET
3265M: Chris Boot <bootc@bootc.net>
3266L: linux-scsi@vger.kernel.org
3267L: target-devel@vger.kernel.org
3268L: linux1394-devel@lists.sourceforge.net
3269T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3270S: Maintained
3271F: drivers/target/sbp/
3272
Joe Perches7d2c86b2009-04-07 20:59:01 -07003273FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003274M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003275L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003276W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003277T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003279F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003280F: include/linux/firewire.h
3281F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003282F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003283
3284FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003285M: Ming Lei <ming.lei@canonical.com>
3286L: linux-kernel@vger.kernel.org
3287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003288F: Documentation/firmware_class/
3289F: drivers/base/firmware*.c
3290F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003291
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003292FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3293M: Joshua Morris <josh.h.morris@us.ibm.com>
3294M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3295S: Maintained
3296F: drivers/block/rsxx/
3297
Jiri Kosina8206f662012-05-18 13:52:29 +02003298FLOPPY DRIVER
3299M: Jiri Kosina <jkosina@suse.cz>
3300T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3301S: Odd fixes
3302F: drivers/block/floppy.c
3303
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003304FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003306W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003309
3310FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003311L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003312S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003313F: drivers/net/wan/dlci.c
3314F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003315
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003317M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003318L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003320Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003321T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003323F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003324F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003325F: drivers/video/
3326F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003327F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003328F: include/uapi/video/
3329F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Timur Tabia57c1882012-10-16 17:33:42 -05003331FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003332M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003333L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003334S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003335F: drivers/video/fsl-diu-fb.*
3336
Zhang Wei173acc72008-03-01 07:42:48 -07003337FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Li Yang <leoli@freescale.com>
3339M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003340L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003342F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003343
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003344FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003345M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003346L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003347L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003349F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003350
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003351FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003352M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003353L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003354L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003355S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003356F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003357F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003358
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003359FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003360M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3361M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003362L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003363L: netdev@vger.kernel.org
3364S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003365F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003366F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003367
Timur Tabid9e9d822008-04-24 08:45:26 +10003368FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003369L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003370S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003371F: arch/powerpc/sysdev/qe_lib/
3372F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003373
Joe Perchesb55ef9292009-10-26 16:49:46 -07003374FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003375M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003376L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003377L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003378S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003379F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003380
Li Yangbeaf53b2007-05-25 13:54:02 +08003381FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003382M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003383L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003384L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003385S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003386F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003387
Timur Tabid9e9d822008-04-24 08:45:26 +10003388FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003389M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003390L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003391S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003392F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003393
3394FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003395M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003396L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003397L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003398S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003399F: sound/soc/fsl/fsl*
3400F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003403M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003406F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Pavel Machek71038f52009-01-15 13:51:02 -08003408FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003409M: Pavel Machek <pavel@ucw.cz>
3410M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003411L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003413F: Documentation/power/freezing-of-tasks.txt
3414F: include/linux/freezer.h
3415F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003416
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003417FRONTSWAP API
3418M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3419L: linux-kernel@vger.kernel.org
3420S: Maintained
3421F: mm/frontswap.c
3422F: include/linux/frontswap.h
3423
David Howellsa5432f52009-04-20 15:46:45 +01003424FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003426L: linux-cachefs@redhat.com
3427S: Supported
3428F: Documentation/filesystems/caching/
3429F: fs/fscache/
3430F: include/linux/fscache*.h
3431
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003432F2FS FILE SYSTEM
3433M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3434L: linux-f2fs-devel@lists.sourceforge.net
3435W: http://en.wikipedia.org/wiki/F2FS
3436T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3437S: Maintained
3438F: Documentation/filesystems/f2fs.txt
3439F: fs/f2fs/
3440F: include/linux/f2fs_fs.h
3441
David Howells5ab7ffe2007-04-10 15:10:45 +01003442FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003443M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003445F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Jonathan Woithe20b93732008-06-11 10:14:56 +09303447FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303448M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003449L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003451F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303452
Heungjun Kim4da621b2011-11-11 08:05:33 -03003453FUJITSU M-5MO LS CAMERA ISP DRIVER
3454M: Kyungmin Park <kyungmin.park@samsung.com>
3455M: Heungjun Kim <riverful.kim@samsung.com>
3456L: linux-media@vger.kernel.org
3457S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003458F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003459F: include/media/m5mols.h
3460
Robert Gerlach2d24c492012-01-18 14:26:22 +01003461FUJITSU TABLET EXTRAS
3462M: Robert Gerlach <khnz@gmx.de>
3463L: platform-driver-x86@vger.kernel.org
3464S: Maintained
3465F: drivers/platform/x86/fujitsu-tablet.c
3466
Miklos Szeredi04578f12005-09-09 13:10:22 -07003467FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003468M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003469L: fuse-devel@lists.sourceforge.net
3470W: http://fuse.sourceforge.net/
3471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003472F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003473F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003478S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003479F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
3481GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003482M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483L: linux-scsi@vger.kernel.org
3484W: http://www.icp-vortex.com/
3485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003486F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003488GEMTEK FM RADIO RECEIVER DRIVER
3489M: Hans Verkuil <hverkuil@xs4all.nl>
3490L: linux-media@vger.kernel.org
3491T: git git://linuxtv.org/media_tree.git
3492W: http://linuxtv.org
3493S: Maintained
3494F: drivers/media/radio/radio-gemtek*
3495
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003496GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003497M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003499F: drivers/i2c/busses/i2c-gpio.c
3500F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003501
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003502GENERIC GPIO I2C MULTIPLEXER DRIVER
3503M: Peter Korsgaard <peter.korsgaard@barco.com>
3504L: linux-i2c@vger.kernel.org
3505S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003506F: drivers/i2c/muxes/i2c-mux-gpio.c
3507F: include/linux/i2c-mux-gpio.h
3508F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003509
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003510GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003511M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003514F: drivers/net/wan/c101.c
3515F: drivers/net/wan/hd6457*
3516F: drivers/net/wan/hdlc*
3517F: drivers/net/wan/n2.c
3518F: drivers/net/wan/pc300too.c
3519F: drivers/net/wan/pci200syn.c
3520F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003522GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003523M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003524L: linux-arch@vger.kernel.org
3525T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3526S: Maintained
3527F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003528F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003529
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003530GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003531M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003532L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003533S: Supported
3534F: drivers/uio/uio_pci_generic.c
3535
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003536GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003537M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003538L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003539W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003540T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3541T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003543F: Documentation/filesystems/gfs2*.txt
3544F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003545F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003546
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003547GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Hansjoerg Lipp <hjlipp@web.de>
3549M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003550L: gigaset307x-common@lists.sourceforge.net
3551W: http://gigaset307x.sourceforge.net/
3552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003553F: Documentation/isdn/README.gigaset
3554F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003555F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003556
Grant Likelya0dc00b2011-02-12 01:48:14 -07003557GPIO SUBSYSTEM
Grant Likely19624232013-04-08 11:51:42 +01003558M: Grant Likely <grant.likely@linaro.org>
Linus Walleije4651a92012-08-06 09:52:52 +02003559M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003560S: Maintained
3561T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003562F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003563F: drivers/gpio/
3564F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003565F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003566
Harry Wei71a6d0a2011-05-11 15:13:33 -07003567GRE DEMULTIPLEXER DRIVER
3568M: Dmitry Kozlov <xeb@mail.ru>
3569L: netdev@vger.kernel.org
3570S: Maintained
3571F: net/ipv4/gre.c
3572F: include/net/gre.h
3573
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003574GRETH 10/100/1G Ethernet MAC device driver
3575M: Kristoffer Glembo <kristoffer@gaisler.com>
3576L: netdev@vger.kernel.org
3577S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003578F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003579
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003580GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003582L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003583T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003584S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003585F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003586
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003587GSPCA GL860 SUBDRIVER
3588M: Olivier Lorin <o.lorin@laposte.net>
3589L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003590T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003591S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003592F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003593
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003594GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003595M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003596L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003597T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003598S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003599F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003600
3601GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003602M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003603L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003604T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003605S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003606F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003607
Brian Johnson261982f2009-07-19 15:58:56 -03003608GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003609M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003610L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003611T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003612S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003613F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003614
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003615GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003617L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003618T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003619S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003620F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003621
3622GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003623M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003624L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003625T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003626S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003627F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003628
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003629STK1160 USB VIDEO CAPTURE DRIVER
3630M: Ezequiel Garcia <elezegarcia@gmail.com>
3631L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003632T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003633S: Maintained
3634F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003635
Harry Wei71a6d0a2011-05-11 15:13:33 -07003636HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3637M: Frank Seidel <frank@f-seidel.de>
3638L: platform-driver-x86@vger.kernel.org
3639W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3640S: Maintained
3641F: drivers/platform/x86/hdaps.c
3642
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003643HDPVR USB VIDEO ENCODER DRIVER
3644M: Hans Verkuil <hverkuil@xs4all.nl>
3645L: linux-media@vger.kernel.org
3646T: git git://linuxtv.org/media_tree.git
3647W: http://linuxtv.org
3648S: Odd Fixes
3649F: drivers/media/usb/hdpvr
3650
Harry Wei71a6d0a2011-05-11 15:13:33 -07003651HWPOISON MEMORY FAILURE HANDLING
3652M: Andi Kleen <andi@firstfloor.org>
3653L: linux-mm@kvack.org
3654T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3655S: Maintained
3656F: mm/memory-failure.c
3657F: mm/hwpoison-inject.c
3658
3659HYPERVISOR VIRTUAL CONSOLE DRIVER
3660L: linuxppc-dev@lists.ozlabs.org
3661S: Odd Fixes
3662F: drivers/tty/hvc/
3663
Michael Buesch844dd052006-06-26 00:24:59 -07003664HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003665M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003666M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003667L: lm-sensors@lm-sensors.org
3668W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003669T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003670T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003671S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003672F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003673F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003674F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003675
3676HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003677M: Matt Mackall <mpm@selenic.com>
3678M: Herbert Xu <herbert@gondor.apana.org.au>
3679S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003680F: Documentation/hw_random.txt
3681F: drivers/char/hw_random/
3682F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003683
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003684HARDWARE SPINLOCK CORE
3685M: Ohad Ben-Cohen <ohad@wizery.com>
3686S: Maintained
3687F: Documentation/hwspinlock.txt
3688F: drivers/hwspinlock/hwspinlock_*
3689F: include/linux/hwspinlock.h
3690
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003692L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003694F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Antti Palosaari91952bc2012-10-01 12:28:46 -03003696HD29L2 MEDIA DRIVER
3697M: Antti Palosaari <crope@iki.fi>
3698L: linux-media@vger.kernel.org
3699W: http://linuxtv.org/
3700W: http://palosaari.fi/linux/
3701Q: http://patchwork.linuxtv.org/project/linux-media/list/
3702T: git git://linuxtv.org/anttip/media_tree.git
3703S: Maintained
3704F: drivers/media/dvb-frontends/hd29l2*
3705
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003706HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003707M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003708L: iss_storagedev@hp.com
3709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003710F: Documentation/blockdev/cpqarray.txt
3711F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003712
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003713HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003714M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003715L: iss_storagedev@hp.com
3716S: Supported
3717F: Documentation/scsi/hpsa.txt
3718F: drivers/scsi/hpsa*.[ch]
3719F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003720F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003722HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003723M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003724L: iss_storagedev@hp.com
3725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/blockdev/cciss.txt
3727F: drivers/block/cciss*
3728F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003729F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003730
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003732L: linux-fsdevel@vger.kernel.org
3733S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003734F: Documentation/filesystems/hfs.txt
3735F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
3737HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003738M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739L: linux-nvidia@lists.surfsouth.com
3740W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003742F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003744HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003745M: Pavel Machek <pavel@ucw.cz>
3746M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003747L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003749F: arch/x86/power/
3750F: drivers/base/power/
3751F: kernel/power/
3752F: include/linux/suspend.h
3753F: include/linux/freezer.h
3754F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003755F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003756
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003757HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003759L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003760T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003762F: drivers/hid/
3763F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003764F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003765
Ingo Molnar38bed542007-02-22 09:09:34 +01003766HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003768T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003770F: Documentation/timers/
3771F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003772F: kernel/time/clockevents.c
3773F: kernel/time/tick*.*
3774F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003775F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003776F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003780S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003781F: drivers/net/hamradio/dmascc.c
3782F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003784HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003786W: http://www.highpoint-tech.com
3787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003788F: Documentation/scsi/hptiop.txt
3789F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003792M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793L: linux-hippi@sunsite.dk
3794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003795F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003796F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003797F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003798F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Jouni Malinenff1d2762005-05-12 22:54:16 -04003800HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003801M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003802L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003803L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003804W: http://hostap.epitest.fi/
3805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003806F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003807
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003808HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003809L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003810S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003811F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003812
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003813HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003814M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003815S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003816F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003817
Joe Perches7d2c86b2009-04-07 20:59:01 -07003818HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003821F: Documentation/timers/hpet.txt
3822F: drivers/char/hpet.c
3823F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003824F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003825
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003826HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003827M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: arch/x86/kernel/hpet.c
3830F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Joe Perches7d2c86b2009-04-07 20:59:01 -07003838HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003839M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003840W: http://www.pharscape.org
3841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003843
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003844HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003846L: linux-input@vger.kernel.org
3847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003851M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003853F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003855Hyper-V CORE AND DRIVERS
3856M: K. Y. Srinivasan <kys@microsoft.com>
3857M: Haiyang Zhang <haiyangz@microsoft.com>
3858L: devel@linuxdriverproject.org
3859S: Maintained
3860F: drivers/hv/
3861F: drivers/hid/hid-hyperv.c
3862F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003863
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003864I2C OVER PARALLEL PORT
3865M: Jean Delvare <khali@linux-fr.org>
3866L: linux-i2c@vger.kernel.org
3867S: Maintained
3868F: Documentation/i2c/busses/i2c-parport
3869F: Documentation/i2c/busses/i2c-parport-light
3870F: drivers/i2c/busses/i2c-parport.c
3871F: drivers/i2c/busses/i2c-parport-light.c
3872
3873I2C/SMBUS CONTROLLER DRIVERS FOR PC
3874M: Jean Delvare <khali@linux-fr.org>
3875L: linux-i2c@vger.kernel.org
3876S: Maintained
3877F: Documentation/i2c/busses/i2c-ali1535
3878F: Documentation/i2c/busses/i2c-ali1563
3879F: Documentation/i2c/busses/i2c-ali15x3
3880F: Documentation/i2c/busses/i2c-amd756
3881F: Documentation/i2c/busses/i2c-amd8111
3882F: Documentation/i2c/busses/i2c-i801
3883F: Documentation/i2c/busses/i2c-nforce2
3884F: Documentation/i2c/busses/i2c-piix4
3885F: Documentation/i2c/busses/i2c-sis5595
3886F: Documentation/i2c/busses/i2c-sis630
3887F: Documentation/i2c/busses/i2c-sis96x
3888F: Documentation/i2c/busses/i2c-via
3889F: Documentation/i2c/busses/i2c-viapro
3890F: drivers/i2c/busses/i2c-ali1535.c
3891F: drivers/i2c/busses/i2c-ali1563.c
3892F: drivers/i2c/busses/i2c-ali15x3.c
3893F: drivers/i2c/busses/i2c-amd756.c
3894F: drivers/i2c/busses/i2c-amd756-s4882.c
3895F: drivers/i2c/busses/i2c-amd8111.c
3896F: drivers/i2c/busses/i2c-i801.c
3897F: drivers/i2c/busses/i2c-isch.c
3898F: drivers/i2c/busses/i2c-nforce2.c
3899F: drivers/i2c/busses/i2c-nforce2-s4985.c
3900F: drivers/i2c/busses/i2c-piix4.c
3901F: drivers/i2c/busses/i2c-sis5595.c
3902F: drivers/i2c/busses/i2c-sis630.c
3903F: drivers/i2c/busses/i2c-sis96x.c
3904F: drivers/i2c/busses/i2c-via.c
3905F: drivers/i2c/busses/i2c-viapro.c
3906
Neil Hormancb7f07a2013-02-10 11:59:03 -05003907I2C/SMBUS ISMT DRIVER
3908M: Seth Heasley <seth.heasley@intel.com>
3909M: Neil Horman <nhorman@tuxdriver.com>
3910L: linux-i2c@vger.kernel.org
3911F: drivers/i2c/busses/i2c-ismt.c
3912F: Documentation/i2c/busses/i2c-ismt
3913
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003914I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003915M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003916L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003917S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003918F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003919
Jean Delvare5b543962005-08-15 19:51:02 +02003920I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003921M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003922L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003923W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003924T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: Documentation/i2c/
3927F: drivers/i2c/
3928F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003929F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003930F: include/uapi/linux/i2c.h
3931F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003933I2C-TAOS-EVM DRIVER
3934M: Jean Delvare <khali@linux-fr.org>
3935L: linux-i2c@vger.kernel.org
3936S: Maintained
3937F: Documentation/i2c/busses/i2c-taos-evm
3938F: drivers/i2c/busses/i2c-taos-evm.c
3939
Till Harbaume8c76ee2007-05-01 23:26:35 +02003940I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003941M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003942L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003943W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003945F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003950F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003953M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003954T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955S: Maintained
3956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003958M: Tony Luck <tony.luck@intel.com>
3959M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003961T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Kent Yoder956c2032012-09-07 04:17:01 +08003965IBM Power in-Nest Crypto Acceleration
3966M: Kent Yoder <key@linux.vnet.ibm.com>
3967L: linux-crypto@vger.kernel.org
3968S: Supported
3969F: drivers/crypto/nx/
3970
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003971IBM Power 842 compression accelerator
3972M: Robert Jennings <rcj@linux.vnet.ibm.com>
3973S: Supported
3974F: drivers/crypto/nx/nx-842.c
3975F: include/linux/nx842.h
3976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003980F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
Santiago Leon9d348af2010-09-03 18:29:53 +00003982IBM Power Virtual Ethernet Device Driver
3983M: Santiago Leon <santil@linux.vnet.ibm.com>
3984L: netdev@vger.kernel.org
3985S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003986F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003987
Robert Jennings4b7652c2012-07-31 12:34:36 -05003988IBM Power Virtual SCSI/FC Device Drivers
3989M: Robert Jennings <rcj@linux.vnet.ibm.com>
3990L: linux-scsi@vger.kernel.org
3991S: Supported
3992F: drivers/scsi/ibmvscsi/
3993X: drivers/scsi/ibmvscsi/ibmvstgt.c
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995IBM ServeRAID RAID DRIVER
3996P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003999S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004000F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004002ICH LPC AND GPIO DRIVER
4003M: Peter Tyser <ptyser@xes-inc.com>
4004S: Maintained
4005F: drivers/mfd/lpc_ich.c
4006F: drivers/gpio/gpio-ich.c
4007
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004008IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004009M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004011Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004012T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004014F: Documentation/ide/
4015F: drivers/ide/
4016F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Ike Panhc6cb8c132011-08-25 22:28:45 +08004018IDEAPAD LAPTOP EXTRAS DRIVER
4019M: Ike Panhc <ike.pan@canonical.com>
4020L: platform-driver-x86@vger.kernel.org
4021W: http://launchpad.net/ideapad-laptop
4022S: Maintained
4023F: drivers/platform/x86/ideapad-laptop.c
4024
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004025IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004026M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004027L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004029F: Documentation/cdrom/ide-cd
4030F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Andy Henroid27471fd2008-10-09 11:45:22 -07004032IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004033M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004034L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004036F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004037
Sergey Lapin02cf2282009-06-08 12:18:50 +00004038IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004039M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004041L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004042W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004043T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004044S: Maintained
4045F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004046F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004047F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004048
Sean Young40ad4a32012-11-19 10:32:53 -03004049IGUANAWORKS USB IR TRANSCEIVER
4050M: Sean Young <sean@mess.org>
4051L: linux-media@vger.kernel.org
4052S: Maintained
4053F: drivers/media/rc/iguanair.c
4054
Ameya Palande9545f862012-01-10 09:00:58 -08004055IIO SUBSYSTEM AND DRIVERS
4056M: Jonathan Cameron <jic23@cam.ac.uk>
4057L: linux-iio@vger.kernel.org
4058S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004059F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004060F: drivers/staging/iio/
4061
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004062IKANOS/ADI EAGLE ADSL USB DRIVER
4063M: Matthieu Castet <castet.matthieu@free.fr>
4064M: Stanislaw Gruszka <stf_xl@wp.pl>
4065S: Maintained
4066F: drivers/usb/atm/ueagle-atm.c
4067
Guenter Roecke89ab512013-03-08 08:13:09 -08004068INA209 HARDWARE MONITOR DRIVER
4069M: Guenter Roeck <linux@roeck-us.net>
4070L: lm-sensors@lm-sensors.org
4071S: Maintained
4072F: Documentation/hwmon/ina209
4073F: Documentation/devicetree/bindings/i2c/ina209.txt
4074F: drivers/hwmon/ina209.c
4075
4076INA2XX HARDWARE MONITOR DRIVER
4077M: Guenter Roeck <linux@roeck-us.net>
4078L: lm-sensors@lm-sensors.org
4079S: Maintained
4080F: Documentation/hwmon/ina2xx
4081F: drivers/hwmon/ina2xx.c
4082F: include/linux/platform_data/ina2xx.h
4083
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004084INDUSTRY PACK SUBSYSTEM (IPACK)
4085M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4086M: Jens Taprogge <jens.taprogge@taprogge.org>
4087M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4088L: industrypack-devel@lists.sourceforge.net
4089W: http://industrypack.sourceforge.net
4090S: Maintained
4091F: drivers/ipack/
4092
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004093INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004094M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004096F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004097
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004099L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004100S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004101F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
4103INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004104M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004105M: Sean Hefty <sean.hefty@intel.com>
4106M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004107L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004108W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004109Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004110T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004112F: Documentation/infiniband/
4113F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004114F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Robert Lovec9f04f52005-07-15 12:21:07 -04004116INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004117M: John McCutchan <john@johnmccutchan.com>
4118M: Robert Love <rlove@rlove.org>
4119M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004121F: Documentation/filesystems/inotify.txt
4122F: fs/notify/inotify/
4123F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004124F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004125
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004126INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4128M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004129L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004130Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004131T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004134F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004135F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004136F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004137
Henrik Rydberg3267a872010-06-24 19:10:40 -07004138INPUT MULTITOUCH (MT) PROTOCOL
4139M: Henrik Rydberg <rydberg@euromail.se>
4140L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004141T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004142S: Maintained
4143F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004144F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004145K: \b(ABS|SYN)_MT_
4146
Dave Jiang4ac13e12011-07-29 17:16:55 -07004147INTEL C600 SERIES SAS CONTROLLER DRIVER
4148M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004149M: Lukasz Dorau <lukasz.dorau@intel.com>
4150M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004151M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004152L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004153T: git git://git.code.sf.net/p/intel-sas/isci
4154S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004155F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004156
Len Brown26717172010-03-08 14:07:30 -05004157INTEL IDLE DRIVER
4158M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004159L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004160T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004161S: Supported
4162F: drivers/idle/intel_idle.c
4163
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004164INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004165M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004166L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004168F: Documentation/fb/intelfb.txt
4169F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004173L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304177INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004179L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304180W: http://www.lesswatts.org/projects/acpi/
4181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004182F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304183
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004185M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004187F: arch/x86/kernel/microcode_core.c
4188F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004190INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004191M: Dan Williams <djbw@fb.com>
4192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004194
David Woodhouse6c8909b2008-10-18 16:12:17 +01004195INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004197L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004198T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004199S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004200F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004201F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004202
Dan Williamsb3e5f262007-08-07 10:26:35 -07004203INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004204M: Dan Williams <djbw@fb.com>
4205S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004206F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004207
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004208INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004211F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4212F: arch/arm/mach-ixp4xx/include/mach/npe.h
4213F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4214F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004215F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004216F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004217
Michael Buesch844dd052006-06-26 00:24:59 -07004218INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004219M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004221F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004222
Jeff Kirsher0d164402010-10-05 01:15:17 +00004223INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4225M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4226M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004227M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4228M: Don Skidmore <donald.c.skidmore@intel.com>
4229M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004230M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004231M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004232M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004233M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004234L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004235W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004236W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004237T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4238T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004240F: Documentation/networking/e100.txt
4241F: Documentation/networking/e1000.txt
4242F: Documentation/networking/e1000e.txt
4243F: Documentation/networking/igb.txt
4244F: Documentation/networking/igbvf.txt
4245F: Documentation/networking/ixgb.txt
4246F: Documentation/networking/ixgbe.txt
4247F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004248F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004250INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4251M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004252L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004254F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004255F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004256F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004257
Shane Wang4bd96a72010-03-10 14:36:10 +08004258INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004259M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4260M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004261M: Shane Wang <shane.wang@intel.com>
4262L: tboot-devel@lists.sourceforge.net
4263W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004264T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004265S: Supported
4266F: Documentation/intel_txt.txt
4267F: include/linux/tboot.h
4268F: arch/x86/kernel/tboot.c
4269
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004270INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004272M: linux-wimax@intel.com
4273L: wimax@linuxwimax.org
4274S: Supported
4275W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004276F: Documentation/wimax/README.i2400m
4277F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004278F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004279
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004280INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4281M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004282L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004283S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004284F: drivers/net/wireless/iwlegacy/
4285
Zhu Yib481de92007-09-25 17:54:57 -07004286INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004287M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004288M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004289M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004290L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004291W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004292T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004294F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004295
Tomas Winklerde8fe022012-05-09 16:39:02 +03004296INTEL MANAGEMENT ENGINE (mei)
4297M: Tomas Winkler <tomas.winkler@intel.com>
4298L: linux-kernel@vger.kernel.org
4299S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004300F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004301F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004302F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004303
Ralf Baechlecb109a02007-08-30 23:56:30 -07004304IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004305M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306L: linux-mips@linux-mips.org
4307S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004308F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Ralf Baechlecb109a02007-08-30 23:56:30 -07004310IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004311M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004312L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004313S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004314F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004315
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004316IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004317M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Francois Romieu1202d6f2007-09-17 17:13:55 -07004321IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004322M: Francois Romieu <romieu@fr.zoreil.com>
4323M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004324L: netdev@vger.kernel.org
4325S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004326F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004327
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004328IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004329M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004330L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004333
Corey Minyard4409ebe2006-04-20 02:43:12 -07004334IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004336L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004337W: http://openipmi.sourceforge.net/
4338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004339F: Documentation/IPMI.txt
4340F: drivers/char/ipmi/
4341F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004342F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004343
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004344IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004345M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004346L: linux-scsi@vger.kernel.org
4347W: http://www.adaptec.com/
4348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004350
4351IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Wensong Zhang <wensong@linux-vs.org>
4353M: Simon Horman <horms@verge.net.au>
4354M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004355L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004356L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004359F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004360F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004361F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
Randy Dunlape7839f22008-10-12 16:11:45 -07004363IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004364M: Jiri Kosina <jkosina@suse.cz>
4365M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004366S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004367F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004369IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004370M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004371L: netdev@vger.kernel.org
4372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004373F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004374F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004375F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004376
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004379L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004380L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004382S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004383T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004384F: Documentation/networking/irda.txt
4385F: drivers/net/irda/
4386F: include/net/irda/
4387F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004389IRQ SUBSYSTEM
4390M: Thomas Gleixner <tglx@linutronix.de>
4391S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004392T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004393F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004394F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004395
Grant Likely7ab3a832012-02-14 14:06:47 -07004396IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4397M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely19624232013-04-08 11:51:42 +01004398M: Grant Likely <grant.likely@linaro.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004399T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4400S: Maintained
4401F: Documentation/IRQ-domain.txt
4402F: include/linux/irqdomain.h
4403F: kernel/irq/irqdomain.c
4404
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004405ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004406M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004408F: Documentation/isapnp.txt
4409F: drivers/pnp/isapnp/
4410F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004411
Hans Verkuild39b8422012-11-23 07:07:02 -03004412ISA RADIO MODULE
4413M: Hans Verkuil <hverkuil@xs4all.nl>
4414L: linux-media@vger.kernel.org
4415T: git git://linuxtv.org/media_tree.git
4416W: http://linuxtv.org
4417S: Maintained
4418F: drivers/media/radio/radio-isa*
4419
Harry Wei71a6d0a2011-05-11 15:13:33 -07004420iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4421M: Peter Jones <pjones@redhat.com>
4422M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4423S: Maintained
4424F: drivers/firmware/iscsi_ibft*
4425
Mike Christie14816b1e2007-11-28 16:22:06 -08004426ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004428L: open-iscsi@googlegroups.com
4429W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004430T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004432F: drivers/scsi/*iscsi*
4433F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004434
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004437L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004438L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004440T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/isdn/
4443F: drivers/isdn/
4444F: include/linux/isdn.h
4445F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004446F: include/uapi/linux/isdn.h
4447F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
4449ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004451L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452W: http://www.melware.de
4453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004454F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Jean Delvared6248702010-03-05 22:17:20 +01004456IT87 HARDWARE MONITORING DRIVER
4457M: Jean Delvare <khali@linux-fr.org>
4458L: lm-sensors@lm-sensors.org
4459S: Maintained
4460F: Documentation/hwmon/it87
4461F: drivers/hwmon/it87.c
4462
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004463IT913X MEDIA DRIVER
4464M: Malcolm Priestley <tvboxspy@gmail.com>
4465L: linux-media@vger.kernel.org
4466W: http://linuxtv.org/
4467Q: http://patchwork.linuxtv.org/project/linux-media/list/
4468S: Maintained
4469F: drivers/media/usb/dvb-usb-v2/it913x*
4470
4471IT913X FE MEDIA DRIVER
4472M: Malcolm Priestley <tvboxspy@gmail.com>
4473L: linux-media@vger.kernel.org
4474W: http://linuxtv.org/
4475Q: http://patchwork.linuxtv.org/project/linux-media/list/
4476S: Maintained
4477F: drivers/media/dvb-frontends/it913x-fe*
4478
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004479IT913X MEDIA DRIVER
4480M: Antti Palosaari <crope@iki.fi>
4481L: linux-media@vger.kernel.org
4482W: http://linuxtv.org/
4483W: http://palosaari.fi/linux/
4484Q: http://patchwork.linuxtv.org/project/linux-media/list/
4485T: git git://linuxtv.org/anttip/media_tree.git
4486S: Maintained
4487F: drivers/media/tuners/it913x*
4488
Hans Verkuil91821ff2007-12-02 09:35:33 -03004489IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004490M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004491L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004492L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004493T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004494W: http://www.ivtvdriver.org
4495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004496F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004497F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004498F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004499
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004500IX2505V MEDIA DRIVER
4501M: Malcolm Priestley <tvboxspy@gmail.com>
4502L: linux-media@vger.kernel.org
4503W: http://linuxtv.org/
4504Q: http://patchwork.linuxtv.org/project/linux-media/list/
4505S: Maintained
4506F: drivers/media/dvb-frontends/ix2505v*
4507
Guenter Roeck4453d732010-08-09 17:21:08 -07004508JC42.4 TEMPERATURE SENSOR DRIVER
4509M: Guenter Roeck <linux@roeck-us.net>
4510L: lm-sensors@lm-sensors.org
4511S: Maintained
4512F: drivers/hwmon/jc42.c
4513F: Documentation/hwmon/jc42
4514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004515JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004516M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004517L: jfs-discussion@lists.sourceforge.net
4518W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004519T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004521F: Documentation/filesystems/jfs.txt
4522F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004523
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004524JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004525M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004526L: netdev@vger.kernel.org
4527S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004528F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004531M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004532L: linux-mtd@lists.infradead.org
4533W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004535F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004536F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Josh Triplettde456d32006-07-30 03:04:00 -07004538JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004540M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004541L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004542S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004543F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004544F: include/linux/jbd.h
4545
4546JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4547M: "Theodore Ts'o" <tytso@mit.edu>
4548L: linux-ext4@vger.kernel.org
4549S: Maintained
4550F: fs/jbd2/
4551F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004552
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004553JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004554M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004555L: linux-serial@vger.kernel.org
4556S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004557F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004558
Clemens Ladischaf399172011-01-10 16:32:54 +01004559K10TEMP HARDWARE MONITORING DRIVER
4560M: Clemens Ladisch <clemens@ladisch.de>
4561L: lm-sensors@lm-sensors.org
4562S: Maintained
4563F: Documentation/hwmon/k10temp
4564F: drivers/hwmon/k10temp.c
4565
Rudolf Marek4660cb32006-10-08 22:01:26 +02004566K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004567M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004568L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/hwmon/k8temp
4571F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
4573KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004574M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004575L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004576S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004577F: Documentation/kbuild/kconfig-language.txt
4578F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Vivek Goyalea6c2082006-05-20 14:59:55 -07004580KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004581M: Vivek Goyal <vgoyal@redhat.com>
4582M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004583L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004584W: http://lse.sourceforge.net/kdump/
4585S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004586F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004587
Hans Verkuilf41bf022012-11-23 07:04:36 -03004588KEENE FM RADIO TRANSMITTER DRIVER
4589M: Hans Verkuil <hverkuil@xs4all.nl>
4590L: linux-media@vger.kernel.org
4591T: git git://linuxtv.org/media_tree.git
4592W: http://linuxtv.org
4593S: Maintained
4594F: drivers/media/radio/radio-keene*
4595
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004597M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004598L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004600F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Michal Marek70fb7ba2010-01-29 14:22:43 +01004602KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004603M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004604T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4605T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004606L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: Documentation/kbuild/
4609F: Makefile
4610F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004611F: scripts/basic/
4612F: scripts/mk*
4613F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
4615KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004616L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004617W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004618S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004620KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004621M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004622L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004625F: fs/nfsd/
4626F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004627F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004628F: fs/lockd/
4629F: fs/nfs_common/
4630F: net/sunrpc/
4631F: include/linux/lockd/
4632F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004633F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Avi Kivity426d62e2006-12-13 00:34:03 -08004635KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004636M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004637M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004638L: kvm@vger.kernel.org
4639W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004641F: Documentation/*/kvm.txt
4642F: arch/*/kvm/
4643F: arch/*/include/asm/kvm*
4644F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004645F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004646F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004647
Joerg Roedelad8003d2008-09-10 20:01:07 +02004648KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004649M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004650L: kvm@vger.kernel.org
4651W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004654F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004655
Hollis Blanchard513014b2008-04-16 23:28:08 -05004656KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004657M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004658L: kvm-ppc@vger.kernel.org
4659W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004660T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004662F: arch/powerpc/include/asm/kvm*
4663F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004664
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004665KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004667L: kvm-ia64@vger.kernel.org
4668W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004670F: Documentation/ia64/kvm.txt
4671F: arch/ia64/include/asm/kvm*
4672F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004673
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004674KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004675M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004676M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004677M: linux390@de.ibm.com
4678L: linux-s390@vger.kernel.org
4679W: http://www.ibm.com/developerworks/linux/linux390/
4680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004681F: Documentation/s390/kvm.txt
4682F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004683F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004684F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004685
Christoffer Dalla7494742013-01-20 18:42:26 -05004686KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4687M: Christoffer Dall <cdall@cs.columbia.edu>
4688L: kvmarm@lists.cs.columbia.edu
4689W: http://systems.cs.columbia.edu/projects/kvm-arm
4690S: Maintained
4691F: arch/arm/include/uapi/asm/kvm*
4692F: arch/arm/include/asm/kvm*
4693F: arch/arm/kvm/
4694
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004695KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004696M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004697W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004698L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004700F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004701F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004702F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004703
David Howellse9714612010-03-29 23:42:09 +01004704KEYS/KEYRINGS:
4705M: David Howells <dhowells@redhat.com>
4706L: keyrings@linux-nfs.org
4707S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004708F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004709F: include/linux/key.h
4710F: include/linux/key-type.h
4711F: include/keys/
4712F: security/keys/
4713
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004714KEYS-TRUSTED
4715M: David Safford <safford@watson.ibm.com>
4716M: Mimi Zohar <zohar@us.ibm.com>
4717L: linux-security-module@vger.kernel.org
4718L: keyrings@linux-nfs.org
4719S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004720F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004721F: include/keys/trusted-type.h
4722F: security/keys/trusted.c
4723F: security/keys/trusted.h
4724
4725KEYS-ENCRYPTED
4726M: Mimi Zohar <zohar@us.ibm.com>
4727M: David Safford <safford@watson.ibm.com>
4728L: linux-security-module@vger.kernel.org
4729L: keyrings@linux-nfs.org
4730S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004731F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004732F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004733F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004734
Jason Wessel5b778da2010-05-20 21:04:28 -05004735KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004737W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004738L: kgdb-bugreport@lists.sourceforge.net
4739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: Documentation/DocBook/kgdb.tmpl
4741F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004742F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004743F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004744F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004745F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004746
Pekka Enberg456db8c2008-04-28 22:47:29 +03004747KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004748M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004749M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004750S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004751F: Documentation/kmemcheck.txt
4752F: arch/x86/include/asm/kmemcheck.h
4753F: arch/x86/mm/kmemcheck/
4754F: include/linux/kmemcheck.h
4755F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004756
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004757KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004759S: Maintained
4760F: Documentation/kmemleak.txt
4761F: include/linux/kmemleak.h
4762F: mm/kmemleak.c
4763F: mm/kmemleak-test.c
4764
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004765KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004766M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4767M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4768M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004769M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: Documentation/kprobes.txt
4772F: include/linux/kprobes.h
4773F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004774
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004775KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004777W: http://miguelojeda.es/auxdisplay.htm
4778W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004780F: Documentation/auxdisplay/ks0108
4781F: drivers/auxdisplay/ks0108.c
4782F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004786S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004787F: Documentation/networking/lapb-module.txt
4788F: include/*/lapb.h
4789F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790
4791LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793L: linux-scsi@vger.kernel.org
4794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: Documentation/scsi/53c700.txt
4796F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
Richard Purdie263de9b2006-05-15 09:44:16 -07004798LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004799M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004801L: linux-leds@vger.kernel.org
4802T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004804F: drivers/leds/
4805F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004806
Jean Delvareb0461a42011-06-15 15:08:46 -07004807LEGACY EEPROM DRIVER
4808M: Jean Delvare <khali@linux-fr.org>
4809S: Maintained
4810F: Documentation/misc-devices/eeprom
4811F: drivers/misc/eeprom/eeprom.c
4812
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004814M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815L: legousb-devel@lists.sourceforge.net
4816W: http://legousb.sourceforge.net/
4817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004818F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Michael Krufky055616a2012-10-02 00:56:06 -03004820LG2160 MEDIA DRIVER
4821M: Michael Krufky <mkrufky@linuxtv.org>
4822L: linux-media@vger.kernel.org
4823W: http://linuxtv.org/
4824W: http://github.com/mkrufky
4825Q: http://patchwork.linuxtv.org/project/linux-media/list/
4826T: git git://linuxtv.org/mkrufky/tuners.git
4827S: Maintained
4828F: drivers/media/dvb-frontends/lg2160.*
4829
Michael Krufky6f0e7722012-10-02 00:56:00 -03004830LGDT3305 MEDIA DRIVER
4831M: Michael Krufky <mkrufky@linuxtv.org>
4832L: linux-media@vger.kernel.org
4833W: http://linuxtv.org/
4834W: http://github.com/mkrufky
4835Q: http://patchwork.linuxtv.org/project/linux-media/list/
4836T: git git://linuxtv.org/mkrufky/tuners.git
4837S: Maintained
4838F: drivers/media/dvb-frontends/lgdt3305.*
4839
Rusty Russell568a17f2007-10-25 14:12:24 +10004840LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004841M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004842L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004843W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004844S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004845F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004846F: arch/x86/lguest/
4847F: drivers/lguest/
4848F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004849F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853W: http://www.ibm.com/linux/ltc/projects/ppc
4854S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004855F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004857LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004858M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4859M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004861L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004862Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004863T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004865F: Documentation/powerpc/
4866F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
4868LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004871L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004873F: arch/powerpc/platforms/powermac/
4874F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Grant Likely77a76362008-07-12 12:11:43 -06004876LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004877M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004878L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004879T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004881F: arch/powerpc/platforms/512x/
4882F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004885M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004886M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004888L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004889T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004891F: arch/powerpc/platforms/40x/
4892F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
Grant Likely260c02a2007-10-02 12:15:34 +10004894LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004895L: linuxppc-dev@lists.ozlabs.org
Grant Likely19624232013-04-08 11:51:42 +01004896S: Unmaintained
Joe Perches11c34c72009-12-04 07:16:59 +00004897F: arch/powerpc/*/*virtex*
4898F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
Tom Rinie93adf12005-07-26 12:49:53 -07004900LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004901M: Vitaly Bordug <vitb@kernel.crashing.org>
4902M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004903W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004904L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004905S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004906F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004907
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004910W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004911L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004912S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004913F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004914F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Olof Johanssonab06ff32006-09-06 14:44:54 -05004916LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004917M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004918L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004919S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004920F: arch/powerpc/platforms/pasemi/
4921F: drivers/*/*pasemi*
4922F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004923
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004926L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927S: Supported
4928
Harry Weia23ce6d2011-02-11 16:52:20 +01004929LIS3LV02D ACCELEROMETER DRIVER
4930M: Eric Piel <eric.piel@tremplin-utc.net>
4931S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004932F: Documentation/misc-devices/lis3lv02d
4933F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004934F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004935
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004936LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004937M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004939F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004940F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004941F: include/net/llc*
4942F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004943
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004944LM73 HARDWARE MONITOR DRIVER
4945M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4946L: lm-sensors@lm-sensors.org
4947S: Maintained
4948F: drivers/hwmon/lm73.c
4949
Jean Delvare156e2d12011-07-25 21:46:11 +02004950LM78 HARDWARE MONITOR DRIVER
4951M: Jean Delvare <khali@linux-fr.org>
4952L: lm-sensors@lm-sensors.org
4953S: Maintained
4954F: Documentation/hwmon/lm78
4955F: drivers/hwmon/lm78.c
4956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004958M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004959L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004961F: Documentation/hwmon/lm83
4962F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004966L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004968F: Documentation/hwmon/lm90
4969F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004971LME2510 MEDIA DRIVER
4972M: Malcolm Priestley <tvboxspy@gmail.com>
4973L: linux-media@vger.kernel.org
4974W: http://linuxtv.org/
4975Q: http://patchwork.linuxtv.org/project/linux-media/list/
4976S: Maintained
4977F: drivers/media/usb/dvb-usb-v2/lmedm04*
4978
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004979LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Peter Zijlstra <peterz@infradead.org>
4981M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004982T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: Documentation/lockdep*.txt
4985F: Documentation/lockstat.txt
4986F: include/linux/lockdep.h
4987F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004988
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004989LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004990M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004991L: linux-ntfs-dev@lists.sourceforge.net
4992W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004994F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004995F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Joern Engelef6ada32009-11-20 22:17:12 +01004997LogFS
4998M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304999M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005000L: logfs@logfs.org
5001W: logfs.org
5002S: Maintained
5003F: fs/logfs/
5004
Roland Stiggeb62d7942013-04-02 19:37:11 +02005005LPC32XX MACHINE SUPPORT
5006M: Roland Stigge <stigge@antcom.de>
5007L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5008S: Maintained
5009F: arch/arm/mach-lpc32xx/
5010
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005011LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305012M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5013M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005014M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005015L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005016L: linux-scsi@vger.kernel.org
5017W: http://www.lsilogic.com/support
5018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005019F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305020F: drivers/scsi/mpt2sas/
5021F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005024M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025L: linux-scsi@vger.kernel.org
5026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005027F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Guenter Roecke5f5c992010-06-25 11:59:54 -07005029LTC4261 HARDWARE MONITOR DRIVER
5030M: Guenter Roeck <linux@roeck-us.net>
5031L: lm-sensors@lm-sensors.org
5032S: Maintained
5033F: Documentation/hwmon/ltc4261
5034F: drivers/hwmon/ltc4261.c
5035
Mike Frysinger81365c32008-10-29 14:01:12 -07005036LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005037M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005038M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005039M: Cyril Hrubis <chrubis@suse.cz>
5040M: Caspar Zhang <caspar@casparzhang.com>
5041M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005042L: ltp-list@lists.sourceforge.net (subscribers-only)
5043W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005044T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005045T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005046S: Maintained
5047
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005048M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005050L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005051L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5052W: http://www.linux-m32r.org/
5053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058L: linux-m68k@lists.linux-m68k.org
5059W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005060T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005063F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
5065M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005068L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005070F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071
5072M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005073M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074W: http://www.tazenda.demon.co.uk/phil/linux-hp
5075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005078M88RS2000 MEDIA DRIVER
5079M: Malcolm Priestley <tvboxspy@gmail.com>
5080L: linux-media@vger.kernel.org
5081W: http://linuxtv.org/
5082Q: http://patchwork.linuxtv.org/project/linux-media/list/
5083S: Maintained
5084F: drivers/media/dvb-frontends/m88rs2000*
5085
Alexey Klimov07a092f2012-11-12 02:57:32 -03005086MA901 MASTERKIT USB FM RADIO DRIVER
5087M: Alexey Klimov <klimov.linux@gmail.com>
5088L: linux-media@vger.kernel.org
5089T: git git://linuxtv.org/media_tree.git
5090S: Maintained
5091F: drivers/media/radio/radio-ma901.c
5092
Jiri Benc64a327a2007-05-05 11:47:08 -07005093MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005095L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005096W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005097T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5098T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005100F: Documentation/networking/mac80211-injection.txt
5101F: include/net/mac80211.h
5102F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005103
Stefano Brivio1036d862007-12-23 04:46:27 +01005104MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Stefano Brivio <stefano.brivio@polimi.it>
5106M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005107L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005108W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005109T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5110T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005112F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005113
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005114MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005116L: netdev@vger.kernel.org
5117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005118F: drivers/net/macvlan.c
5119F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005120
Michael Kerriskfaf16682005-07-31 22:34:47 -07005121MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005122M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005123W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005124L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005125S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005126
stephen hemminger44c14c12012-04-02 12:59:47 +00005127MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5128M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005129M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005130L: netdev@vger.kernel.org
5131S: Maintained
5132F: drivers/net/ethernet/marvell/sk*
5133
Stefano Brivio74cda162007-11-19 20:27:46 +01005134MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005135L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005136S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005137F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005138
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005139MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005140M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005141L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005142S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005143F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005144F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005146MARVELL MVNETA ETHERNET DRIVER
5147M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5148L: netdev@vger.kernel.org
5149S: Maintained
5150F: drivers/net/ethernet/marvell/mvneta.*
5151
Bing Zhaofcad5842011-07-13 13:11:58 -07005152MARVELL MWIFIEX WIRELESS DRIVER
5153M: Bing Zhao <bzhao@marvell.com>
5154L: linux-wireless@vger.kernel.org
5155S: Maintained
5156F: drivers/net/wireless/mwifiex/
5157
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005158MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005159M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005160L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005161S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005162F: drivers/net/wireless/mwl8k.c
5163
Pierre Ossman2a695672009-03-16 19:52:26 +01005164MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005165M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005166S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005167F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005170L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005171S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005173F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Guenter Roeckca462082012-06-01 23:28:23 -07005175MAX16065 HARDWARE MONITOR DRIVER
5176M: Guenter Roeck <linux@roeck-us.net>
5177L: lm-sensors@lm-sensors.org
5178S: Maintained
5179F: Documentation/hwmon/max16065
5180F: drivers/hwmon/max16065.c
5181
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005182MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005183M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005184L: lm-sensors@lm-sensors.org
5185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005186F: Documentation/hwmon/max6650
5187F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005188
Guenter Roecke89ab512013-03-08 08:13:09 -08005189MAX6697 HARDWARE MONITOR DRIVER
5190M: Guenter Roeck <linux@roeck-us.net>
5191L: lm-sensors@lm-sensors.org
5192S: Maintained
5193F: Documentation/hwmon/max6697
5194F: Documentation/devicetree/bindings/i2c/max6697.txt
5195F: drivers/hwmon/max6697.c
5196F: include/linux/platform_data/max6697.h
5197
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005198MAXIRADIO FM RADIO RECEIVER DRIVER
5199M: Hans Verkuil <hverkuil@xs4all.nl>
5200L: linux-media@vger.kernel.org
5201T: git git://linuxtv.org/media_tree.git
5202W: http://linuxtv.org
5203S: Maintained
5204F: drivers/media/radio/radio-maxiradio*
5205
Joe Perches127c49a2009-04-08 08:34:04 -07005206MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005207M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005208P: LinuxTV.org Project
5209L: linux-media@vger.kernel.org
5210W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005211Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005212T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005213S: Maintained
5214F: Documentation/dvb/
5215F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005216F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005217F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005218F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005219F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005220F: include/uapi/linux/dvb/
5221F: include/uapi/linux/videodev2.h
5222F: include/uapi/linux/media.h
5223F: include/uapi/linux/v4l2-*
5224F: include/uapi/linux/meye.h
5225F: include/uapi/linux/ivtv*
5226F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005227
Hans Verkuil6149a932012-11-23 07:21:19 -03005228MEDIAVISION PRO MOVIE STUDIO DRIVER
5229M: Hans Verkuil <hverkuil@xs4all.nl>
5230L: linux-media@vger.kernel.org
5231T: git git://linuxtv.org/media_tree.git
5232W: http://linuxtv.org
5233S: Odd Fixes
5234F: drivers/media/parport/pms*
5235
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005236MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005237M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005238L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005239W: http://megaraid.lsilogic.com
5240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: Documentation/scsi/megaraid.txt
5242F: drivers/scsi/megaraid.*
5243F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005244
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005245MELLANOX ETHERNET DRIVER (mlx4_en)
5246M: Amir Vadai <amirv@mellanox.com>
5247L: netdev@vger.kernel.org
5248S: Supported
5249W: http://www.mellanox.com
5250Q: http://patchwork.ozlabs.org/project/netdev/list/
5251F: drivers/net/ethernet/mellanox/mlx4/en_*
5252
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005253MEMORY MANAGEMENT
5254L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005255W: http://www.linux-mm.org
5256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005258F: include/linux/gfp.h
5259F: include/linux/mmzone.h
5260F: include/linux/memory_hotplug.h
5261F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005262F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005263
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005264MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005265M: Johannes Weiner <hannes@cmpxchg.org>
5266M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005267M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005269L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005270L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005272F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005273F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005274
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005275MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005278W: http://www.linux-mtd.infradead.org/
5279Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005280T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005282F: drivers/mtd/
5283F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005284F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
James Hogan12285942012-10-10 12:59:49 +01005286METAG ARCHITECTURE
5287M: James Hogan <james.hogan@imgtec.com>
5288S: Supported
5289F: arch/metag/
5290F: Documentation/metag/
5291F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005292F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005293F: drivers/irqchip/irq-metag.c
5294F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005295F: drivers/tty/metag_da.c
5296F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005297
Michal Simekc6375b02009-03-27 14:25:52 +01005298MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005300L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005301W: http://www.monstr.eu/fdt/
5302T: git git://git.monstr.eu/linux-2.6-microblaze.git
5303S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005304F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
5306MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005307M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005309F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310
5311MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005312M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005314W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005315T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005316Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005318F: Documentation/mips/
5319F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
Hans Verkuil08b76202012-11-23 07:15:42 -03005321MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5322M: Hans Verkuil <hverkuil@xs4all.nl>
5323L: linux-media@vger.kernel.org
5324T: git git://linuxtv.org/media_tree.git
5325W: http://linuxtv.org
5326S: Odd Fixes
5327F: drivers/media/radio/radio-miropcm20*
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005330M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005332F: include/linux/module.h
5333F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334
5335MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005338F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005339F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005340F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
Jiri Slabyb9705b62008-04-30 00:53:48 -07005342MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005343M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005345F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005346F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005347
Alexey Klimov889b2f82012-11-16 17:43:59 -03005348MR800 AVERMEDIA USB FM RADIO DRIVER
5349M: Alexey Klimov <klimov.linux@gmail.com>
5350L: linux-media@vger.kernel.org
5351T: git git://linuxtv.org/media_tree.git
5352S: Maintained
5353F: drivers/media/radio/radio-mr800.c
5354
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005355MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005356M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005357L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005359F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005360
Anisse Astier0f1006b2009-12-17 11:28:49 +01005361MSI WMI SUPPORT
5362M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005363L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005364S: Supported
5365F: drivers/platform/x86/msi-wmi.c
5366
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005367MT9M032 SENSOR DRIVER
5368M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5369L: linux-media@vger.kernel.org
5370T: git git://linuxtv.org/media_tree.git
5371S: Maintained
5372F: drivers/media/i2c/mt9m032.c
5373F: include/media/mt9m032.h
5374
5375MT9P031 SENSOR DRIVER
5376M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5377L: linux-media@vger.kernel.org
5378T: git git://linuxtv.org/media_tree.git
5379S: Maintained
5380F: drivers/media/i2c/mt9p031.c
5381F: include/media/mt9p031.h
5382
5383MT9T001 SENSOR DRIVER
5384M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5385L: linux-media@vger.kernel.org
5386T: git git://linuxtv.org/media_tree.git
5387S: Maintained
5388F: drivers/media/i2c/mt9t001.c
5389F: include/media/mt9t001.h
5390
5391MT9V032 SENSOR DRIVER
5392M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5393L: linux-media@vger.kernel.org
5394T: git git://linuxtv.org/media_tree.git
5395S: Maintained
5396F: drivers/media/i2c/mt9v032.c
5397F: include/media/mt9v032.h
5398
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005399MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005401T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005402S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005403F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005404
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005405MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005406M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005407L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005408T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005410F: drivers/mmc/
5411F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005412F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005413
David Brownell15a05802007-08-08 09:12:54 -07005414MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005415S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005416F: drivers/mmc/host/mmc_spi.c
5417F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005420M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005422F: Documentation/sound/oss/MultiSound
5423F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
Jiri Slabyd7354102006-12-08 02:38:35 -08005425MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005426S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005427F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005428F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005429
Felipe Balbi550a7372008-07-24 12:27:36 +03005430MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005431M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005432L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005433T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005435F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005436
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005437MXL5007T MEDIA DRIVER
5438M: Michael Krufky <mkrufky@linuxtv.org>
5439L: linux-media@vger.kernel.org
5440W: http://linuxtv.org/
5441W: http://github.com/mkrufky
5442Q: http://patchwork.linuxtv.org/project/linux-media/list/
5443T: git git://linuxtv.org/mkrufky/tuners.git
5444S: Maintained
5445F: drivers/media/tuners/mxl5007t.*
5446
Brice Goglin2d3cf582008-05-17 12:45:36 +02005447MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005448M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005449L: netdev@vger.kernel.org
5450W: http://www.myri.com/scs/download-Myri10GE.html
5451S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005452F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005455S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005456F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457
Daniel Mack23dc05a2011-05-18 11:28:38 +02005458NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5459M: Daniel Mack <zonque@gmail.com>
5460S: Maintained
5461L: alsa-devel@alsa-project.org
5462W: http://www.native-instruments.com
5463F: sound/usb/caiaq/
5464
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005466M: Petr Vandrovec <petr@vandrovec.name>
5467S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005468F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
5470NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472L: linux-scsi@vger.kernel.org
5473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005474F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005476NCT6775 HARDWARE MONITOR DRIVER
5477M: Guenter Roeck <linux@roeck-us.net>
5478L: lm-sensors@lm-sensors.org
5479S: Maintained
5480F: Documentation/hwmon/nct6775
5481F: drivers/hwmon/nct6775.c
5482
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005483NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005484M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005485L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005486W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005487S: Supported
5488F: drivers/infiniband/hw/nes/
5489
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005490NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005491M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005492L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005495
Jon Masonb2f5a052010-07-15 08:47:27 +00005496NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005497M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005498L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005500F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005501F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005502F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005503
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505P: Harald Welte
5506P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005507M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005508M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005509L: netfilter-devel@vger.kernel.org
5510L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005511L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512W: http://www.netfilter.org/
5513W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005514T: git git://1984.lsi.us.es/nf
5515T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005517F: include/linux/netfilter*
5518F: include/linux/netfilter/
5519F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005520F: include/uapi/linux/netfilter*
5521F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005522F: net/*/netfilter.c
5523F: net/*/netfilter/
5524F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Paul Moore4cc67732006-09-25 15:57:13 -07005526NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005527M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005528W: http://netlabel.sf.net
5529L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005530S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005531F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005532F: include/net/netlabel.h
5533F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005534
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005538W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005540F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005541F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005542F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005544NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005545M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005547L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005548F: Documentation/blockdev/nbd.txt
5549F: drivers/block/nbd.c
5550F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005551F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552
Neil Horman6e436502009-10-05 03:56:55 +00005553NETWORK DROP MONITOR
5554M: Neil Horman <nhorman@tuxdriver.com>
5555L: netdev@vger.kernel.org
5556S: Maintained
5557W: https://fedorahosted.org/dropwatch/
5558F: net/core/drop_monitor.c
5559
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005561M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005562L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005563W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005564Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005565T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5566T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005568F: net/
5569F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005570F: include/linux/in.h
5571F: include/linux/net.h
5572F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005573F: include/uapi/linux/in.h
5574F: include/uapi/linux/net.h
5575F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
5577NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: "David S. Miller" <davem@davemloft.net>
5579M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005580M: James Morris <jmorris@namei.org>
5581M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5582M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005583L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005584T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005586F: net/ipv4/
5587F: net/ipv6/
5588F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005589F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
David S. Miller73b76562012-10-16 14:08:40 -04005591NETWORKING [IPSEC]
5592M: Steffen Klassert <steffen.klassert@secunet.com>
5593M: Herbert Xu <herbert@gondor.apana.org.au>
5594M: "David S. Miller" <davem@davemloft.net>
5595L: netdev@vger.kernel.org
5596T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5597S: Maintained
5598F: net/xfrm/
5599F: net/key/
5600F: net/ipv4/xfrm*
5601F: net/ipv6/xfrm*
5602F: include/uapi/linux/xfrm.h
5603F: include/net/xfrm.h
5604
James Morris10e2ff12007-08-25 14:41:28 -07005605NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005606M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005607L: netdev@vger.kernel.org
5608S: Maintained
5609
John W. Linville29f8f632006-01-18 14:52:48 -08005610NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005611M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005612L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005613Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005614T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005615S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005616F: net/mac80211/
5617F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005618F: net/wireless/
5619F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005620F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005621F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005622F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005623F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005624
Joe Perches788873a2009-04-16 09:38:45 +00005625NETWORKING DRIVERS
5626L: netdev@vger.kernel.org
5627W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005628Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005629T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5630T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005631S: Odd Fixes
5632F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005633F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005634F: include/linux/netdevice.h
5635F: include/linux/arcdevice.h
5636F: include/linux/etherdevice.h
5637F: include/linux/fcdevice.h
5638F: include/linux/fddidevice.h
5639F: include/linux/hippidevice.h
5640F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005641F: include/uapi/linux/if_*
5642F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005643
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005644NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005645M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005646M: Sony Chacko <sony.chacko@qlogic.com>
5647M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005648L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005649W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005650S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005651F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005652
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005653NFC SUBSYSTEM
5654M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5655M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5656M: Samuel Ortiz <sameo@linux.intel.com>
5657L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005658L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005659S: Maintained
5660F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005661F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005662F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005663F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005664F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005666NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005667M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005668L: linux-nfs@vger.kernel.org
5669W: http://client.linux-nfs.org
5670T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005672F: fs/lockd/
5673F: fs/nfs/
5674F: fs/nfs_common/
5675F: net/sunrpc/
5676F: include/linux/lockd/
5677F: include/linux/nfs*
5678F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005679F: include/uapi/linux/nfs*
5680F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005682NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005684L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005685W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005686T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005688F: Documentation/filesystems/nilfs2.txt
5689F: fs/nilfs2/
5690F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005691
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005693M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: Documentation/scsi/NinjaSCSI.txt
5697F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
5699NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: GOTO Masanori <gotom@debian.or.jp>
5701M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: Documentation/scsi/NinjaSCSI.txt
5705F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
Jon Masonfce8a7b2012-11-16 19:27:12 -07005707NTB DRIVER
5708M: Jon Mason <jon.mason@intel.com>
5709S: Supported
5710F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005711F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005712F: include/linux/ntb.h
5713
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005715M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005717W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005718T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005720F: Documentation/filesystems/ntfs.txt
5721F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005723NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005724M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005725L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005727F: drivers/video/riva/
5728F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729
Matthew Wilcox79461682012-11-10 08:54:53 -05005730NVM EXPRESS DRIVER
5731M: Matthew Wilcox <willy@linux.intel.com>
5732L: linux-nvme@lists.infradead.org
5733T: git git://git.infradead.org/users/willy/linux-nvme.git
5734S: Supported
5735F: drivers/block/nvme.c
5736F: include/linux/nvme.h
5737
Tony Lindgrenf5525782009-05-28 13:23:53 -07005738OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005739M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005740L: linux-omap@vger.kernel.org
5741W: http://www.muru.com/linux/omap/
5742W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005743Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005744T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005745S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005746F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005747F: drivers/i2c/busses/i2c-omap.c
5748F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005749
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005750OMAP DEVICE TREE SUPPORT
5751M: Benoît Cousson <b-cousson@ti.com>
5752M: Tony Lindgren <tony@atomide.com>
5753L: linux-omap@vger.kernel.org
5754L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5755S: Maintained
5756F: arch/arm/boot/dts/*omap*
5757F: arch/arm/boot/dts/*am3*
5758
Tony Lindgrenf5525782009-05-28 13:23:53 -07005759OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005761L: linux-omap@vger.kernel.org
5762S: Maintained
5763F: arch/arm/*omap*/*clock*
5764
5765OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005766M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005767L: linux-omap@vger.kernel.org
5768S: Maintained
5769F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005770F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005771
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005772OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5773M: Rajendra Nayak <rnayak@ti.com>
5774M: Paul Walmsley <paul@pwsan.com>
5775L: linux-omap@vger.kernel.org
5776S: Maintained
5777F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5778F: arch/arm/mach-omap2/powerdomain44xx.c
5779F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5780F: arch/arm/mach-omap2/clockdomain44xx.c
5781
Tony Lindgrenf5525782009-05-28 13:23:53 -07005782OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005783M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005784M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005785L: alsa-devel@alsa-project.org (subscribers-only)
5786L: linux-omap@vger.kernel.org
5787S: Maintained
5788F: sound/soc/omap/
5789
5790OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005791M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005792L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005793L: linux-omap@vger.kernel.org
5794S: Maintained
5795F: drivers/video/omap/
5796
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005797OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005798M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005799L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005800L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005801S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005802F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005803F: Documentation/arm/OMAP/DSS
5804
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005805OMAP HARDWARE SPINLOCK SUPPORT
5806M: Ohad Ben-Cohen <ohad@wizery.com>
5807L: linux-omap@vger.kernel.org
5808S: Maintained
5809F: drivers/hwspinlock/omap_hwspinlock.c
5810F: arch/arm/mach-omap2/hwspinlock.c
5811
Tony Lindgrenf5525782009-05-28 13:23:53 -07005812OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005814L: linux-omap@vger.kernel.org
5815S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005816F: drivers/mmc/host/omap.c
5817
5818OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305819M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305820L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005821L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305822S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005823F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005824
5825OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005827S: Maintained
5828F: drivers/char/hw_random/omap-rng.c
5829
Paul Walmsleyf400c822010-12-06 19:08:54 -07005830OMAP HWMOD SUPPORT
5831M: Benoît Cousson <b-cousson@ti.com>
5832M: Paul Walmsley <paul@pwsan.com>
5833L: linux-omap@vger.kernel.org
5834S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005835F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005836
5837OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5838M: Benoît Cousson <b-cousson@ti.com>
5839L: linux-omap@vger.kernel.org
5840S: Maintained
5841F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5842
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005843OMAP IMAGE SIGNAL PROCESSOR (ISP)
5844M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5845L: linux-media@vger.kernel.org
5846S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005847F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005848
Tony Lindgrenf5525782009-05-28 13:23:53 -07005849OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005850M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005851L: linux-usb@vger.kernel.org
5852L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005853T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005854S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005855F: drivers/usb/*/*omap*
5856F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005857
Kevin Hilman6d994712012-07-16 10:05:07 -07005858OMAP GPIO DRIVER
5859M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005860M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005861L: linux-omap@vger.kernel.org
5862S: Maintained
5863F: drivers/gpio/gpio-omap.c
5864
Bob Copeland0ad122d2008-07-25 19:45:18 -07005865OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005867L: linux-karma-devel@lists.sourceforge.net
5868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005869F: Documentation/filesystems/omfs.txt
5870F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005871
Harald Weltec1986ee2005-11-13 16:06:29 -08005872OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: drivers/char/pcmcia/cm4000_cs.c
5876F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005877F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005878
Harald Welte77c44ab2005-11-13 16:06:26 -08005879OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005880M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005882F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005883
Jonathan Corbet77d51402007-03-22 19:44:17 -03005884OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005885M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005886L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005887T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005888S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005889F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005890
Thomas Gleixner431bca72007-05-02 09:31:35 +02005891ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005892M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005893L: linux-mtd@lists.infradead.org
5894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005895F: drivers/mtd/onenand/
5896F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005897
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005899M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900L: osst-users@lists.sourceforge.net
5901L: linux-scsi@vger.kernel.org
5902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005903F: drivers/scsi/osst*
5904F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005906OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005908L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005910F: Documentation/i2c/busses/i2c-ocores
5911F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005912
Grant Likely860c44c2009-10-26 16:49:49 -07005913OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01005914M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05005915M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005916L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005917W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005918T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005919S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005920F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005921F: drivers/of
5922F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005923F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005924K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005925K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005926
Jonas Bonn19f9d392011-06-04 22:00:38 +03005927OPENRISC ARCHITECTURE
5928M: Jonas Bonn <jonas@southpole.se>
5929W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005930L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005931S: Maintained
5932T: git git://openrisc.net/~jonas/linux
5933F: arch/openrisc
5934
Jesse Grossccb13522011-10-25 19:26:31 -07005935OPENVSWITCH
5936M: Jesse Gross <jesse@nicira.com>
5937L: dev@openvswitch.org
5938W: http://openvswitch.org
5939T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5940S: Maintained
5941F: net/openvswitch/
5942
Clemens Ladischaf399172011-01-10 16:32:54 +01005943OPL4 DRIVER
5944M: Clemens Ladisch <clemens@ladisch.de>
5945L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5946T: git git://git.alsa-project.org/alsa-kernel.git
5947S: Maintained
5948F: sound/drivers/opl4/
5949
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005951M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952L: oprofile-list@lists.sf.net
5953S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005954F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005955F: arch/*/oprofile/
5956F: drivers/oprofile/
5957F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005959ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005960M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005961M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005962L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5963W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005964T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005966F: Documentation/filesystems/ocfs2.txt
5967F: Documentation/filesystems/dlmfs.txt
5968F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005969
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005971L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005972W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005973W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005974S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005975F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005977OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005978M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005979M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005980L: osd-dev@open-osd.org
5981W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005982T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005983S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005984F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005985F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005986F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005987
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005988P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005989M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005990L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005991W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005993F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005994
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005995PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005997L: netdev@vger.kernel.org
5998S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005999F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006000
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006001PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006002M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006003L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006006
Steffen Klassert48fc2672010-08-13 10:10:46 -04006007PADATA PARALLEL EXECUTION MECHANISM
6008M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006009L: linux-crypto@vger.kernel.org
6010S: Maintained
6011F: kernel/padata.c
6012F: include/linux/padata.h
6013F: Documentation/padata.txt
6014
Harald Welte709ee532008-09-23 17:46:57 +02006015PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006016M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006017L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006020
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006021PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006022M: David Howells <dhowells@redhat.com>
6023M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006024L: linux-am33-list@redhat.com (moderated for non-subscribers)
6025W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006027F: Documentation/mn10300/
6028F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006029
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006031L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006032S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006033F: drivers/parport/
6034F: include/linux/parport*.h
6035F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006036F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006038PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006039M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006040M: Chris Wright <chrisw@sous-sol.org>
6041M: Alok Kataria <akataria@vmware.com>
6042M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006043L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006045F: Documentation/ia64/paravirt_ops.txt
6046F: arch/*/kernel/paravirt*
6047F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006048
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006050M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006051L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052W: http://www.torque.net/linux-pp.html
6053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: Documentation/blockdev/paride.txt
6055F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
6057PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006058M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006059M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006060L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006062Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006063T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: arch/parisc/
6066F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Jim Cromie1662d322006-10-06 00:43:59 -07006068PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006069M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006070L: lm-sensors@lm-sensors.org
6071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006072F: Documentation/hwmon/pc87360
6073F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006074
6075PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006076M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006079
Jean Delvare1ad107f2010-08-14 21:09:00 +02006080PC87427 HARDWARE MONITORING DRIVER
6081M: Jean Delvare <khali@linux-fr.org>
6082L: lm-sensors@lm-sensors.org
6083S: Maintained
6084F: Documentation/hwmon/pc87427
6085F: drivers/hwmon/pc87427.c
6086
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006087PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006088M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006089S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006090F: drivers/leds/leds-pca9532.c
6091F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006092
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006093PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006094M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006095L: linux-i2c@vger.kernel.org
6096S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006097F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006098
Khalid Aziz3971dae2012-04-12 12:49:13 -07006099PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006100M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006101S: Maintained
6102F: drivers/firmware/pcdp.*
6103
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006104PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006105M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006106L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006108F: Documentation/PCI/pci-error-recovery.txt
6109F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006110
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006112M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006113L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006114Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006115T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006117F: Documentation/PCI/
6118F: drivers/pci/
6119F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006122P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006123L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006124W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006125T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: Documentation/pcmcia/
6128F: drivers/pcmcia/
6129F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130
6131PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006132M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006133L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006135F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136
Steffen Klassert48fc2672010-08-13 10:10:46 -04006137PCRYPT PARALLEL CRYPTO ENGINE
6138M: Steffen Klassert <steffen.klassert@secunet.com>
6139L: linux-crypto@vger.kernel.org
6140S: Maintained
6141F: crypto/pcrypt.c
6142F: include/crypto/pcrypt.h
6143
Tejun Heoe72df0b2010-12-10 17:02:49 +01006144PER-CPU MEMORY ALLOCATOR
6145M: Tejun Heo <tj@kernel.org>
6146M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006147T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6148S: Maintained
6149F: include/linux/percpu*.h
6150F: mm/percpu*.c
6151F: arch/*/include/asm/percpu.h
6152
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006153PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006154M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: include/linux/delayacct.h
6157F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006158
Ingo Molnar57c0c152009-09-21 12:20:38 +02006159PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006160M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6161M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006162M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006163M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006164T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006165S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006166F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006167F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006168F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006169F: arch/*/kernel/perf_event*.c
6170F: arch/*/kernel/*/perf_event*.c
6171F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006172F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006173F: arch/*/kernel/perf_callchain.c
6174F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006175
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006176PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006178L: linux-abi-devel@lists.sourceforge.net
6179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006180F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006181F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006182
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006183PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006184M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006185S: Supported
6186F: Documentation/networking/phonet.txt
6187F: include/linux/phonet.h
6188F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006189F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006190F: net/phonet/
6191
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006193M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194L: linux-mtd@lists.infradead.org
6195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006196F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197
Bruno Prémontefdbb102012-07-30 21:39:03 +02006198PICOLCD HID DRIVER
6199M: Bruno Prémont <bonbons@linux-vserver.org>
6200L: linux-input@vger.kernel.org
6201S: Maintained
6202F: drivers/hid/hid-picolcd*
6203
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006204PICOXCELL SUPPORT
6205M: Jamie Iles <jamie@jamieiles.com>
6206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6207T: git git://github.com/jamieiles/linux-2.6-ji.git
6208S: Supported
6209F: arch/arm/mach-picoxcell
6210F: drivers/*/picoxcell*
6211F: drivers/*/*/picoxcell*
6212
Linus Walleij2744e8a2011-05-02 20:50:54 +02006213PIN CONTROL SUBSYSTEM
6214M: Linus Walleij <linus.walleij@linaro.org>
6215S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006216F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006217F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006218
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006219PIN CONTROLLER - ATMEL AT91
6220M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6222S: Maintained
6223F: drivers/pinctrl/pinctrl-at91.c
6224
Viresh Kumardeda8282012-03-28 22:27:07 +05306225PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006226M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306227L: spear-devel@list.st.com
6228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6229W: http://www.st.com/spear
6230S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006231F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306232
Peter Osterlund249a6772005-09-27 21:45:30 -07006233PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006234M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006236F: drivers/block/pktcdvd.c
6237F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006238F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006239
GuanXuetaob31d8272011-01-16 00:35:49 +08006240PKUNITY SOC DRIVERS
6241M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6242W: http://mprc.pku.edu.cn/~guanxuetao/linux
6243S: Maintained
6244T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6245F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006246F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006247F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006248F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006249
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006250PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006251M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006252L: lm-sensors@lm-sensors.org
6253W: http://www.lm-sensors.org/
6254W: http://www.roeck-us.net/linux/drivers/
6255T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6256S: Maintained
6257F: Documentation/hwmon/pmbus
6258F: drivers/hwmon/pmbus/
6259F: include/linux/i2c/pmbus.h
6260
Anil Ravindranath89a36812009-08-25 17:35:18 -07006261PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006262M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006263L: linux-scsi@vger.kernel.org
6264W: http://www.pmc-sierra.com/
6265S: Supported
6266F: drivers/scsi/pmcraid.*
6267
jack wangdbf9bfe2009-10-14 16:19:21 +08006268PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006269M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006270M: lindar_liu@usish.com
6271L: linux-scsi@vger.kernel.org
6272S: Supported
6273F: drivers/scsi/pm8001/
6274
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006276M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006277T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006279F: fs/timerfd.c
6280F: include/linux/timer*
6281F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Anton Vorontsov3be86142007-07-15 04:43:36 +04006283POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006284M: Anton Vorontsov <cbou@mail.ru>
6285M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006286T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006288F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006289F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006290
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006292M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006293M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006295F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296
Vitaly Wool999445d2007-01-04 13:07:03 +01006297PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006298M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006299L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006301F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006304M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305L: linux-ppp@vger.kernel.org
6306S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006307F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308
6309PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006310M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006313F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
6315PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006316M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006318F: drivers/net/ppp/pppoe.c
6319F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320
James Chapmana6d23702007-06-27 15:53:17 -07006321PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006322M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006323S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006324F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006325F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006326F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006327
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006328PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006329M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006330W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6331L: linuxpps@ml.enneenne.com (subscribers-only)
6332S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006333F: Documentation/pps/
6334F: drivers/pps/
6335F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006336
Harry Wei71a6d0a2011-05-11 15:13:33 -07006337PPTP DRIVER
6338M: Dmitry Kozlov <xeb@mail.ru>
6339L: netdev@vger.kernel.org
6340S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006341F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006342W: http://sourceforge.net/projects/accel-pptp
6343
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346L: kpreempt-tech@lists.sourceforge.net
6347W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006349F: Documentation/preempt-locking.txt
6350F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351
6352PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006353M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006354L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006355W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006356S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006357F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006359PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006361L: linux-ide@vger.kernel.org
6362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006363F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006364
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006365PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006366M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006367L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006368L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006369S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006370F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006371
Geoff Levandf58a9d12006-11-23 00:46:51 +01006372PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006373M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006374L: linuxppc-dev@lists.ozlabs.org
6375L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006377F: arch/powerpc/boot/ps3*
6378F: arch/powerpc/include/asm/lv1call.h
6379F: arch/powerpc/include/asm/ps3*.h
6380F: arch/powerpc/platforms/ps3/
6381F: drivers/*/ps3*
6382F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006383F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006384F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006385F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006386
Jim Pariscffb4add2009-01-06 11:32:10 +00006387PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006388M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006389L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006390S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006391F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006392
Anton Vorontsov8defe592012-08-03 18:07:20 -07006393PSTORE FILESYSTEM
6394M: Anton Vorontsov <cbouatmailru@gmail.com>
6395M: Colin Cross <ccross@android.com>
6396M: Kees Cook <keescook@chromium.org>
6397M: Tony Luck <tony.luck@intel.com>
6398S: Maintained
6399T: git git://git.infradead.org/users/cbou/linux-pstore.git
6400F: fs/pstore/
6401F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006402F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006403F: drivers/acpi/apei/erst.c
6404
Richard Cochran7fbc4152012-03-10 01:55:53 +00006405PTP HARDWARE CLOCK SUPPORT
6406M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006407L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006408S: Maintained
6409W: http://linuxptp.sourceforge.net/
6410F: Documentation/ABI/testing/sysfs-ptp
6411F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006412F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006413F: drivers/net/phy/dp83640*
6414F: drivers/ptp/*
6415F: include/linux/ptp_cl*
6416
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006417PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Roland McGrath <roland@redhat.com>
6419M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006420S: Maintained
6421F: include/asm-generic/syscall.h
6422F: include/linux/ptrace.h
6423F: include/linux/regset.h
6424F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006425F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006426F: kernel/ptrace.c
6427
Michael Krufky83202042006-07-03 00:24:18 -07006428PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006430L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006431L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006432W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006433T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006435F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006436F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006437
Hans de Goede39532e62012-11-04 17:05:59 -03006438PWC WEBCAM DRIVER
6439M: Hans de Goede <hdegoede@redhat.com>
6440L: linux-media@vger.kernel.org
6441T: git git://linuxtv.org/media_tree.git
6442S: Maintained
6443F: drivers/media/usb/pwc/*
6444
Thierry Reding200efed2012-03-27 13:16:18 +02006445PWM SUBSYSTEM
6446M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006447L: linux-kernel@vger.kernel.org
6448S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006449W: http://gitorious.org/linux-pwm
6450T: git git://gitorious.org/linux-pwm/linux-pwm.git
6451F: Documentation/pwm.txt
6452F: Documentation/devicetree/bindings/pwm/
6453F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006454F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006455F: drivers/video/backlight/pwm_bl.c
6456F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006457
Eric Miao30ec2612008-06-12 15:21:41 -07006458PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006459M: Eric Miao <eric.y.miao@gmail.com>
6460M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006461M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006463T: git git://github.com/hzhuang1/linux.git
6464T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006466F: arch/arm/mach-pxa/
6467F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006468F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006469F: drivers/usb/gadget/pxa2*
6470F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006471F: sound/arm/pxa*
6472F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006474MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006476M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006477L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006478T: git git://github.com/hzhuang1/linux.git
6479T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006480S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006481F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006482
Pierre Ossman272f1332007-05-14 21:25:26 +02006483PXA MMCI DRIVER
6484S: Orphan
6485
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006486PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006487M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006488L: rtc-linux@googlegroups.com
6489S: Maintained
6490
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006491QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006492M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006493L: linux-rdma@vger.kernel.org
6494S: Supported
6495F: drivers/infiniband/hw/qib/
6496
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006497QLOGIC QLA1280 SCSI DRIVER
6498M: Michael Reed <mdr@sgi.com>
6499L: linux-scsi@vger.kernel.org
6500S: Maintained
6501F: drivers/scsi/qla1280.[ch]
6502
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006504M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006505M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506L: linux-scsi@vger.kernel.org
6507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006508F: Documentation/scsi/LICENSE.qla2xxx
6509F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510
Ravi Anand883c98f2010-04-28 11:45:49 +05306511QLOGIC QLA4XXX iSCSI DRIVER
6512M: Ravi Anand <ravi.anand@qlogic.com>
6513M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6514M: iscsi-driver@qlogic.com
6515L: linux-scsi@vger.kernel.org
6516S: Supported
6517F: drivers/scsi/qla4xxx/
6518
Ron Mercer5a4faa872006-07-25 00:40:21 -07006519QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006520M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006521M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006522M: linux-driver@qlogic.com
6523L: netdev@vger.kernel.org
6524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006525F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006526F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006527
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006528QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006529M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6530M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006531M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006532M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006533M: linux-driver@qlogic.com
6534L: netdev@vger.kernel.org
6535S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006536F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006537
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006538QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006539M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006540M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006541M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006542M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006543L: netdev@vger.kernel.org
6544S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006545F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006546
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006548M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549W: http://www.alarsen.net/linux/qnx4fs/
6550S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006551F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006552F: include/uapi/linux/qnx4_fs.h
6553F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554
Antti Palosaari91952bc2012-10-01 12:28:46 -03006555QT1010 MEDIA DRIVER
6556M: Antti Palosaari <crope@iki.fi>
6557L: linux-media@vger.kernel.org
6558W: http://linuxtv.org/
6559W: http://palosaari.fi/linux/
6560Q: http://patchwork.linuxtv.org/project/linux-media/list/
6561T: git git://linuxtv.org/anttip/media_tree.git
6562S: Maintained
6563F: drivers/media/tuners/qt1010*
6564
Richard Kuo4f4567c2011-10-31 18:56:38 -05006565QUALCOMM HEXAGON ARCHITECTURE
6566M: Richard Kuo <rkuo@codeaurora.org>
6567L: linux-hexagon@vger.kernel.org
6568S: Supported
6569F: arch/hexagon/
6570
Hans Verkuil35e35402012-11-23 07:02:29 -03006571QUICKCAM PARALLEL PORT WEBCAMS
6572M: Hans Verkuil <hverkuil@xs4all.nl>
6573L: linux-media@vger.kernel.org
6574T: git git://linuxtv.org/media_tree.git
6575W: http://linuxtv.org
6576S: Odd Fixes
6577F: drivers/media/parport/*-qcam*
6578
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006579RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006580M: Yehuda Sadeh <yehuda@inktank.com>
6581M: Sage Weil <sage@inktank.com>
6582M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006583M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006584W: http://ceph.com/
6585T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006586S: Supported
6587F: drivers/block/rbd.c
6588F: drivers/block/rbd_types.h
6589
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006592L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006594F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006595F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596
Hans de Goedec6c9b342012-11-04 17:03:58 -03006597RADIOSHARK RADIO DRIVER
6598M: Hans de Goede <hdegoede@redhat.com>
6599L: linux-media@vger.kernel.org
6600T: git git://linuxtv.org/media_tree.git
6601S: Maintained
6602F: drivers/media/radio/radio-shark.c
6603
6604RADIOSHARK2 RADIO DRIVER
6605M: Hans de Goede <hdegoede@redhat.com>
6606L: linux-media@vger.kernel.org
6607T: git git://linuxtv.org/media_tree.git
6608S: Maintained
6609F: drivers/media/radio/radio-shark2.c
6610F: drivers/media/radio/radio-tea5777.c
6611
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006613M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006614L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006616F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617
Randy Dunlape7839f22008-10-12 16:11:45 -07006618RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006619P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006620M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006621M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006622M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006623L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006624L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006625W: http://rt2x00.serialmonkey.com/
6626S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006627T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006628F: drivers/net/wireless/rt2x00/
6629
Nick Piggin9db55792008-02-08 04:19:49 -08006630RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006631M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: Documentation/blockdev/ramdisk.txt
6634F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006635
Matt Mackall9e95ce22005-04-16 15:25:56 -07006636RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006637M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006639F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006640
Matt Porter394b7012005-11-07 01:00:15 -08006641RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006642M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006643M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006645F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006646
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006647RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006648L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006649S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006650F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006651
6652RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Josh Triplett <josh@freedesktop.org>
6654M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006655S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006656T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006657F: Documentation/RCU/torture.txt
6658F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006659
Florian Fainellic1f766b2008-02-06 22:39:44 +01006660RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006662S: Maintained
6663
Florian Fainellidb17f392007-12-19 11:30:30 +01006664RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006666L: netdev@vger.kernel.org
6667S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006668F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006669
Andy Grovera09ed662009-02-24 15:30:41 +00006670RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006671M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006672L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006674F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006675
Josh Triplett595182b2006-10-04 02:17:21 -07006676READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006677M: Dipankar Sarma <dipankar@in.ibm.com>
6678M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006679W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006680S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006681T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006682F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006683X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006684F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006685F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006686X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006687
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006688REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006689M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006690L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006691Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006693F: Documentation/rtc.txt
6694F: drivers/rtc/
6695F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006696F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006697
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006699L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006701F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702
Mark Brownb83a3132011-05-11 19:59:58 +02006703REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006704M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006705T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6706S: Supported
6707F: drivers/base/regmap/
6708F: include/linux/regmap.h
6709
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006710REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6711M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006712T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006713S: Maintained
6714F: drivers/remoteproc/
6715F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006716F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006717
Ivo van Doorne08976452008-04-12 19:23:55 +02006718RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006719M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006720L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006721W: http://wireless.kernel.org/
6722T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6723T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006724S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006725F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006726F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006727
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006728RICOH SMARTMEDIA/XD DRIVER
6729M: Maxim Levitsky <maximlevitsky@gmail.com>
6730S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006731F: drivers/mtd/nand/r852.c
6732F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006733
Maxim Levitsky92634122011-03-25 01:56:59 -07006734RICOH R5C592 MEMORYSTICK DRIVER
6735M: Maxim Levitsky <maximlevitsky@gmail.com>
6736S: Maintained
6737F: drivers/memstick/host/r592.*
6738
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739ROCKETPORT DRIVER
6740P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741W: http://www.comtrol.com
6742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006743F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006744F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745
6746ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006747M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006749W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006751F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006752F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006753F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754
Antti Palosaari91952bc2012-10-01 12:28:46 -03006755RTL2830 MEDIA DRIVER
6756M: Antti Palosaari <crope@iki.fi>
6757L: linux-media@vger.kernel.org
6758W: http://linuxtv.org/
6759W: http://palosaari.fi/linux/
6760Q: http://patchwork.linuxtv.org/project/linux-media/list/
6761T: git git://linuxtv.org/anttip/media_tree.git
6762S: Maintained
6763F: drivers/media/dvb-frontends/rtl2830*
6764
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006765RTL2832 MEDIA DRIVER
6766M: Antti Palosaari <crope@iki.fi>
6767L: linux-media@vger.kernel.org
6768W: http://linuxtv.org/
6769W: http://palosaari.fi/linux/
6770Q: http://patchwork.linuxtv.org/project/linux-media/list/
6771T: git git://linuxtv.org/anttip/media_tree.git
6772S: Maintained
6773F: drivers/media/dvb-frontends/rtl2832*
6774
Larry Finger59840482008-11-12 17:13:09 -06006775RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006776M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006777L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006778W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006779T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006780S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006781F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006782
Larry Finger59840482008-11-12 17:13:09 -06006783RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006784M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006785M: Hin-Tak Leung <htl10@users.sourceforge.net>
6786M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006787L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006788W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006789T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006790S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006791F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006792
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006793RTL8192CE WIRELESS DRIVER
6794M: Larry Finger <Larry.Finger@lwfinger.net>
6795M: Chaoming Li <chaoming_li@realsil.com.cn>
6796L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006797W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006798T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6799S: Maintained
6800F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006801F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006802
6803S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006805L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006807F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006808
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809S390
Joe Perches8b58be82009-07-29 15:04:30 -07006810M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6811M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006813L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006814W: http://www.ibm.com/developerworks/linux/linux390/
6815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006816F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006817F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006818F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006819F: Documentation/s390/
6820F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006821
6822S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Ursula Braun <ursula.braun@de.ibm.com>
6824M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006825M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006826L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006827W: http://www.ibm.com/developerworks/linux/linux390/
6828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006829F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006830
Felix Beckfeed9b62009-03-26 15:24:23 +01006831S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006832M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006833M: linux390@de.ibm.com
6834L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006835W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006836S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006837F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006838
Heiko Carstens5238da42006-02-11 17:56:01 -08006839S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006840M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006841M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006842L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006843W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006845F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846
Ursula Braundd96df22007-09-19 13:09:02 +02006847S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006848M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006849M: linux390@de.ibm.com
6850L: linux-s390@vger.kernel.org
6851W: http://www.ibm.com/developerworks/linux/linux390/
6852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006853F: drivers/s390/net/*iucv*
6854F: include/net/iucv/
6855F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006856
Ben Dooks4dde7f72008-06-30 22:40:38 +01006857S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006858M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006861F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006862
Hans Verkuil1f15a222012-11-23 07:45:29 -03006863SAA6588 RDS RECEIVER DRIVER
6864M: Hans Verkuil <hverkuil@xs4all.nl>
6865L: linux-media@vger.kernel.org
6866T: git git://linuxtv.org/media_tree.git
6867W: http://linuxtv.org
6868S: Odd Fixes
6869F: drivers/media/i2c/saa6588*
6870
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006871SAA7134 VIDEO4LINUX DRIVER
6872M: Mauro Carvalho Chehab <mchehab@redhat.com>
6873L: linux-media@vger.kernel.org
6874W: http://linuxtv.org
6875T: git git://linuxtv.org/media_tree.git
6876S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006877F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006878F: drivers/media/pci/saa7134/
6879
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006881M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006883T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006885F: drivers/media/common/saa7146/
6886F: drivers/media/pci/saa7146/
6887F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888
Corentin Chary92304a42011-12-05 12:38:35 -05006889SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006890M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006891L: platform-driver-x86@vger.kernel.org
6892S: Maintained
6893F: drivers/platform/x86/samsung-laptop.c
6894
Mark Brown4a109cc2010-09-24 10:50:46 +01006895SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006896M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006897L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6898S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006899F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006900
Jingoo Han0d89a282011-12-19 11:09:35 +09006901SAMSUNG FRAMEBUFFER DRIVER
6902M: Jingoo Han <jg1.han@samsung.com>
6903L: linux-fbdev@vger.kernel.org
6904S: Maintained
6905F: drivers/video/s3c-fb.c
6906
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006907SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6908M: Sangbeom Kim <sbkim73@samsung.com>
6909L: linux-kernel@vger.kernel.org
6910S: Supported
6911F: drivers/mfd/sec*.c
6912F: drivers/regulator/s2m*.c
6913F: drivers/regulator/s5m*.c
6914F: drivers/rtc/rtc-sec.c
6915F: include/linux/mfd/samsung/
6916
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006917SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6918M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6919L: linux-media@vger.kernel.org
6920L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6921S: Maintained
6922F: drivers/media/platform/s3c-camif/
6923F: include/media/s3c_camif.h
6924
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006925SAMSUNG S5C73M3 CAMERA DRIVER
6926M: Kyungmin Park <kyungmin.park@samsung.com>
6927M: Andrzej Hajda <a.hajda@samsung.com>
6928L: linux-media@vger.kernel.org
6929S: Supported
6930F: drivers/media/i2c/s5c73m3/*
6931
Alan Coxca749e22011-03-18 13:56:14 +00006932SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006933M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006934L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006935S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006936F: drivers/tty/serial
6937
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306938SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006939M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306940S: Maintained
6941F: include/linux/dw_dmac.h
6942F: drivers/dma/dw_dmac_regs.h
6943F: drivers/dma/dw_dmac.c
6944
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006945SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6946M: Seungwon Jeon <tgih.jun@samsung.com>
6947M: Jaehoon Chung <jh80.chung@samsung.com>
6948L: linux-mmc@vger.kernel.org
6949S: Maintained
6950F: include/linux/mmc/dw_mmc.h
6951F: drivers/mmc/host/dw_mmc*
6952
Thomas Gleixner88606e82010-12-14 21:37:13 +01006953TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006954M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006955M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006956T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006957S: Supported
6958F: include/linux/clocksource.h
6959F: include/linux/time.h
6960F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006961F: include/uapi/linux/time.h
6962F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006963F: kernel/time/clocksource.c
6964F: kernel/time/time*.c
6965F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006966F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006967
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006968TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006969M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006970M: Hans Verkuil <hverkuil@xs4all.nl>
6971S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006972F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006973
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006975M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006977F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978
6979SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006980M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006982T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006984F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006985F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006986F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987
Chen Liqin6bcf6732009-06-13 15:24:33 +08006988SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006989M: Chen Liqin <liqin.chen@sunplusct.com>
6990M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006991W: http://www.sunplusct.com
6992S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006993F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006994
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997L: linux-scsi@vger.kernel.org
6998W: http://www.kernel.dk
6999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007000F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001
Roland Dreierfb50a832010-10-07 09:54:53 -07007002SCSI RDMA PROTOCOL (SRP) INITIATOR
7003M: David Dillow <dillowda@ornl.gov>
7004L: linux-rdma@vger.kernel.org
7005S: Supported
7006W: http://www.openfabrics.org
7007Q: http://patchwork.kernel.org/project/linux-rdma/list/
7008T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7009F: drivers/infiniband/ulp/srp/
7010F: include/scsi/srp.h
7011
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007013M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014L: linux-scsi@vger.kernel.org
7015W: http://www.torque.net/sg
7016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007017F: drivers/scsi/sg.c
7018F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007019
7020SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007021M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007023T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7024T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7025T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007027F: drivers/scsi/
7028F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029
7030SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007031M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032L: linux-scsi@vger.kernel.org
7033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007034F: Documentation/scsi/st.txt
7035F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
7037SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007038M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007039M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007040L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007041W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007043F: Documentation/networking/sctp.txt
7044F: include/linux/sctp.h
7045F: include/net/sctp/
7046F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
7048SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007049M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007050S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007051F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007052F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007053F: drivers/watchdog/scx200_wdt.c
7054F: drivers/i2c/busses/scx200*
7055F: drivers/mtd/maps/scx200_docflash.c
7056F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007057
7058SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007059M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007061F: drivers/char/scx200_gpio.c
7062F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007063
7064SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007065M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007067F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068
Sascha Sommer6a369132008-07-15 14:21:29 +02007069SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007070M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007071L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007073F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007074
Randy Dunlape7839f22008-10-12 16:11:45 -07007075SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007076M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007077L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007078T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7079S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007080F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007081F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007082
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007083SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007085L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007086L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007088F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089
Ben Dooks0d1bb412009-06-14 13:52:37 +01007090SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007091M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007092L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007093S: Maintained
7094F: drivers/mmc/host/sdhci-s3c.c
7095
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007096SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007097M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007098L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007099L: linux-mmc@vger.kernel.org
7100S: Maintained
7101F: drivers/mmc/host/sdhci-spear.c
7102
James Morris8711cca2008-12-04 03:19:45 +11007103SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007104M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007105L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007106T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007107W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007108S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007109F: security/
James Morris8711cca2008-12-04 03:19:45 +11007110
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007112M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113S: Supported
7114
7115SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007116M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007117M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007118M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007119L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007120W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007121T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007123F: include/linux/selinux*
7124F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007125F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126
John Johansenc1c124e2010-07-29 14:48:09 -07007127APPARMOR SECURITY MODULE
7128M: John Johansen <john.johansen@canonical.com>
7129L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7130W: apparmor.wiki.kernel.org
7131T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7132S: Supported
7133F: security/apparmor/
7134
Jiri Slabycef2cf02007-05-08 00:31:45 -07007135SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007136M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007138F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007139F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007140
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007141SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007142M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007144T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007146F: drivers/ata/
7147F: include/linux/ata.h
7148F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307150SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007151M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007152L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007153W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007154S: Supported
7155F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307156
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007157SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007158M: Sathya Perla <sathya.perla@emulex.com>
7159M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7160M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007161L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007162W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007163S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007164F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007165
Ben Hutchings8ceee662008-04-27 12:55:59 +01007166SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007167M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007168M: Ben Hutchings <bhutchings@solarflare.com>
7169L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007170S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007171F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007172
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007173SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007174M: Dimitri Sivanich <sivanich@sgi.com>
7175M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007177F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007178
7179SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007180M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007181L: linux-ia64@vger.kernel.org
7182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007183F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007184F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007185F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007186
Linus Torvalds1da177e2005-04-16 15:20:36 -07007187SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007188M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007189L: linux-visws-devel@lists.sf.net
7190W: http://linux-visws.sf.net
7191S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007192F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007193
Jack Steiner75312612008-08-15 00:40:42 -07007194SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007195M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007198
Hans Verkuil49cc6292012-11-30 07:13:29 -03007199SI470X FM RADIO RECEIVER I2C DRIVER
7200M: Hans Verkuil <hverkuil@xs4all.nl>
7201L: linux-media@vger.kernel.org
7202T: git git://linuxtv.org/media_tree.git
7203W: http://linuxtv.org
7204S: Odd Fixes
7205F: drivers/media/radio/si470x/radio-si470x-i2c.c
7206
7207SI470X FM RADIO RECEIVER USB DRIVER
7208M: Hans Verkuil <hverkuil@xs4all.nl>
7209L: linux-media@vger.kernel.org
7210T: git git://linuxtv.org/media_tree.git
7211W: http://linuxtv.org
7212S: Maintained
7213F: drivers/media/radio/si470x/radio-si470x-common.c
7214F: drivers/media/radio/si470x/radio-si470x.h
7215F: drivers/media/radio/si470x/radio-si470x-usb.c
7216
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007217SI4713 FM RADIO TRANSMITTER I2C DRIVER
7218M: Eduardo Valentin <edubezval@gmail.com>
7219L: linux-media@vger.kernel.org
7220T: git git://linuxtv.org/media_tree.git
7221W: http://linuxtv.org
7222S: Odd Fixes
7223F: drivers/media/radio/si4713-i2c.?
7224
7225SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7226M: Eduardo Valentin <edubezval@gmail.com>
7227L: linux-media@vger.kernel.org
7228T: git git://linuxtv.org/media_tree.git
7229W: http://linuxtv.org
7230S: Odd Fixes
7231F: drivers/media/radio/radio-si4713.h
7232
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007233SIANO DVB DRIVER
7234M: Mauro Carvalho Chehab <mchehab@redhat.com>
7235L: linux-media@vger.kernel.org
7236W: http://linuxtv.org
7237T: git git://linuxtv.org/media_tree.git
7238S: Odd fixes
7239F: drivers/media/common/siano/
7240F: drivers/media/dvb/siano/
7241F: drivers/media/usb/siano/
7242F: drivers/media/mmc/siano
7243
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007244SH_VEU V4L2 MEM2MEM DRIVER
7245M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7246L: linux-media@vger.kernel.org
7247S: Maintained
7248F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007249
7250SH_VOU V4L2 OUTPUT DRIVER
7251M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7252L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007253S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007254F: drivers/media/platform/sh_vou.c
7255F: include/media/sh_vou.h
7256
Len Brown6349d992009-08-14 15:07:14 -04007257SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007258M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007259L: sfi-devel@simplefirmware.org
7260W: http://simplefirmware.org/
7261T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007262S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007263F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007264F: drivers/sfi/
7265F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007266
Linus Torvalds1da177e2005-04-16 15:20:36 -07007267SIMTEC EB110ATX (Chalice CATS)
7268P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007269P: Vincent Sanders <vince@simtec.co.uk>
7270M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271W: http://www.simtec.co.uk/products/EB110ATX/
7272S: Supported
7273
7274SIMTEC EB2410ITX (BAST)
7275P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007276P: Vincent Sanders <vince@simtec.co.uk>
7277M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278W: http://www.simtec.co.uk/products/EB2410ITX/
7279S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007280F: arch/arm/mach-s3c2410/mach-bast.c
7281F: arch/arm/mach-s3c2410/bast-ide.c
7282F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007284TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007285M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007286M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307287L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307288T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007289Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007290S: Supported
7291F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007292F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007293
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007294TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007295M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007296L: linux-media@vger.kernel.org
7297L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7298W: http://linuxtv.org/
7299Q: http://patchwork.linuxtv.org/project/linux-media/list/
7300T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007301S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007302F: drivers/media/platform/davinci/
7303F: include/media/davinci/
7304
Francois Romieu92aab3c2005-07-30 13:11:18 +02007305SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007306M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007307L: netdev@vger.kernel.org
7308S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007309F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007310
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007314L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007316F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
7318SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007319M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: Documentation/fb/sisfb.txt
7323F: drivers/video/sis/
7324F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325
7326SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007327M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328W: http://www.winischhofer.at/linuxsisusbvga.shtml
7329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007330F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007332SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007333M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007334M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007335M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007336L: linux-mm@kvack.org
7337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007338F: include/linux/sl?b*.h
7339F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007340
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007341SLEEPABLE READ-COPY UPDATE (SRCU)
7342M: Lai Jiangshan <laijs@cn.fujitsu.com>
7343M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7344W: http://www.rdrop.com/users/paulmck/RCU/
7345S: Supported
7346T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7347F: include/linux/srcu*
7348F: kernel/srcu*
7349
Casey Schaufler66372842012-05-23 18:34:52 -07007350SMACK SECURITY MODULE
7351M: Casey Schaufler <casey@schaufler-ca.com>
7352L: linux-security-module@vger.kernel.org
7353W: http://schaufler-ca.com
7354T: git git://git.gitorious.org/smack-next/kernel.git
7355S: Maintained
7356F: Documentation/security/Smack.txt
7357F: security/smack/
7358
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007360M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007361S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007362F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363
Sakari Ailuse8e31622012-11-12 18:14:39 -03007364SMIA AND SMIA++ IMAGE SENSOR DRIVER
7365M: Sakari Ailus <sakari.ailus@iki.fi>
7366L: linux-media@vger.kernel.org
7367S: Maintained
7368F: drivers/media/i2c/smiapp
7369F: include/media/smiapp.h
7370F: drivers/media/i2c/smiapp-pll.c
7371F: drivers/media/i2c/smiapp-pll.h
7372
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007373SMM665 HARDWARE MONITOR DRIVER
7374M: Guenter Roeck <linux@roeck-us.net>
7375L: lm-sensors@lm-sensors.org
7376S: Maintained
7377F: Documentation/hwmon/smm665
7378F: drivers/hwmon/smm665.c
7379
Steve Glendinning9df73052010-08-14 21:08:54 +02007380SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007381M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007382L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007383S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007384F: Documentation/hwmon/emc2103
7385F: drivers/hwmon/emc2103.c
7386
Hans de Goedea98d5062011-03-21 17:59:36 +01007387SMSC SCH5627 HARDWARE MONITOR DRIVER
7388M: Hans de Goede <hdegoede@redhat.com>
7389L: lm-sensors@lm-sensors.org
7390S: Supported
7391F: Documentation/hwmon/sch5627
7392F: drivers/hwmon/sch5627.c
7393
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007394SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007395M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007396L: lm-sensors@lm-sensors.org
7397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007398F: Documentation/hwmon/smsc47b397
7399F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007400
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007401SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007402M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007403L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007405F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007406F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007407
Steve Glendinning2cb37722008-12-11 20:54:30 -08007408SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007409M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007410L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007411S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007412F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007413
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007414SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007415M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007416L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007417S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007418F: drivers/video/smscufx.c
7419
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007420SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007421M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007422L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007423T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007424S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007425F: include/media/soc*
7426F: drivers/media/i2c/soc_camera/
7427F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007428
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007429SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007430M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007432F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007433
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007435M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007438F: drivers/md/
7439F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007440F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007443M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007444L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007446F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Michael Buesch61e115a2007-09-18 15:12:50 -04007448SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007449M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007450L: netdev@vger.kernel.org
7451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007452F: drivers/ssb/
7453F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007454
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007456M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007457L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007458W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007460F: Documentation/laptops/sony-laptop.txt
7461F: drivers/char/sonypi.c
7462F: drivers/platform/x86/sony-laptop.c
7463F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464
Alex Dubovbaf85322008-02-09 10:20:54 -08007465SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007466M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007467W: http://tifmxx.berlios.de/
7468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007469F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007470
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007472M: Jaroslav Kysela <perex@perex.cz>
7473M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007474L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007475W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007476T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007477T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007479F: Documentation/sound/
7480F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007481F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007482F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483
Mark Brownbd903bd2008-11-19 19:16:05 +00007484SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007485M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007486M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007487T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007488L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007489W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007491F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007492F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007493
Sam Ravnborg473321f2009-01-04 15:47:49 -08007494SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007495M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007497Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007498T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7499T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007501F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007502F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503
David S. Miller6404fcc2010-03-16 01:00:17 -07007504SPARC SERIAL DRIVERS
7505M: "David S. Miller" <davem@davemloft.net>
7506L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007507T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7508T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007509S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007510F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007511F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007512F: drivers/tty/serial/sunhv.c
7513F: drivers/tty/serial/sunsab.c
7514F: drivers/tty/serial/sunsab.h
7515F: drivers/tty/serial/sunsu.c
7516F: drivers/tty/serial/sunzilog.c
7517F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007518
Christopher Li389325b2012-04-05 14:25:14 -07007519SPARSE CHECKER
7520M: "Christopher Li" <sparse@chrisli.org>
7521L: linux-sparse@vger.kernel.org
7522W: https://sparse.wiki.kernel.org/
7523T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7524T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7525S: Maintained
7526F: include/linux/compiler.h
7527
viresh kumarfc0c1952010-04-01 12:31:21 +01007528SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007529M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307530M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007531L: spear-devel@list.st.com
7532L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007533W: http://www.st.com/spear
7534S: Maintained
7535F: arch/arm/plat-spear/
7536
Viresh Kumar71e09a92012-04-20 22:39:48 +05307537SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007538M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307539M: Shiraz Hashim <shiraz.hashim@st.com>
7540L: spear-devel@list.st.com
7541L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7542W: http://www.st.com/spear
7543S: Maintained
7544F: arch/arm/mach-spear13xx/
7545
viresh kumarfc0c1952010-04-01 12:31:21 +01007546SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007547M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307548M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007549L: spear-devel@list.st.com
7550L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007551W: http://www.st.com/spear
7552S: Maintained
7553F: arch/arm/mach-spear3xx/
7554
7555SPEAR6XX MACHINE SUPPORT
7556M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307557M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007558M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007559L: spear-devel@list.st.com
7560L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007561W: http://www.st.com/spear
7562S: Maintained
7563F: arch/arm/mach-spear6xx/
7564
7565SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007566M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007567L: spear-devel@list.st.com
7568L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007569W: http://www.st.com/spear
7570S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307571F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007572
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007573SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007574M: Mark Brown <broonie@kernel.org>
Grant Likely19624232013-04-08 11:51:42 +01007575M: Grant Likely <grant.likely@linaro.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007576L: spi-devel-general@lists.sourceforge.net
Mark Browne7e4e132013-04-18 18:18:47 +01007577T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007578Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007580F: Documentation/spi/
7581F: drivers/spi/
7582F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007583F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007584
Jim Lewis2752e402006-09-29 02:01:19 -07007585SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007586M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7587M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007588L: netdev@vger.kernel.org
7589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007590F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007591F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007592
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007593SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007594M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007595L: linuxppc-dev@lists.ozlabs.org
7596L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007597W: http://www.ibm.com/developerworks/power/cell/
7598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007599F: Documentation/filesystems/spufs.txt
7600F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007601
Phillip Lougherfc555842009-01-05 08:46:29 +00007602SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007603M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007604L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7605W: http://squashfs.org.uk
7606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007607F: Documentation/filesystems/squashfs.txt
7608F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007609
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007611M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007613F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
Linus Torvalds26e9a392008-10-17 09:50:12 -07007615STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007616M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007617L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007618S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007619
Linus Torvalds26e9a392008-10-17 09:50:12 -07007620STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007621M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007622T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007623L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007625F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007626
Joe Perchesc8c8b102011-07-05 09:42:12 -07007627STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7628M: Henk de Groot <pe1dnn@amsat.org>
7629S: Odd Fixes
7630F: drivers/staging/wlags49_h2/
7631F: drivers/staging/wlags49_h25/
7632
Joe Perchesc9555152011-07-05 09:42:01 -07007633STAGING - ASUS OLED
7634M: Jakub Schmidtke <sjakub@gmail.com>
7635S: Odd Fixes
7636F: drivers/staging/asus_oled/
7637
Joe Perchesebd3d012011-07-05 09:42:02 -07007638STAGING - COMEDI
7639M: Ian Abbott <abbotti@mev.co.uk>
7640M: Mori Hess <fmhess@users.sourceforge.net>
7641S: Odd Fixes
7642F: drivers/staging/comedi/
7643
Joe Perches8ca572c2011-07-05 09:42:03 -07007644STAGING - CRYSTAL HD VIDEO DECODER
7645M: Naren Sankar <nsankar@broadcom.com>
7646M: Jarod Wilson <jarod@wilsonet.com>
7647M: Scott Davilla <davilla@4pi.com>
7648M: Manu Abraham <abraham.manu@gmail.com>
7649S: Odd Fixes
7650F: drivers/staging/crystalhd/
7651
Joe Perches0f16ffc2011-07-05 09:42:04 -07007652STAGING - ECHO CANCELLER
7653M: Steve Underwood <steveu@coppice.org>
7654M: David Rowe <david@rowetel.com>
7655S: Odd Fixes
7656F: drivers/staging/echo/
7657
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007658STAGING - ET131X NETWORK DRIVER
7659M: Mark Einon <mark.einon@gmail.com>
7660S: Odd Fixes
7661F: drivers/staging/et131x/
7662
Joe Perchesa0138162011-07-05 15:21:34 -07007663STAGING - FLARION FT1000 DRIVERS
7664M: Marek Belisko <marek.belisko@gmail.com>
7665S: Odd Fixes
7666F: drivers/staging/ft1000/
7667
Joe Perchesec3fab92011-07-05 09:42:05 -07007668STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7669M: David Täht <d@teklibre.com>
7670S: Odd Fixes
7671F: drivers/staging/frontier/
7672
Hans Verkuil98ded592013-03-09 12:59:44 -03007673STAGING - GO7007 MPEG CODEC
7674M: Hans Verkuil <hans.verkuil@cisco.com>
7675S: Maintained
7676F: drivers/staging/media/go7007/
7677
Joe Perches6c1bb422011-07-05 09:42:07 -07007678STAGING - INDUSTRIAL IO
7679M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007680L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007681S: Odd Fixes
7682F: drivers/staging/iio/
7683
Joe Perchesa0138162011-07-05 15:21:34 -07007684STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7685M: Jarod Wilson <jarod@wilsonet.com>
7686W: http://www.lirc.org/
7687S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007688F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007689
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007690STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007691M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007692M: Marc Dietrich <marvin24@gmx.de>
7693L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007694L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007695S: Maintained
7696F: drivers/staging/nvec/
7697
Joe Perchesa0138162011-07-05 15:21:34 -07007698STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7699M: Andres Salomon <dilinger@queued.net>
7700M: Chris Ball <cjb@laptop.org>
7701M: Jon Nettleton <jon.nettleton@gmail.com>
7702W: http://wiki.laptop.org/go/DCON
7703S: Odd Fixes
7704F: drivers/staging/olpc_dcon/
7705
Chris Kelly94cfdd12012-03-14 10:55:42 +00007706STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007707M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007708S: Maintained
7709F: drivers/staging/ozwpan/
7710
Joe Perchesa0138162011-07-05 15:21:34 -07007711STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007712M: Willy Tarreau <willy@meta-x.org>
7713S: Odd Fixes
7714F: drivers/staging/panel/
7715
Joe Perchesa0138162011-07-05 15:21:34 -07007716STAGING - REALTEK RTL8712U DRIVERS
7717M: Larry Finger <Larry.Finger@lwfinger.net>
7718M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7719S: Odd Fixes
7720F: drivers/staging/rtl8712/
7721
Joe Perches9629fa82011-07-05 09:42:09 -07007722STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7723M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7724S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007725F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007726
Joe Perchesa0138162011-07-05 15:21:34 -07007727STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007728M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7729S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007730F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007731
7732STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7733M: William Hubbs <w.d.hubbs@gmail.com>
7734M: Chris Brannon <chris@the-brannons.com>
7735M: Kirk Reiser <kirk@braille.uwo.ca>
7736M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7737L: speakup@braille.uwo.ca
7738W: http://www.linux-speakup.org/
7739S: Odd Fixes
7740F: drivers/staging/speakup/
7741
7742STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007743M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007744S: Odd Fixes
7745F: drivers/staging/tidspbridge/
7746
Joe Perchesa0138162011-07-05 15:21:34 -07007747STAGING - USB ENE SM/MS CARD READER DRIVER
7748M: Al Cho <acho@novell.com>
7749S: Odd Fixes
7750F: drivers/staging/keucr/
7751
Joe Perchesb3e871c2011-07-05 09:42:10 -07007752STAGING - VIA VT665X DRIVERS
7753M: Forest Bond <forest@alittletooquiet.net>
7754S: Odd Fixes
7755F: drivers/staging/vt665?/
7756
Joe Perches81a9a522011-07-05 09:42:11 -07007757STAGING - WINBOND IS89C35 WLAN USB DRIVER
7758M: Pavel Machek <pavel@ucw.cz>
7759S: Odd Fixes
7760F: drivers/staging/winbond/
7761
Joe Perches709bcb02011-07-05 09:42:13 -07007762STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007763M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007764S: Odd Fixes
7765F: drivers/staging/xgifb/
7766
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007768M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007769S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007770F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007772SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007773M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007774W: http://sammy.net/sun3/
7775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007776F: arch/m68k/kernel/*sun3*
7777F: arch/m68k/sun3*/
7778F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007779F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007780
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007781SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007782M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007783L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007785Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007786T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007787S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007788F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007789F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007790F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007792SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007793M: Len Brown <len.brown@intel.com>
7794M: Pavel Machek <pavel@ucw.cz>
7795M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007796L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007798F: Documentation/power/
7799F: arch/x86/kernel/acpi/
7800F: drivers/base/power/
7801F: kernel/power/
7802F: include/linux/suspend.h
7803F: include/linux/freezer.h
7804F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805
7806SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808L: linux-video@atrey.karlin.mff.cuni.cz
7809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007810F: Documentation/svga.txt
7811F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007813SWIOTLB SUBSYSTEM
7814M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7815L: linux-kernel@vger.kernel.org
7816S: Supported
7817F: lib/swiotlb.c
7818F: arch/*/kernel/pci-swiotlb.c
7819F: include/linux/swiotlb.h
7820
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307821SYNOPSYS ARC ARCHITECTURE
7822M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307823S: Supported
7824F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307825F: Documentation/devicetree/bindings/arc/
7826F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307827
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007829M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007831F: Documentation/filesystems/sysv-fs.txt
7832F: fs/sysv/
7833F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007835TARGET SUBSYSTEM
7836M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7837L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007838L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007839L: http://groups.google.com/group/linux-iscsi-target-dev
7840W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007841T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007842S: Supported
7843F: drivers/target/
7844F: include/target/
7845F: Documentation/target/
7846
Alan Cox4e688522008-04-30 00:52:11 -07007847TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007848M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007850F: Documentation/accounting/taskstats*
7851F: include/linux/taskstats*
7852F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007853
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007854TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007855M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007856L: netdev@vger.kernel.org
7857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007858F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007859F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007860F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007861
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007862TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007863M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7864M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007865W: http://tcp-lp-mod.sourceforge.net/
7866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007867F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007868
Antti Palosaari91952bc2012-10-01 12:28:46 -03007869TDA10071 MEDIA DRIVER
7870M: Antti Palosaari <crope@iki.fi>
7871L: linux-media@vger.kernel.org
7872W: http://linuxtv.org/
7873W: http://palosaari.fi/linux/
7874Q: http://patchwork.linuxtv.org/project/linux-media/list/
7875T: git git://linuxtv.org/anttip/media_tree.git
7876S: Maintained
7877F: drivers/media/dvb-frontends/tda10071*
7878
7879TDA18212 MEDIA DRIVER
7880M: Antti Palosaari <crope@iki.fi>
7881L: linux-media@vger.kernel.org
7882W: http://linuxtv.org/
7883W: http://palosaari.fi/linux/
7884Q: http://patchwork.linuxtv.org/project/linux-media/list/
7885T: git git://linuxtv.org/anttip/media_tree.git
7886S: Maintained
7887F: drivers/media/tuners/tda18212*
7888
7889TDA18218 MEDIA DRIVER
7890M: Antti Palosaari <crope@iki.fi>
7891L: linux-media@vger.kernel.org
7892W: http://linuxtv.org/
7893W: http://palosaari.fi/linux/
7894Q: http://patchwork.linuxtv.org/project/linux-media/list/
7895T: git git://linuxtv.org/anttip/media_tree.git
7896S: Maintained
7897F: drivers/media/tuners/tda18218*
7898
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007899TDA18271 MEDIA DRIVER
7900M: Michael Krufky <mkrufky@linuxtv.org>
7901L: linux-media@vger.kernel.org
7902W: http://linuxtv.org/
7903W: http://github.com/mkrufky
7904Q: http://patchwork.linuxtv.org/project/linux-media/list/
7905T: git git://linuxtv.org/mkrufky/tuners.git
7906S: Maintained
7907F: drivers/media/tuners/tda18271*
7908
Michael Krufkye48307a2012-10-02 00:56:33 -03007909TDA827x MEDIA DRIVER
7910M: Michael Krufky <mkrufky@linuxtv.org>
7911L: linux-media@vger.kernel.org
7912W: http://linuxtv.org/
7913W: http://github.com/mkrufky
7914Q: http://patchwork.linuxtv.org/project/linux-media/list/
7915T: git git://linuxtv.org/mkrufky/tuners.git
7916S: Maintained
7917F: drivers/media/tuners/tda8290.*
7918
Michael Krufky66cf9212012-10-02 00:56:28 -03007919TDA8290 MEDIA DRIVER
7920M: Michael Krufky <mkrufky@linuxtv.org>
7921L: linux-media@vger.kernel.org
7922W: http://linuxtv.org/
7923W: http://github.com/mkrufky
7924Q: http://patchwork.linuxtv.org/project/linux-media/list/
7925T: git git://linuxtv.org/mkrufky/tuners.git
7926S: Maintained
7927F: drivers/media/tuners/tda8290.*
7928
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007929TDA9840 MEDIA DRIVER
7930M: Hans Verkuil <hverkuil@xs4all.nl>
7931L: linux-media@vger.kernel.org
7932T: git git://linuxtv.org/media_tree.git
7933W: http://linuxtv.org
7934S: Maintained
7935F: drivers/media/i2c/tda9840*
7936
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007937TEA5761 TUNER DRIVER
7938M: Mauro Carvalho Chehab <mchehab@redhat.com>
7939L: linux-media@vger.kernel.org
7940W: http://linuxtv.org
7941T: git git://linuxtv.org/media_tree.git
7942S: Odd fixes
7943F: drivers/media/tuners/tea5761.*
7944
7945TEA5767 TUNER DRIVER
7946M: Mauro Carvalho Chehab <mchehab@redhat.com>
7947L: linux-media@vger.kernel.org
7948W: http://linuxtv.org
7949T: git git://linuxtv.org/media_tree.git
7950S: Maintained
7951F: drivers/media/tuners/tea5767.*
7952
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007953TEA6415C MEDIA DRIVER
7954M: Hans Verkuil <hverkuil@xs4all.nl>
7955L: linux-media@vger.kernel.org
7956T: git git://linuxtv.org/media_tree.git
7957W: http://linuxtv.org
7958S: Maintained
7959F: drivers/media/i2c/tea6415c*
7960
7961TEA6420 MEDIA DRIVER
7962M: Hans Verkuil <hverkuil@xs4all.nl>
7963L: linux-media@vger.kernel.org
7964T: git git://linuxtv.org/media_tree.git
7965W: http://linuxtv.org
7966S: Maintained
7967F: drivers/media/i2c/tea6420*
7968
Jiri Pirko3d249d42011-11-11 22:16:48 +00007969TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007970M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007971L: netdev@vger.kernel.org
7972S: Supported
7973F: drivers/net/team/
7974F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007975F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007976
Vivien Didelot7d029122013-01-04 16:18:14 -05007977TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7978M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7979S: Maintained
7980F: arch/x86/platform/ts5500/
7981
Sean Young40ad4a32012-11-19 10:32:53 -03007982TECHNOTREND USB IR RECEIVER
7983M: Sean Young <sean@mess.org>
7984L: linux-media@vger.kernel.org
7985S: Maintained
7986F: drivers/media/rc/ttusbir.c
7987
Erik Gilling84b94142010-06-09 15:35:53 -07007988TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007989M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007990L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007991Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7992T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007993S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07007994N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007995
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007996TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007997M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007998L: netdev@vger.kernel.org
7999S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008000F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008001
Alan Cox4e688522008-04-30 00:52:11 -07008002Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008003M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008005F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008006
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008007TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008009M: Max Filippov <jcmvbkbc@gmail.com>
8010L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008013
Zhang Ruid3fb6952012-11-15 08:58:27 +08008014THERMAL
8015M: Zhang Rui <rui.zhang@intel.com>
8016L: linux-pm@vger.kernel.org
8017T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
8018S: Supported
8019F: drivers/thermal/
8020F: include/linux/thermal.h
8021
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008022THINGM BLINK(1) USB RGB LED DRIVER
8023M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8024S: Maintained
8025F: drivers/hid/hid-thingm.c
8026
Alan Cox4e688522008-04-30 00:52:11 -07008027THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008029L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008030L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008031W: http://ibm-acpi.sourceforge.net
8032W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008033T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008035F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008036
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008037TI BANDGAP AND THERMAL DRIVER
8038M: Eduardo Valentin <eduardo.valentin@ti.com>
8039L: linux-pm@vger.kernel.org
8040S: Maintained
8041F: drivers/staging/omap-thermal/
8042
Alex Dubov4020f2d2006-10-04 02:15:37 -07008043TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008044M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008046F: drivers/misc/tifm*
8047F: drivers/mmc/host/tifm_sd.c
8048F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008049
M R Swami Reddy152ad442012-04-02 20:02:31 +05308050TI LM49xxx FAMILY ASoC CODEC DRIVERS
8051M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308052M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308053L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8054S: Maintained
8055F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308056F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308057
Kim, Milo0edd8072012-12-17 16:01:17 -08008058TI LP855x BACKLIGHT DRIVER
8059M: Milo Kim <milo.kim@ti.com>
8060S: Maintained
8061F: Documentation/backlight/lp855x-driver.txt
8062F: drivers/video/backlight/lp855x_bl.c
8063F: include/linux/platform_data/lp855x.h
8064
Kim, Milofaf13f62012-12-10 05:27:03 +00008065TI LP8727 CHARGER DRIVER
8066M: Milo Kim <milo.kim@ti.com>
8067S: Maintained
8068F: drivers/power/lp8727_charger.c
8069F: include/linux/platform_data/lp8727.h
8070
Kim, Milo22f12292012-12-10 05:27:55 +00008071TI LP8788 MFD DRIVER
8072M: Milo Kim <milo.kim@ti.com>
8073S: Maintained
8074F: drivers/iio/adc/lp8788_adc.c
8075F: drivers/leds/leds-lp8788.c
8076F: drivers/mfd/lp8788*.c
8077F: drivers/power/lp8788-charger.c
8078F: drivers/regulator/lp8788-*.c
8079F: include/linux/mfd/lp8788*.h
8080
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008081TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008082M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008083L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8084S: Maintained
8085F: sound/soc/codecs/twl4030*
8086
Luciano Coelho90921012011-11-20 21:40:41 +02008087TI WILINK WIRELESS DRIVERS
8088M: Luciano Coelho <coelho@ti.com>
8089L: linux-wireless@vger.kernel.org
8090W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8091W: http://wireless.kernel.org/en/users/Drivers/wl1251
8092T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8093S: Maintained
8094F: drivers/net/wireless/ti/
8095F: include/linux/wl12xx.h
8096
Per Lidene86eaa32006-01-12 16:45:18 +01008097TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008098M: Jon Maloy <jon.maloy@ericsson.com>
8099M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008100L: netdev@vger.kernel.org (core kernel code)
8101L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008102W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008103S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008104F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008105F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008106
Chris Metcalf867e3592010-05-28 23:09:12 -04008107TILE ARCHITECTURE
8108M: Chris Metcalf <cmetcalf@tilera.com>
8109W: http://www.tilera.com/scm/
8110S: Supported
8111F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008112F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008113F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008114F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008115
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008118L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119W: http://sourceforge.net/projects/tlan/
8120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008121F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008122F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008124TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Kentaro Takeda <takedakn@nttdata.co.jp>
8126M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008127L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8128L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008129L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8130L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8131W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008132T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008134F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008135
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008136TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008137M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008138L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008139S: Maintained
8140F: drivers/platform/x86/topstar-laptop.c
8141
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008143L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008144S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008145F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008146
8147TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008148M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149L: tlinux-users@tce.toshiba-dme.co.jp
8150W: http://www.buzzard.org.uk/toshiba/
8151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008152F: drivers/char/toshiba.c
8153F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008154F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008155
Pierre Ossmand719f902009-03-24 21:06:09 +01008156TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008157M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008158M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008159L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008160S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008161F: drivers/mmc/host/tmio_mmc*
8162F: drivers/mmc/host/sh_mobile_sdhi.c
8163F: include/linux/mmc/tmio.h
8164F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008165
Hugh Dickins98f32602009-05-21 20:33:58 +01008166TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008167M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008168L: linux-mm@kvack.org
8169S: Maintained
8170F: include/linux/shmem_fs.h
8171F: mm/shmem.c
8172
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008173TM6000 VIDEO4LINUX DRIVER
8174M: Mauro Carvalho Chehab <mchehab@redhat.com>
8175L: linux-media@vger.kernel.org
8176W: http://linuxtv.org
8177T: git git://linuxtv.org/media_tree.git
8178S: Odd fixes
8179F: drivers/media/usb/tm6000/
8180
Alan Cox4e688522008-04-30 00:52:11 -07008181TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008182M: Kent Yoder <key@linux.vnet.ibm.com>
8183M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008184W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008185M: Marcel Selhorst <tpmdd@selhorst.net>
8186M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008187W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008188L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008190F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008191
Joe Perchesd6f005a2009-10-26 16:49:40 -07008192TRACING
8193M: Steven Rostedt <rostedt@goodmis.org>
8194M: Frederic Weisbecker <fweisbec@gmail.com>
8195M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008196T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008197S: Maintained
8198F: Documentation/trace/ftrace.txt
8199F: arch/*/*/*/ftrace.h
8200F: arch/*/kernel/ftrace.c
8201F: include/*/ftrace.h
8202F: include/linux/trace*.h
8203F: include/trace/
8204F: kernel/trace/
8205
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008207M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008208T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008209S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008210K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
Alan Cox4e688522008-04-30 00:52:11 -07008212TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008213M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008214M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008215S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008216T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008217F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008218F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008219F: include/linux/serial_core.h
8220F: include/linux/serial.h
8221F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008222F: include/uapi/linux/serial_core.h
8223F: include/uapi/linux/serial.h
8224F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008225
Antti Palosaari91952bc2012-10-01 12:28:46 -03008226TUA9001 MEDIA DRIVER
8227M: Antti Palosaari <crope@iki.fi>
8228L: linux-media@vger.kernel.org
8229W: http://linuxtv.org/
8230W: http://palosaari.fi/linux/
8231Q: http://patchwork.linuxtv.org/project/linux-media/list/
8232T: git git://linuxtv.org/anttip/media_tree.git
8233S: Maintained
8234F: drivers/media/tuners/tua9001*
8235
Grant Grundler740db6d2008-02-17 11:53:49 -07008236TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008237M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008238L: netdev@vger.kernel.org
8239S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008240F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
8242TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008243M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244W: http://vtun.sourceforge.net/tun
8245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008246F: Documentation/networking/tuntap.txt
8247F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008249TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008250M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008252F: drivers/tc/
8253F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008254
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008256M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257L: linux-scsi@vger.kernel.org
8258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008259F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008261UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008262M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008263M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008264L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008265T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008266W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008268F: Documentation/filesystems/ubifs.txt
8269F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008270
Alan Coxcc2020e2008-05-19 14:21:51 +01008271UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008273W: http://www.uclinux.org/
8274L: uclinux-dev@uclinux.org (subscribers-only)
8275S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008276F: arch/m68k/*/*_no.*
8277F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008278
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008279UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008280M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008281W: http://uclinux-h8.sourceforge.jp/
8282S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008283F: arch/h8300/
8284F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008285F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008286
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008288M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008290F: Documentation/filesystems/udf.txt
8291F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008292
Alan Coxcc2020e2008-05-19 14:21:51 +01008293UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008294M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008296F: Documentation/filesystems/ufs.txt
8297F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008298
David Herrmann0a09d3a2012-06-10 15:16:28 +02008299UHID USERSPACE HID IO DRIVER:
8300M: David Herrmann <dh.herrmann@googlemail.com>
8301L: linux-input@vger.kernel.org
8302S: Maintained
8303F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008304F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008305
David Vrabel18332a82008-09-17 16:34:44 +01008306ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008307L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008308S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008309F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008310F: include/linux/uwb.h
8311F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008312
GuanXuetaob31d8272011-01-16 00:35:49 +08008313UNICORE32 ARCHITECTURE:
8314M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8315W: http://mprc.pku.edu.cn/~guanxuetao/linux
8316S: Maintained
8317T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8318F: arch/unicore32/
8319
Tony Finchd8379ab2009-11-27 15:50:30 +00008320UNIFDEF
8321M: Tony Finch <dot@dotat.at>
8322W: http://dotat.at/prog/unifdef
8323S: Maintained
8324F: scripts/unifdef.c
8325
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008327M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328W: http://www.kernel.dk
8329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008330F: Documentation/cdrom/
8331F: drivers/cdrom/cdrom.c
8332F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008333F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308335UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8336M: Vinayak Holikatti <vinholikatti@gmail.com>
8337M: Santosh Y <santoshsy@gmail.com>
8338L: linux-scsi@vger.kernel.org
8339S: Supported
8340F: Documentation/scsi/ufs.txt
8341F: drivers/scsi/ufs/
8342
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008343UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008344M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008345W: http://www.linux-mtd.infradead.org/
8346L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008347T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008348S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008349F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008350F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008351F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008352
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008353UNSORTED BLOCK IMAGES (UBI) Fastmap
8354M: Richard Weinberger <richard@nod.at>
8355L: linux-mtd@lists.infradead.org
8356S: Maintained
8357F: drivers/mtd/ubi/fastmap.c
8358
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008360M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008361L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008363F: Documentation/usb/acm.txt
8364F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008366USB AR5523 WIRELESS DRIVER
8367M: Pontus Fuchs <pontus.fuchs@gmail.com>
8368L: linux-wireless@vger.kernel.org
8369S: Maintained
8370F: drivers/net/wireless/ath/ar5523/
8371
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008372USB ATTACHED SCSI
8373M: Matthew Wilcox <willy@linux.intel.com>
8374M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008375M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008376L: linux-usb@vger.kernel.org
8377L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008378S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008379F: drivers/usb/storage/uas.c
8380
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008382M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008383L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008385F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008386F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008388USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008389M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008390L: linux-usb@vger.kernel.org
8391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008393
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008394USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008396L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008397W: http://www.linux-usb.org/usbnet
8398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008399F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008400
Alan Coxcc2020e2008-05-19 14:21:51 +01008401USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008402M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008403L: rio500-users@lists.sourceforge.net
8404W: http://rio500.sourceforge.net
8405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008406F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008407
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008409M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008410L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008412F: Documentation/usb/ehci.txt
8413F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008414
David Brownell69ae9e32006-11-14 02:03:31 -08008415USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008416M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008417L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008418W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008419T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008421F: drivers/usb/gadget/
8422F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008423
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008424USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008425M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008426L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008427T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008429F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008430F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431
matt mooney857aab32011-06-17 15:50:46 -07008432USB/IP DRIVERS
8433M: Matt Mooney <mfm@muteddisk.com>
8434L: linux-usb@vger.kernel.org
8435S: Maintained
8436F: drivers/staging/usbip/
8437
Olav Kongas959eea22005-11-03 17:38:14 +02008438USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008439M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008440L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008442F: drivers/usb/host/isp116x*
8443F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008444
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008446M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008447L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008449F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
8451USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008452M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008453L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008454L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455S: Maintained
8456W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008457F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458
Clemens Ladischaf399172011-01-10 16:32:54 +01008459USB MIDI DRIVER
8460M: Clemens Ladisch <clemens@ladisch.de>
8461L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8462T: git git://git.alsa-project.org/alsa-kernel.git
8463S: Maintained
8464F: sound/usb/midi.*
8465
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008467M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008468L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008470F: Documentation/usb/ohci.txt
8471F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472
Matthias Urlichsba460e42005-07-14 00:33:47 -07008473USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008474M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008475L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008477F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008478
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008480M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008481L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008482L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008483T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484W: http://pegasus2.sourceforge.net/
8485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008486F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487
Felipe Balbid3ad5582012-05-21 16:24:49 +03008488USB PHY LAYER
8489M: Felipe Balbi <balbi@ti.com>
8490L: linux-usb@vger.kernel.org
8491T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8492S: Maintained
8493F: drivers/usb/phy/
8494F: drivers/usb/otg/
8495
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008496USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008497M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008498L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008500F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501
8502USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008503M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008504L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008505L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008506T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507W: http://pegasus2.sourceforge.net/
8508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008509F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510
Alan Cox4e688522008-04-30 00:52:11 -07008511USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008512M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008513L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008515F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008516
8517USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008518M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008519L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008520S: Maintained
8521W: http://geocities.com/i0xox0i
8522W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008523F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008524
Linus Torvalds1da177e2005-04-16 15:20:36 -07008525USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008526M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008529F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530
8531USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008532M: Peter Berger <pberger@brimson.com>
8533M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008534L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008536F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537
8538USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008539M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008540L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008542F: Documentation/usb/usb-serial.txt
8543F: drivers/usb/serial/generic.c
8544F: drivers/usb/serial/usb-serial.c
8545F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546
Linus Torvalds1da177e2005-04-16 15:20:36 -07008547USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008548M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008549L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008551F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552
8553USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008554M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008555L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008557F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558
8559USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008560M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008561L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562W: http://www.connecttech.com
8563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008564F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008566USB SMSC75XX ETHERNET DRIVER
8567M: Steve Glendinning <steve.glendinning@shawell.net>
8568L: netdev@vger.kernel.org
8569S: Maintained
8570F: drivers/net/usb/smsc75xx.*
8571
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008572USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008573M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008574L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008576F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008577
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008578USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008579M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008580L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008581L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008582T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583W: http://www.linux-projects.org
8584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008585F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008586F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587
8588USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008589M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008590L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008592T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008594F: Documentation/usb/
8595F: drivers/net/usb/
8596F: drivers/usb/
8597F: include/linux/usb.h
8598F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599
8600USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008601M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008602L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008604F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
David Brownell69ae9e32006-11-14 02:03:31 -08008606USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008607M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008608L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008609W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008611F: drivers/net/usb/usbnet.c
8612F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008614USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008615M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008616L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008617L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008618T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008619W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008620S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008621F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008622F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008624USB VISION DRIVER
8625M: Hans Verkuil <hverkuil@xs4all.nl>
8626L: linux-media@vger.kernel.org
8627T: git git://linuxtv.org/media_tree.git
8628W: http://linuxtv.org
8629S: Odd Fixes
8630F: drivers/media/usb/usbvision/
8631
Laurent Pinchart8282da42012-10-04 02:32:42 +02008632USB WEBCAM GADGET
8633M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8634L: linux-usb@vger.kernel.org
8635S: Maintained
8636F: drivers/usb/gadget/*uvc*.c
8637F: drivers/usb/gadget/webcam.c
8638
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008639USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008640M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008641L: linux-wireless@vger.kernel.org
8642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008643F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008644
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008645USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008646M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008647L: linux-usb@vger.kernel.org
8648S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008649F: drivers/usb/host/xhci*
8650F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008651
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008653L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008655S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008656F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008658USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008659M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008660L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008661L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008662T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008663W: http://royale.zerezo.com/zr364xx/
8664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008665F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008666F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008667
Randy Dunlape7839f22008-10-12 16:11:45 -07008668USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008669M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008670M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671L: user-mode-linux-devel@lists.sourceforge.net
8672L: user-mode-linux-user@lists.sourceforge.net
8673W: http://user-mode-linux.sourceforge.net
8674S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008675F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008676F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008677F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008678F: fs/hostfs/
8679F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008680
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008681USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008682M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008683M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008685F: Documentation/DocBook/uio-howto.tmpl
8686F: drivers/uio/
8687F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008688
Karel Zak256cccb2012-06-01 10:13:09 +02008689UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008690M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008691L: util-linux@vger.kernel.org
8692W: http://en.wikipedia.org/wiki/Util-linux
8693T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008694S: Maintained
8695
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008696UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008697M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008698L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008699W: http://dev.gentoo.org/~spock/projects/uvesafb/
8700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008701F: Documentation/fb/uvesafb.txt
8702F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008703
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008704VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008705M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008707F: Documentation/filesystems/vfat.txt
8708F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709
Alex Williamsoncba33452012-07-31 08:16:22 -06008710VFIO DRIVER
8711M: Alex Williamson <alex.williamson@redhat.com>
8712L: kvm@vger.kernel.org
8713S: Maintained
8714F: Documentation/vfio.txt
8715F: drivers/vfio/
8716F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008717F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008718
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008719VIDEOBUF2 FRAMEWORK
8720M: Pawel Osciak <pawel@osciak.com>
8721M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008722M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008723L: linux-media@vger.kernel.org
8724S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008725F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008726F: include/media/videobuf2-*
8727
Amit Shah9a824462010-03-23 18:23:09 +05308728VIRTIO CONSOLE DRIVER
8729M: Amit Shah <amit.shah@redhat.com>
8730L: virtualization@lists.linux-foundation.org
8731S: Maintained
8732F: drivers/char/virtio_console.c
8733F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008734F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308735
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308736VIRTIO CORE, NET AND BLOCK DRIVERS
8737M: Rusty Russell <rusty@rustcorp.com.au>
8738M: "Michael S. Tsirkin" <mst@redhat.com>
8739L: virtualization@lists.linux-foundation.org
8740S: Maintained
8741F: drivers/virtio/
8742F: drivers/net/virtio_net.c
8743F: drivers/block/virtio_blk.c
8744F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308745F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308746
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008747VIRTIO HOST (VHOST)
8748M: "Michael S. Tsirkin" <mst@redhat.com>
8749L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008750L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008751L: netdev@vger.kernel.org
8752S: Maintained
8753F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008754F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008755
Linus Torvalds1da177e2005-04-16 15:20:36 -07008756VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008757M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008758S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008759F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760
Harald Weltef0bf7f62009-06-17 20:22:39 +02008761VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008762M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008763M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008764S: Maintained
8765F: drivers/mmc/host/via-sdmmc.c
8766
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008767VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008768M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008769L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008770S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008771F: include/linux/via-core.h
8772F: include/linux/via-gpio.h
8773F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008774F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008775
Francois Romieu01f20732007-01-26 00:57:17 -08008776VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008777M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008778L: netdev@vger.kernel.org
8779S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008780F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008782VIVI VIRTUAL VIDEO DRIVER
8783M: Hans Verkuil <hverkuil@xs4all.nl>
8784L: linux-media@vger.kernel.org
8785T: git git://linuxtv.org/media_tree.git
8786W: http://linuxtv.org
8787S: Maintained
8788F: drivers/media/platform/vivi*
8789
Patrick McHardybe7f8272007-10-23 20:26:36 -07008790VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008791M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008792L: netdev@vger.kernel.org
8793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008794F: drivers/net/macvlan.c
8795F: include/linux/if_*vlan.h
8796F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008797
Florian Fainelli55e331c2009-06-16 15:33:53 -07008798VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008799M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008800L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008801S: Maintained
8802F: drivers/vlynq/vlynq.c
8803F: include/linux/vlynq.h
8804
Martyn Welch390beae2012-05-03 17:52:36 +01008805VME SUBSYSTEM
8806M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008807M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008808M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8809L: devel@driverdev.osuosl.org
8810S: Maintained
8811T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8812F: Documentation/vme_api.txt
8813F: drivers/staging/vme/
8814F: drivers/vme/
8815F: include/linux/vme*
8816
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008817VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008818M: Shreyas Bhatewara <sbhatewara@vmware.com>
8819M: "VMware, Inc." <pv-drivers@vmware.com>
8820L: netdev@vger.kernel.org
8821S: Maintained
8822F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008823
Alok Kataria851b1642009-10-13 14:51:05 -07008824VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008825M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008826M: VMware PV-Drivers <pv-drivers@vmware.com>
8827L: linux-scsi@vger.kernel.org
8828S: Maintained
8829F: drivers/scsi/vmw_pvscsi.c
8830F: drivers/scsi/vmw_pvscsi.h
8831
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008832VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08008833M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008834M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008835W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008836W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008837T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008839F: drivers/regulator/
8840F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008841
Juerg Haefligerab413192006-09-24 20:54:04 +02008842VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008843M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008844L: lm-sensors@lm-sensors.org
8845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008846F: Documentation/hwmon/vt1211
8847F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008848
Roger Lucas1de9e372005-11-26 20:20:05 +01008849VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008850M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008851L: lm-sensors@lm-sensors.org
8852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008853F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008854
Tony Olech88095e72011-05-14 16:48:13 -04008855VUB300 USB to SDIO/SD/MMC bridge chip
8856M: Tony Olech <tony.olech@elandigitalsystems.com>
8857L: linux-mmc@vger.kernel.org
8858L: linux-usb@vger.kernel.org
8859S: Supported
8860F: drivers/mmc/host/vub300.c
8861
Linus Torvalds1da177e2005-04-16 15:20:36 -07008862W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008863M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008865F: Documentation/w1/
8866F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867
Charles Spirakis13927072006-07-05 18:05:15 +02008868W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008869M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008870L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008872F: Documentation/hwmon/w83791d
8873F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008874
Rudolf Marek61db0112006-12-12 18:18:30 +01008875W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008876M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008877L: lm-sensors@lm-sensors.org
8878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008879F: Documentation/hwmon/w83793
8880F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008881
Jean Delvaree3760b42010-10-28 20:31:49 +02008882W83795 HARDWARE MONITORING DRIVER
8883M: Jean Delvare <khali@linux-fr.org>
8884L: lm-sensors@lm-sensors.org
8885S: Maintained
8886F: drivers/hwmon/w83795.c
8887
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008889M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008891F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008892
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008893WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008894M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008895L: linux-watchdog@vger.kernel.org
8896W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008897T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008899F: Documentation/watchdog/
8900F: drivers/watchdog/
8901F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008902F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008903
Linus Torvalds1da177e2005-04-16 15:20:36 -07008904WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008905M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906L: linux-scsi@vger.kernel.org
8907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008908F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008909
David Herrmannb22e00f2011-09-06 13:50:40 +02008910WIIMOTE HID DRIVER
8911M: David Herrmann <dh.herrmann@googlemail.com>
8912L: linux-input@vger.kernel.org
8913S: Maintained
8914F: drivers/hid/hid-wiimote*
8915
David Härdemane258b802009-09-21 17:04:53 -07008916WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008917M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008918S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008919F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008920
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008921WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008922M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008923M: linux-wimax@intel.com
8924L: wimax@linuxwimax.org
8925S: Supported
8926W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008927F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008928F: include/linux/wimax/debug.h
8929F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008930F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008931F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008932
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008933WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008934M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008936F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008937
Linus Torvalds1da177e2005-04-16 15:20:36 -07008938WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008939M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008940L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008941W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008943F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008944
Mark Brownfebf1df2008-04-02 00:51:09 -04008945WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008946M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8947M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008948L: linux-input@vger.kernel.org
8949T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8950W: http://opensource.wolfsonmicro.com/node/7
8951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008952F: drivers/input/touchscreen/*wm97*
8953F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008954
Mark Brown055bcbc2010-08-13 14:18:12 +01008955WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008956M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008957L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008958T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008959T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008960W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008961S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008962F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008963F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008964F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008965F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008966F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008967F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008968F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008969F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008970F: drivers/input/misc/wm831x-on.c
8971F: drivers/input/touchscreen/wm831x-ts.c
8972F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008973F: drivers/mfd/arizona*
8974F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008975F: drivers/power/wm83*.c
8976F: drivers/rtc/rtc-wm83*.c
8977F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008978F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008979F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008980F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008981F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008982F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008983F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008984F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008985F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008986F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008987F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008988
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008989WORKQUEUE
8990M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008991T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8992S: Maintained
8993F: include/linux/workqueue.h
8994F: kernel/workqueue.c
8995F: Documentation/workqueue.txt
8996
Linus Torvalds1da177e2005-04-16 15:20:36 -07008997X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008998M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009000S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009001F: Documentation/networking/x25*
9002F: include/net/x25*
9003F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009004
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009005X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009006M: Thomas Gleixner <tglx@linutronix.de>
9007M: Ingo Molnar <mingo@redhat.com>
9008M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009009M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009010T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009012F: Documentation/x86/
9013F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009014
Matthew Garrettd0944852010-02-11 10:40:13 -05009015X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009016M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009017L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009018T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009019S: Maintained
9020F: drivers/platform/x86
9021
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009022X86 MCE INFRASTRUCTURE
9023M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009024M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009025L: linux-edac@vger.kernel.org
9026S: Maintained
9027F: arch/x86/kernel/cpu/mcheck/*
9028
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009029XC2028/3028 TUNER DRIVER
9030M: Mauro Carvalho Chehab <mchehab@redhat.com>
9031L: linux-media@vger.kernel.org
9032W: http://linuxtv.org
9033T: git git://linuxtv.org/media_tree.git
9034S: Maintained
9035F: drivers/media/tuners/tuner-xc2028.*
9036
Ian Campbellc4468082011-04-27 15:26:46 -07009037XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009038M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009039M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009040L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9041L: virtualization@lists.linux-foundation.org
9042S: Supported
9043F: arch/x86/xen/
9044F: drivers/*/xen-*front.c
9045F: drivers/xen/
9046F: arch/x86/include/asm/xen/
9047F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009048F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009049
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009050XEN HYPERVISOR ARM
9051M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9052L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9053S: Supported
9054F: arch/arm/xen/
9055F: arch/arm/include/asm/xen/
9056
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009057XEN NETWORK BACKEND DRIVER
9058M: Ian Campbell <ian.campbell@citrix.com>
9059L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9060L: netdev@vger.kernel.org
9061S: Supported
9062F: drivers/net/xen-netback/*
9063
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009064XEN PCI SUBSYSTEM
9065M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009066L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009067S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009068F: arch/x86/pci/*xen*
9069F: drivers/pci/*xen*
9070
9071XEN SWIOTLB SUBSYSTEM
9072M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009073L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009074S: Supported
9075F: arch/x86/xen/*swiotlb*
9076F: drivers/xen/*swiotlb*
9077
Linus Torvalds1da177e2005-04-16 15:20:36 -07009078XFS FILESYSTEM
9079P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009080M: Ben Myers <bpm@sgi.com>
9081M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009082M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009083L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009084W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009085T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009087F: Documentation/filesystems/xfs.txt
9088F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009089
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009090XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009091M: Anirudha Sarangi <anirudh@xilinx.com>
9092M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009093S: Maintained
9094F: drivers/net/ethernet/xilinx/xilinx_axienet*
9095
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009096XILINX SYSTEMACE DRIVER
Grant Likely19624232013-04-08 11:51:42 +01009097S: Unmaintained
Joe Perches679655d2009-04-07 20:44:32 -07009098F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009099
Peter Korsgaard238b8722006-12-06 20:35:17 -08009100XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009101M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009102L: linux-serial@vger.kernel.org
9103S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009104F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009105
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009107M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009108L: linux-hams@vger.kernel.org
9109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009110F: drivers/net/hamradio/yam*
9111F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112
Henkaf64a5e2005-10-12 15:02:56 +02009113YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009114M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009115L: usbb2k-api-dev@nongnu.org
9116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009117F: Documentation/input/yealink.txt
9118F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009119
Linus Torvalds1da177e2005-04-16 15:20:36 -07009120Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009121M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009122W: http://yaina.de/jreuter/
9123W: http://www.qsl.net/dl1bke/
9124L: linux-hams@vger.kernel.org
9125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009126F: Documentation/networking/z8530drv.txt
9127F: drivers/net/hamradio/*scc.c
9128F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009129
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009130ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009131M: Daniel Drake <dsd@gentoo.org>
9132M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009133W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009134L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009135L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009137F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009138
Linus Torvalds1da177e2005-04-16 15:20:36 -07009139ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009140L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009141L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009142W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009143T: Mercurial http://linuxtv.org/hg/v4l-dvb
9144S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009145F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009146
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009147ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009148M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009149S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009150F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009151
Linus Torvalds1da177e2005-04-16 15:20:36 -07009152THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009153M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009154L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009155Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009156T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009157S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009158F: *
9159F: */