blob: d66ac19907cbbc3d086fe1177fd5b5406d886c5e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
Stephen Warreneb90d082013-02-27 17:02:53 -0800100 patch or file, or an affected filename. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700101 K: of_get_profile
Stephen Warreneb90d082013-02-27 17:02:53 -0800102 matches patch or file content, or filenames, that contain
103 "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: \b(printk|pr_(info|err))\b
Stephen Warreneb90d082013-02-27 17:02:53 -0800105 matches patch or file content, or filenames, that contain one or
106 more of the words printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700107 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109Note: For the hard of thinking, this list is meant to remain in alphabetical
110order. If you could add yourselves to it in alphabetical order that would be
111so much easier [Ed]
112
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700113Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700116
Steffen Klasserta6d89912007-08-10 14:05:27 -07001173C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700118M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700119L: netdev@vger.kernel.org
120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700121F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700122F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700125M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700126L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700128F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
adam radfordc4de0ce2010-03-08 12:40:36 -08001303WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
131M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800133W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800135F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
13753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700138M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139L: linux-scsi@vger.kernel.org
140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700141F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
1436PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700144M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145L: linux-hams@vger.kernel.org
146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700147F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700150M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700151M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700152L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700154F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
1568250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800157M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158L: linux-serial@vger.kernel.org
159W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700160S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700161T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800162F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700163F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700166L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000167S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700168F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001709P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700171M: Eric Van Hensbergen <ericvh@gmail.com>
172M: Ron Minnich <rminnich@sandia.gov>
173M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100174L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500175W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800176Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800177T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: Documentation/filesystems/9p.txt
180F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800181
Antti Palosaari91952bc2012-10-01 12:28:46 -0300182A8293 MEDIA DRIVER
183M: Antti Palosaari <crope@iki.fi>
184L: linux-media@vger.kernel.org
185W: http://linuxtv.org/
186W: http://palosaari.fi/linux/
187Q: http://patchwork.linuxtv.org/project/linux-media/list/
188T: git git://linuxtv.org/anttip/media_tree.git
189S: Maintained
190F: drivers/media/dvb-frontends/a8293*
191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700192AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194L: linux-scsi@vger.kernel.org
195W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700197F: Documentation/scsi/aacraid.txt
198F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100201M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202L: lm-sensors@lm-sensors.org
203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700204F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700207M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700213M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214L: linux-acenic@sunsite.dk
215S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700216F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Feuerere86435e2009-06-21 18:53:03 +0200218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700219M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500220L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700221W: http://piie.net/?section=acerhdf
222S: Maintained
223F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800226M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700229F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700232M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200233M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500234L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400235W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800236Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400237T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/acpi/
240F: drivers/pnp/pnpacpi/
241F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700242F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500243
Len Brown8b59a452007-01-08 19:03:28 -0500244ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500246L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300247W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700249F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown8b59a452007-01-08 19:03:28 -0500251ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700252M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500253L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300254W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700256F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700257
Len Brown359acec2007-02-10 01:59:24 -0500258ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700259M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500260L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300261W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700263F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500264
Carlos Corbachobff431e2008-02-05 02:17:04 +0000265ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500266L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100267S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000269
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100270AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700271M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200272W: http://wiki.parisc-linux.org/AD1889
273L: linux-parisc@vger.kernel.org
274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700275F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100276
Michael Hennerich527a1a82010-10-28 11:31:28 +0000277AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
278M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100279L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700280W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000281S: Supported
282F: drivers/misc/ad525x_dpot.c
283
284AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
285M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100286L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700287W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000288S: Supported
289F: drivers/regulator/ad5398.c
290
291AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
292M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100293L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700294W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000295S: Supported
296F: drivers/input/misc/ad714x.c
297
298AD7877 TOUCHSCREEN DRIVER
299M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100300L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700301W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000302S: Supported
303F: drivers/input/touchscreen/ad7877.c
304
305AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
306M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100307L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700308W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000309S: Supported
310F: drivers/input/touchscreen/ad7879.c
311
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700312ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
313M: Jiri Kosina <jkosina@suse.cz>
314S: Maintained
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700317M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200318L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700320F: Documentation/hwmon/adm1025
321F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Corentin Labbecae2caa2007-02-14 21:15:04 +0100323ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325L: lm-sensors@lm-sensors.org
326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328
Michael Wucc0b88c2007-08-31 01:15:25 -0400329ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400330L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200331W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700333F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400334
Sakari Ailuse8e31622012-11-12 18:14:39 -0300335ADP1653 FLASH CONTROLLER DRIVER
336M: Sakari Ailus <sakari.ailus@iki.fi>
337L: linux-media@vger.kernel.org
338S: Maintained
339F: drivers/media/i2c/adp1653.c
340F: include/media/adp1653.h
341
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100344L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700345W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346S: Supported
347F: drivers/mfd/adp5520.c
348F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700349F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800350F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351F: drivers/input/keyboard/adp5520-keys.c
352
353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100355L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700356W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357S: Supported
358F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800359F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100363L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700364W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365S: Supported
366F: drivers/video/backlight/adp8860_bl.c
367
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100368ADS1015 HARDWARE MONITOR DRIVER
369M: Dirk Eibach <eibach@gdsys.de>
370L: lm-sensors@lm-sensors.org
371S: Maintained
372F: Documentation/hwmon/ads1015
373F: drivers/hwmon/ads1015.c
374F: include/linux/i2c/ads1015.h
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700377M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Jean Delvareb058b852009-12-09 20:36:08 +0100381ADT7475 HARDWARE MONITOR DRIVER
382M: Jean Delvare <khali@linux-fr.org>
383L: lm-sensors@lm-sensors.org
384S: Maintained
385F: Documentation/hwmon/adt7475
386F: drivers/hwmon/adt7475.c
387
Michael Hennerich527a1a82010-10-28 11:31:28 +0000388ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
389M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100390L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700391W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000392S: Supported
393F: drivers/input/misc/adxl34x.c
394
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: Documentation/scsi/advansys.txt
400F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700403M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700405F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Antti Palosaari91952bc2012-10-01 12:28:46 -0300407AF9013 MEDIA DRIVER
408M: Antti Palosaari <crope@iki.fi>
409L: linux-media@vger.kernel.org
410W: http://linuxtv.org/
411W: http://palosaari.fi/linux/
412Q: http://patchwork.linuxtv.org/project/linux-media/list/
413T: git git://linuxtv.org/anttip/media_tree.git
414S: Maintained
415F: drivers/media/dvb-frontends/af9013*
416
417AF9033 MEDIA DRIVER
418M: Antti Palosaari <crope@iki.fi>
419L: linux-media@vger.kernel.org
420W: http://linuxtv.org/
421W: http://palosaari.fi/linux/
422Q: http://patchwork.linuxtv.org/project/linux-media/list/
423T: git git://linuxtv.org/anttip/media_tree.git
424S: Maintained
425F: drivers/media/dvb-frontends/af9033*
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200428L: linux-fsdevel@vger.kernel.org
429S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700430F: Documentation/filesystems/affs.txt
431F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700434M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435L: linux-afs@lists.infradead.org
436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700437F: fs/afs/
438F: include/net/af_rxrpc.h
439F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700443T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700445F: drivers/char/agp/
446F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800447F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451L: linux-scsi@vger.kernel.org
452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700453F: drivers/scsi/aha152x*
454F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Hannes Reinecke64624d42007-10-19 10:32:29 +0200456AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700457M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458L: linux-scsi@vger.kernel.org
459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700460F: drivers/scsi/aic7xxx/
461F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462
Hans Verkuil450500a2012-11-23 07:11:33 -0300463AIMSLAB FM RADIO RECEIVER DRIVER
464M: Hans Verkuil <hverkuil@xs4all.nl>
465L: linux-media@vger.kernel.org
466T: git git://linuxtv.org/media_tree.git
467W: http://linuxtv.org
468S: Maintained
469F: drivers/media/radio/radio-aimslab*
470
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700471AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700472M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473L: linux-aio@kvack.org
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: fs/aio.c
476F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700479M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700480L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481W: http://www.linux-usb.org/SpeedTouch/
482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/usb/atm/speedtch.c
484F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Pierre Ossman272f1332007-05-14 21:25:26 +0200486ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700489F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200490
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000491ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100493L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: Documentation/i2c/busses/i2c-ali1563
496F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700500M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500501M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700502S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700503L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700504F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Tobias Klauseradf92512011-02-09 10:58:29 +0100506ALTERA UART/JTAG UART SERIAL DRIVERS
507M: Tobias Klauser <tklauser@distanz.ch>
508L: linux-serial@vger.kernel.org
509L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
510S: Maintained
511F: drivers/tty/serial/altera_uart.c
512F: drivers/tty/serial/altera_jtaguart.c
513F: include/linux/altera_uart.h
514F: include/linux/altera_jtaguart.h
515
Andreas Herrmann512d1022011-05-25 20:43:31 +0200516AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100517M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518L: lm-sensors@lm-sensors.org
519S: Maintained
520F: Documentation/hwmon/fam15h_power
521F: drivers/hwmon/fam15h_power.c
522
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700523AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700525L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700527F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528
Jordan Crousef90b8112006-01-06 00:12:14 -0800529AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800530P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700531L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800532W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700534F: drivers/char/hw_random/geode-rng.c
535F: drivers/crypto/geode*
536F: drivers/video/geode/
537F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800538
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200539AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200540M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100542T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200543S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800544F: drivers/iommu/amd_iommu*.[ch]
545F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200546
Peter Orubae7f5b302008-07-28 18:44:11 +0200547AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100548M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700549L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200552
Stelian Pop284f42b2006-12-12 18:18:31 +0100553AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100555S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200556F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100557
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Tom Tucker <tom@opengridcomputing.com>
560M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700561L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564
Hans Verkuil531fca12012-11-23 06:53:24 -0300565ANALOG DEVICES INC AD9389B DRIVER
566M: Hans Verkuil <hans.verkuil@cisco.com>
567L: linux-media@vger.kernel.org
568S: Maintained
569F: drivers/media/i2c/ad9389b*
570
571ANALOG DEVICES INC ADV7604 DRIVER
572M: Hans Verkuil <hans.verkuil@cisco.com>
573L: linux-media@vger.kernel.org
574S: Maintained
575F: drivers/media/i2c/adv7604*
576
Michael Hennerich527a1a82010-10-28 11:31:28 +0000577ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200578M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100579L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000580L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700581W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100583F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200584F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000585F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000586F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100587F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400589ANALOG DEVICES INC ASOC DRIVERS
590L: uclinux-dist-devel@blackfin.uclinux.org
591L: alsa-devel@alsa-project.org (moderated for non-subscribers)
592W: http://blackfin.uclinux.org/
593S: Supported
594F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400595
Johannes Berg42269062006-07-25 16:15:50 +0200596AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000598L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700599L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200604M: Jiri Kosina <jkosina@suse.cz>
605S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700606F: arch/x86/kernel/apm_32.c
607F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800608F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200609F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700611APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700612M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613L: linux-input@vger.kernel.org
614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700617APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200618M: Henrik Rydberg <rydberg@euromail.se>
619L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700626F: drivers/net/appletalk/
627F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Viresh Kumara4801672011-02-22 15:46:07 +0530629ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700630M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530631L: linux-ide@vger.kernel.org
632S: Maintained
633F: include/linux/pata_arasan_cf_data.h
634F: drivers/ata/pata_arasan_cf.c
635
Jaya Kumar1154ea72005-06-21 17:17:04 -0700636ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700639F: drivers/video/arcfb.c
640F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700645F: arch/arm/lib/floppydma.S
646F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Will Deacon6f965212011-07-01 14:38:53 +0100648ARM PMU PROFILING AND DEBUGGING
649M: Will Deacon <will.deacon@arm.com>
650S: Maintained
651F: arch/arm/kernel/perf_event*
652F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100653F: arch/arm/include/asm/pmu.h
654F: arch/arm/kernel/hw_breakpoint.c
655F: arch/arm/include/asm/hw_breakpoint.h
656
Russell Kingd4275352009-04-16 14:05:27 +0100657ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700658M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700659L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100660W: http://www.arm.linux.org.uk/
661S: Maintained
662F: arch/arm/
663
Stephen Boydd323c2432012-10-24 11:00:29 -0700664ARM SUB-ARCHITECTURES
665L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800666S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700667F: arch/arm/mach-*/
668F: arch/arm/plat-*/
669T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
670
Russell Kingcefbf4e2009-11-22 17:40:28 +0000671ARM PRIMECELL AACI PL041 DRIVER
672M: Russell King <linux@arm.linux.org.uk>
673S: Maintained
674F: sound/arm/aaci.*
675
676ARM PRIMECELL CLCD PL110 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/video/amba-clcd.*
680
681ARM PRIMECELL KMI PL050 DRIVER
682M: Russell King <linux@arm.linux.org.uk>
683S: Maintained
684F: drivers/input/serio/ambakmi.*
685F: include/linux/amba/kmi.h
686
Russell King2761f5c2007-05-24 06:56:08 +0200687ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000688M: Russell King <linux@arm.linux.org.uk>
689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700690F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000691F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200692
Russell King1b4304e2013-02-11 15:26:27 +0000693ARM PRIMECELL UART PL010 AND PL011 DRIVERS
694M: Russell King <linux@arm.linux.org.uk>
695S: Maintained
696F: drivers/tty/serial/amba-pl01*.c
697F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800698
Russell Kingcefbf4e2009-11-22 17:40:28 +0000699ARM PRIMECELL BUS SUPPORT
700M: Russell King <linux@arm.linux.org.uk>
701S: Maintained
702F: drivers/amba/
703F: include/linux/amba/bus.h
704
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708S: Maintained
709
Sergey Lapin9c784f92008-08-03 02:29:48 +0100710ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100713S: Maintained
714
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800715ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718S: Maintained
719
Maxime Ripard1b106692012-11-15 21:51:26 +0100720ARM/Allwinner A1X SoC support
721M: Maxime Ripard <maxime.ripard@free-electrons.com>
722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
723S: Maintained
724F: arch/arm/mach-sunxi/
725
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800726ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700727M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728M: Nicolas Ferre <nicolas.ferre@atmel.com>
729M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200731W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800732W: http://www.linux4sam.org
733S: Supported
734F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100735
Rob Herring986cf2e2011-06-22 11:28:53 -0500736ARM/CALXEDA HIGHBANK ARCHITECTURE
737M: Rob Herring <rob.herring@calxeda.com>
738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S: Maintained
740F: arch/arm/mach-highbank/
741
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300742ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
743M: Anton Vorontsov <avorontsov@mvista.com>
744S: Maintained
745F: arch/arm/mach-cns3xxx/
746T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
747
Alexander Shiyan386ab512012-11-17 17:57:24 +0400748ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
749M: Alexander Shiyan <shc_work@mail.ru>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Odd Fixes
752F: arch/arm/mach-clps711x/
753
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800754ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100755M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000756M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700757L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100759F: arch/arm/mach-ep93xx/
760F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761
762ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800765S: Maintained
766
Russell Kingd4275352009-04-16 14:05:27 +0100767ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700770S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100771F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700772F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100773
Mike Rapoportd48134e72008-08-20 09:03:26 +0100774ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100777S: Maintained
778
Hubert Feurstein94150092009-10-07 08:36:07 +0100779ARM/CONTEC MICRO9 MACHINE SUPPORT
780M: Hubert Feurstein <hubert.feurstein@contec.at>
781S: Maintained
782F: arch/arm/mach-ep93xx/micro9.c
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700785M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786S: Maintained
787
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200788ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100789M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791T: git git://git.berlios.de/gemini-board
792S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300793F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200794
Barry Songa990cbd2011-07-12 21:44:10 +0800795ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
796M: Barry Song <baohua.song@csr.com>
797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S: Maintained
799F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800800F: drivers/dma/sirf-dma.c
801F: drivers/i2c/busses/i2c-sirf.c
802F: drivers/pinctrl/pinctrl-sirf.c
803F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700811F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100812
Russell Kinga9da4f72008-07-12 21:42:04 +0100813ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Daniel Ribeiro <drwyrm@gmail.com>
815M: Stefan Schmidt <stefan@openezx.org>
816M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200817L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100818W: http://www.openezx.org/
819S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200820T: topgit git://git.openezx.org/openezx.git
821F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100822
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200823ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100824M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300828F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200829
Russell Kingd4275352009-04-16 14:05:27 +0100830ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700831M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100833W: http://www.arm.linux.org.uk/
834S: Maintained
835F: arch/arm/include/asm/hardware/dec21285.h
836F: arch/arm/mach-footbridge/
837
Sascha Hauer86183a52008-07-24 23:50:35 +0200838ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700839M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200841S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700842T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100843F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700844F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200845
Shawn Guo8bcb9762011-10-07 22:24:18 +0800846ARM/FREESCALE IMX6
847M: Shawn Guo <shawn.guo@linaro.org>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S: Maintained
850T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
851F: arch/arm/mach-imx/*imx6*
852
Shawn Guoa9866a02011-10-21 11:53:34 +0800853ARM/FREESCALE MXS ARM ARCHITECTURE
854M: Shawn Guo <shawn.guo@linaro.org>
855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
856S: Maintained
857T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
858F: arch/arm/mach-mxs/
859
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863S: Maintained
864
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100865ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100868S: Maintained
869
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200870ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100872M: Paul Parsons <lost.distance@yahoo.com>
873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200874S: Maintained
875F: arch/arm/mach-pxa/hx4700.c
876F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100877F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200878
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100879ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200881W: www.jlime.com
882S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700883T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
884F: arch/arm/mach-sa1100/jornada720.c
885F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100886
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200887ARM/IGEP MACHINE SUPPORT
888M: Enric Balletbo i Serra <eballetbo@gmail.com>
889M: Javier Martinez Canillas <javier@dowhile0.org>
890L: linux-omap@vger.kernel.org
891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892S: Maintained
893F: arch/arm/mach-omap2/board-igep0020.c
894
Marek Vasut403d2972010-05-22 00:29:39 +0200895ARM/INCOME PXA270 SUPPORT
896M: Marek Vasut <marek.vasut@gmail.com>
897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
898S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700899F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700903M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700905S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100906
907ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700908M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700910S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911
912ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700914M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700916S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800917
918ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200929ARM/INTEL IXP4XX ARM ARCHITECTURE
930M: Imre Kaloz <kaloz@openwrt.org>
931M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200933S: Maintained
934F: arch/arm/mach-ixp4xx/
935
Joe Perches838553c2010-10-26 14:22:59 -0700936ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100937M: Jonathan Cameron <jic23@cam.ac.uk>
938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939S: Maintained
940F: arch/arm/mach-pxa/stargate2.c
941F: drivers/pcmcia/pxa2xx_stargate2.c
942
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700945M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700947S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948
949ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700950M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800952S: Maintained
953
954ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700955M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957S: Maintained
958
Philipp Zabel3b8861712008-07-09 21:27:15 +0100959ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700960M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100961S: Maintained
962
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200963ARM/Marvell Armada 370 and Armada XP SOC support
964M: Jason Cooper <jason@lakedaemon.net>
965M: Andrew Lunn <andrew@lunn.ch>
966M: Gregory Clement <gregory.clement@free-electrons.com>
967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968S: Maintained
969F: arch/arm/mach-mvebu/
970
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400971ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
972M: Jason Cooper <jason@lakedaemon.net>
973M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400975S: Maintained
976F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400977F: arch/arm/mach-kirkwood/
978F: arch/arm/mach-mv78xx0/
979F: arch/arm/mach-orion5x/
980F: arch/arm/plat-orion/
981
Alexander Clouterd69ac132011-04-14 15:22:02 -0700982ARM/Orion SoC/Technologic Systems TS-78xx platform support
983M: Alexander Clouter <alex@digriz.org.uk>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985W: http://www.digriz.org.uk/ts78xx/kernel
986S: Maintained
987F: arch/arm/mach-orion5x/ts78xx-*
988
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000989ARM/MICREL KS8695 ARCHITECTURE
990M: Greg Ungerer <gerg@uclinux.org>
991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992F: arch/arm/mach-ks8695
993S: Odd Fixes
994
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200995ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700996M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200998F: arch/arm/mach-pxa/mioa701.c
999S: Maintained
1000
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001001ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001003S: Maintained
1004
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001005ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001006M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001007M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001008M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1009L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010S: Maintained
1011F: arch/arm/mach-nomadik/
1012F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001013F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001014T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001015
Andy Green9d762952009-05-19 06:41:42 -03001016ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001018L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1019W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1020S: Supported
1021
Daniel Walker0c19d212009-12-07 16:53:51 -08001022ARM/QUALCOMM MSM MACHINE SUPPORT
1023M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001024M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001025M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001026L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001027F: arch/arm/mach-msm/
1028F: drivers/video/msm/
1029F: drivers/mmc/host/msm_sdcc.c
1030F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001031F: drivers/tty/serial/msm_serial.h
1032F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001033F: drivers/*/pm8???-*
1034F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001035T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001036S: Maintained
1037
Dirk Opfer8459c152005-11-06 14:27:52 +00001038ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1040M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001041S: Maintained
1042
Marek Vasut5d783a22009-07-16 13:26:48 +02001043ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001044M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001045L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001046W: http://hackndev.com
1047S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001048F: arch/arm/mach-pxa/include/mach/palmtx.h
1049F: arch/arm/mach-pxa/palmtx.c
1050F: arch/arm/mach-pxa/include/mach/palmt5.h
1051F: arch/arm/mach-pxa/palmt5.c
1052F: arch/arm/mach-pxa/include/mach/palmld.h
1053F: arch/arm/mach-pxa/palmld.c
1054F: arch/arm/mach-pxa/include/mach/palmte2.h
1055F: arch/arm/mach-pxa/palmte2.c
1056F: arch/arm/mach-pxa/include/mach/palmtc.h
1057F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001058
Joe Perchesb57fe922009-12-14 18:00:52 -08001059ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001061L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001062W: http://hackndev.com
1063S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001064F: arch/arm/mach-pxa/include/mach/palmtreo.h
1065F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001066
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001067ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001069L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001070W: http://hackndev.com
1071S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001072F: arch/arm/mach-pxa/include/mach/palmz72.h
1073F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001076M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1078S: Maintained
1079
1080ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001082L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083W: http://www.arm.linux.org.uk/
1084S: Maintained
1085
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001086ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001087M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001088L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089S: Maintained
1090
Russell Kingd4275352009-04-16 14:05:27 +01001091ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001093L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001094W: http://www.arm.linux.org.uk/
1095S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001096F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1097F: arch/arm/include/asm/hardware/ioc.h
1098F: arch/arm/include/asm/hardware/iomd.h
1099F: arch/arm/include/asm/hardware/memc.h
1100F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001101F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001102F: drivers/net/ethernet/i825xx/ether1*
1103F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001104F: drivers/scsi/arm/
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108W: http://www.shark-linux.de/shark.html
1109S: Maintained
1110
Ben Dooksb21477f2009-06-13 10:46:34 +01001111ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001112M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001116W: http://www.fluff.org/ben/linux/
1117S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001118F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001119F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001120F: arch/arm/mach-s3c24*/
1121F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001122F: drivers/*/*s3c2410*
1123F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001124F: drivers/spi/spi-s3c*
1125F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001127ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001128M: Kukjin Kim <kgene.kim@samsung.com>
1129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1131S: Maintained
1132F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001133F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001134
Kyungmin Park10ffa962011-03-04 17:36:26 -08001135ARM/SAMSUNG MOBILE MACHINE SUPPORT
1136M: Kyungmin Park <kyungmin.park@samsung.com>
1137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S: Maintained
1139F: arch/arm/mach-s5pv210/mach-aquila.c
1140F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001141F: arch/arm/mach-exynos/mach-universal_c210.c
1142F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001143
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001144ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1145M: Kyungmin Park <kyungmin.park@samsung.com>
1146M: Kamil Debski <k.debski@samsung.com>
1147L: linux-arm-kernel@lists.infradead.org
1148L: linux-media@vger.kernel.org
1149S: Maintained
1150F: drivers/media/platform/s5p-g2d/
1151
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001152ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1153M: Kyungmin Park <kyungmin.park@samsung.com>
1154M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1155L: linux-arm-kernel@lists.infradead.org
1156L: linux-media@vger.kernel.org
1157S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001158F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001159F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001160
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001161ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1162M: Kyungmin Park <kyungmin.park@samsung.com>
1163M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001164M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001165L: linux-arm-kernel@lists.infradead.org
1166L: linux-media@vger.kernel.org
1167S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001168F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001169F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001170
1171ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1172M: Kyungmin Park <kyungmin.park@samsung.com>
1173M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1174L: linux-arm-kernel@lists.infradead.org
1175L: linux-media@vger.kernel.org
1176S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001177F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001178
Paul Mundtd48d38e2010-02-08 12:50:24 +09001179ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001180M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001181M: Magnus Damm <magnus.damm@gmail.com>
1182L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001184Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001185T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186S: Supported
1187F: arch/arm/mach-shmobile/
1188F: drivers/sh/
1189
Dinh Nguyen66314222012-07-18 16:07:18 -06001190ARM/SOCFPGA ARCHITECTURE
1191M: Dinh Nguyen <dinguyen@altera.com>
1192S: Maintained
1193F: arch/arm/mach-socfpga/
1194
1195ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1196M: Dinh Nguyen <dinguyen@altera.com>
1197S: Maintained
1198F: drivers/clk/socfpga/
1199
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001200ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001203S: Maintained
1204
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001205ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001206M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208S: Maintained
1209
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001211M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213S: Maintained
1214
wanzongshun98ad6e32009-02-13 06:04:32 +01001215ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001216M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001218W: http://www.mcuos.com
1219S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001220F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001221F: drivers/input/keyboard/w90p910_keypad.c
1222F: drivers/input/touchscreen/w90p910_ts.c
1223F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001224F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001225F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001226F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001227F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001228F: drivers/usb/host/ehci-w90x900.c
1229F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001230
Linus Walleij54274d72010-04-04 10:58:03 +01001231ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001232M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S: Supported
1235F: arch/arm/mach-u300/
1236F: drivers/i2c/busses/i2c-stu300.c
1237F: drivers/rtc/rtc-coh901331.c
1238F: drivers/watchdog/coh901327_wdt.c
1239F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001240F: drivers/mfd/ab3100*
1241F: drivers/rtc/rtc-ab3100.c
1242F: drivers/rtc/rtc-coh901331.c
1243T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001244
Linus Walleij87572882010-12-22 09:18:29 +01001245ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001246M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001247M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001251F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001252F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001253F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001254F: drivers/mfd/abx500*
1255F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/mfd/dbx500*
1257F: drivers/mfd/db8500*
1258F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001259F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001260F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001261T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001262
Russell Kingd4275352009-04-16 14:05:27 +01001263ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001264M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001265L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001266W: http://www.arm.linux.org.uk/
1267S: Maintained
1268F: arch/arm/vfp/
1269
Marek Vasute66b6d82010-03-26 06:51:32 +01001270ARM/VOIPAC PXA270 SUPPORT
1271M: Marek Vasut <marek.vasut@gmail.com>
1272L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273S: Maintained
1274F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001275F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001276
Tony Prisk04529fe2012-07-24 04:19:37 +12001277ARM/VT8500 ARM ARCHITECTURE
1278M: Tony Prisk <linux@prisktech.co.nz>
1279L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280S: Maintained
1281F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001282F: drivers/clocksource/vt8500_timer.c
1283F: drivers/gpio/gpio-vt8500.c
1284F: drivers/mmc/host/wmt-sdmmc.c
1285F: drivers/pwm/pwm-vt8500.c
1286F: drivers/rtc/rtc-vt8500.c
1287F: drivers/tty/serial/vt8500_serial.c
1288F: drivers/usb/host/ehci-vt8500.c
1289F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001290F: drivers/video/vt8500lcdfb.*
1291F: drivers/video/wm8505fb*
1292F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001293
Marek Vasute66b6d82010-03-26 06:51:32 +01001294ARM/ZIPIT Z2 SUPPORT
1295M: Marek Vasut <marek.vasut@gmail.com>
1296L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297S: Maintained
1298F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001299F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001300
Michal Simek51f29d42013-01-21 17:41:46 +01001301ARM/ZYNQ ARCHITECTURE
1302M: Michal Simek <michal.simek@xilinx.com>
1303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304W: http://wiki.xilinx.com
1305T: git git://git.xilinx.com/linux-xlnx.git
1306S: Supported
1307F: arch/arm/mach-zynq/
1308
Catalin Marinas38074222012-03-05 11:49:34 +00001309ARM64 PORT (AARCH64 ARCHITECTURE)
1310M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001311M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001312L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313S: Maintained
1314F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001315F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001316
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001317AS3645A LED FLASH CONTROLLER DRIVER
1318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1319L: linux-media@vger.kernel.org
1320T: git git://linuxtv.org/media_tree.git
1321S: Maintained
1322F: drivers/media/i2c/as3645a.c
1323F: include/media/as3645a.h
1324
George Josephd58de032010-03-05 22:17:25 +01001325ASC7621 HARDWARE MONITOR DRIVER
1326M: George Joseph <george.joseph@fairview5.com>
1327L: lm-sensors@lm-sensors.org
1328S: Maintained
1329F: Documentation/hwmon/asc7621
1330F: drivers/hwmon/asc7621.c
1331
Corentin Charyb229ece2011-02-26 10:20:40 +01001332ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001333M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001335L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001336W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001338F: drivers/platform/x86/asus*.c
1339F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Andrew Morton953a6472008-11-06 12:53:28 -08001341ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001342M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001343W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001345F: Documentation/crypto/async-tx-api.txt
1346F: crypto/async_tx/
1347F: drivers/dma/
1348F: include/linux/dmaengine.h
1349F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001350
Wolfram Sanga1867d32009-09-18 22:45:51 +02001351AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001352M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001353L: linux-i2c@vger.kernel.org
1354S: Maintained
1355F: drivers/misc/eeprom/at24.c
1356F: include/linux/i2c/at24.h
1357
Randy Dunlape7839f22008-10-12 16:11:45 -07001358ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001360W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: Documentation/aoe/
1363F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Joe Perches9a10a872010-12-01 09:37:55 -08001365ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001366M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001367L: linux-wireless@vger.kernel.org
1368S: Supported
1369F: drivers/net/wireless/ath/*
1370
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001371ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Jiri Slaby <jirislaby@gmail.com>
1373M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001374M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001375L: linux-wireless@vger.kernel.org
1376L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001377W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001378S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001379F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001380
Kalle Valo12e62d62011-09-13 10:21:25 +03001381ATHEROS ATH6KL WIRELESS DRIVER
1382M: Kalle Valo <kvalo@qca.qualcomm.com>
1383L: linux-wireless@vger.kernel.org
1384W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1385T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1386S: Supported
1387F: drivers/net/wireless/ath/ath6kl/
1388
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001390M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1391M: Jouni Malinen <jouni@qca.qualcomm.com>
1392M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1393M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394L: linux-wireless@vger.kernel.org
1395L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001396W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001398F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001400WILOCITY WIL6210 WIRELESS DRIVER
1401M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1402L: linux-wireless@vger.kernel.org
1403L: wil6210@qca.qualcomm.com
1404S: Supported
1405W: http://wireless.kernel.org/en/users/Drivers/wil6210
1406F: drivers/net/wireless/ath/wil6210/
1407
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001408CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1409M: Christian Lamparter <chunkeey@googlemail.com>
1410L: linux-wireless@vger.kernel.org
1411W: http://wireless.kernel.org/en/users/Drivers/carl9170
1412S: Maintained
1413F: drivers/net/wireless/ath/carl9170/
1414
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001415ATK0110 HWMON DRIVER
1416M: Luca Tettamanti <kronos.it@gmail.com>
1417L: lm-sensors@lm-sensors.org
1418S: Maintained
1419F: drivers/hwmon/asus_atk0110.c
1420
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001421ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001422M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001425
Chris Snook7ae115b2008-09-09 03:26:57 -04001426ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001428M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001429L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001430W: http://sourceforge.net/projects/atl1
1431W: http://atl1.sourceforge.net
1432S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001433F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001436M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001437L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001438L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439W: http://linux-atm.sourceforge.net
1440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/atm/
1442F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001443F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001445ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001446M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001447S: Maintained
1448F: drivers/mmc/host/atmel-mci.c
1449F: drivers/mmc/host/atmel-mci-regs.h
1450
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001451ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001452M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001453S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001454F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001455
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001456ATMEL DMA DRIVER
1457M: Nicolas Ferre <nicolas.ferre@atmel.com>
1458L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459S: Supported
1460F: drivers/dma/at_hdmac.c
1461F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001462F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001463
Ludovic Desroches888f2802013-03-15 05:32:57 +00001464ATMEL I2C DRIVER
1465M: Ludovic Desroches <ludovic.desroches@atmel.com>
1466L: linux-i2c@vger.kernel.org
1467S: Supported
1468F: drivers/i2c/busses/i2c-at91.c
1469
Josh Wu15515542012-03-23 17:56:29 +08001470ATMEL ISI DRIVER
1471M: Josh Wu <josh.wu@atmel.com>
1472L: linux-media@vger.kernel.org
1473S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001474F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001475F: include/media/atmel-isi.h
1476
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001477ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001479L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/video/atmel_lcdfb.c
1482F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001483
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001484ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001485M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001486S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001487F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001488
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001489ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001490M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001491S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001492F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001494ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1495M: Nicolas Ferre <nicolas.ferre@atmel.com>
1496L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497S: Supported
1498F: drivers/misc/atmel_tclib.c
1499F: drivers/clocksource/tcb_clksrc.c
1500
Josh Wuff2675d2012-03-23 17:56:55 +08001501ATMEL TSADCC DRIVER
1502M: Josh Wu <josh.wu@atmel.com>
1503L: linux-input@vger.kernel.org
1504S: Supported
1505F: drivers/input/touchscreen/atmel_tsadcc.c
1506
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001507ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001508M: Nicolas Ferre <nicolas.ferre@atmel.com>
1509L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001514M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001515L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516W: http://www.thekelleys.org.uk/atmel
1517W: http://atmelwlandriver.sourceforge.net/
1518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Chris Wrighta92b7b82005-07-07 18:12:23 -07001521AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001522M: Al Viro <viro@zeniv.linux.org.uk>
1523M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001524L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001525W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001526T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001529F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001530F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001532AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001534W: http://miguelojeda.es/auxdisplay.htm
1535W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001537F: drivers/auxdisplay/
1538F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001539
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001540AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001541M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1542M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001543W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001544W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001545W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001547F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548
1549AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1551M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001553F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001556M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001558W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001560F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001561F: include/net/ax25.h
1562F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001564AZ6007 DVB DRIVER
1565M: Mauro Carvalho Chehab <mchehab@redhat.com>
1566L: linux-media@vger.kernel.org
1567W: http://linuxtv.org
1568T: git git://linuxtv.org/media_tree.git
1569S: Maintained
1570F: drivers/media/usb/dvb-usb-v2/az6007.c
1571
Hans Verkuil67773762012-11-23 07:09:23 -03001572AZTECH FM RADIO RECEIVER DRIVER
1573M: Hans Verkuil <hverkuil@xs4all.nl>
1574L: linux-media@vger.kernel.org
1575T: git git://linuxtv.org/media_tree.git
1576W: http://linuxtv.org
1577S: Maintained
1578F: drivers/media/radio/radio-aztech*
1579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001581M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001583L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001584W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587
1588B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Larry Finger <Larry.Finger@lwfinger.net>
1590M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001592L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001593W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001596
Richard Purdie300abeb2007-02-07 22:21:07 +00001597BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/video/backlight/
1601F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001602
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001603BATMAN ADVANCED
1604M: Marek Lindner <lindner_marek@yahoo.de>
1605M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001606M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607L: b.a.t.m.a.n@lists.open-mesh.org
1608W: http://www.open-mesh.org/
1609S: Maintained
1610F: net/batman-adv/
1611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001612BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614L: linux-hams@vger.kernel.org
1615W: http://www.baycom.org/~tom/ham/ham.html
1616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618
1619BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001620S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001621F: Documentation/filesystems/befs.txt
1622F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623
1624BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: Documentation/filesystems/bfs.txt
1628F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001629F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630
Bryan Wu1394f032007-05-06 14:50:22 -07001631BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001633L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001634W: http://blackfin.uclinux.org
1635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001636F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001637
Bryan Wue190d6b2007-07-17 14:43:44 +08001638BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001639L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001640W: http://blackfin.uclinux.org
1641S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001642F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001643
Mike Frysinger566da5b2007-06-11 15:31:30 +08001644BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001646L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001647W: http://blackfin.uclinux.org
1648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001649F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001650
Mike Frysinger936ed492010-03-10 15:20:38 -08001651BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001652M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001653L: uclinux-dist-devel@blackfin.uclinux.org
1654W: http://blackfin.uclinux.org
1655S: Supported
1656F: drivers/mmc/host/bfin_sdh.c
1657
Bryan Wu1394f032007-05-06 14:50:22 -07001658BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001660L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001661W: http://blackfin.uclinux.org
1662S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001663F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001664
Bryan Wu1e6d3202007-07-15 02:50:02 +08001665BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001666M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001667L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001668W: http://blackfin.uclinux.org
1669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001670F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001671
Bryan Wud24ecfc2007-05-01 23:26:32 +02001672BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001674L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001675W: http://blackfin.uclinux.org/
1676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001677F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001678
Scott Jiang1e204372013-01-18 17:09:47 -03001679BLACKFIN MEDIA DRIVER
1680M: Scott Jiang <scott.jiang.linux@gmail.com>
1681L: uclinux-dist-devel@blackfin.uclinux.org
1682W: http://blackfin.uclinux.org/
1683S: Supported
1684F: drivers/media/platform/blackfin/
1685F: drivers/media/i2c/adv7183*
1686F: drivers/media/i2c/vs6624*
1687
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001688BLINKM RGB LED DRIVER
1689M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1690S: Maintained
1691F: drivers/leds/leds-blinkm.c
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001694M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001695T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001697F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Joern Engel2b54aae2008-02-06 01:38:02 -08001699BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001700M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001701L: linux-mtd@lists.infradead.org
1702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001703F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001704
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001705BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001707M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001708M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001709L: linux-bluetooth@vger.kernel.org
1710W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001711T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1712T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001720L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: net/bluetooth/
1726F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001729M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001730M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001731L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001732W: http://sourceforge.net/projects/bonding/
1733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001734F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001735F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Gary Zambrano39105892006-06-22 17:26:20 -07001737BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001738M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001739L: netdev@vger.kernel.org
1740S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001741F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001742
Michael Chan948c51e2006-06-04 02:51:39 -07001743BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001744M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001745L: netdev@vger.kernel.org
1746S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001747F: drivers/net/ethernet/broadcom/bnx2.*
1748F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001749
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001750BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001752L: netdev@vger.kernel.org
1753S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001754F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755
Stephen Warrenf680f252012-09-15 00:18:54 -06001756BROADCOM BCM2835 ARM ARCHICTURE
1757M: Stephen Warren <swarren@wwwdotorg.org>
1758L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1759T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1760S: Maintained
1761F: arch/arm/mach-bcm2835/
1762F: arch/arm/boot/dts/bcm2835*
1763F: arch/arm/configs/bcm2835_defconfig
1764F: drivers/*/*bcm2835*
1765
Michael Chan948c51e2006-06-04 02:51:39 -07001766BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Matt Carlson <mcarlson@broadcom.com>
1768M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001769L: netdev@vger.kernel.org
1770S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001771F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001772
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001773BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1774M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001775M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001776M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001777M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001778L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001779L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001780S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001781F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001782
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001783BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1784M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1785L: linux-scsi@vger.kernel.org
1786S: Supported
1787F: drivers/scsi/bnx2fc/
1788
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001789BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1790M: Rafał Miłecki <zajec5@gmail.com>
1791L: linux-wireless@vger.kernel.org
1792S: Maintained
1793F: drivers/bcma/
1794F: include/linux/bcma/
1795
Jing Huang7725ccf2009-09-23 17:46:15 -07001796BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001797M: Anil Gurumurthy <agurumur@brocade.com>
1798M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001799L: linux-scsi@vger.kernel.org
1800S: Supported
1801F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001802
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001803BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1804M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001805L: netdev@vger.kernel.org
1806S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001807F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001809BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001811L: linux-scsi@vger.kernel.org
1812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001813F: block/bsg.c
1814F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001815F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001816
Clemens Ladischaf399172011-01-10 16:32:54 +01001817BT87X AUDIO DRIVER
1818M: Clemens Ladisch <clemens@ladisch.de>
1819L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1820T: git git://git.alsa-project.org/alsa-kernel.git
1821S: Maintained
1822F: Documentation/sound/alsa/Bt87x.txt
1823F: sound/pci/bt87x.c
1824
Michael Bueschff1d5c22008-07-25 01:46:10 -07001825BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001826M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001827W: http://bu3sch.de/btgpio.php
1828S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001829F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830
Joe Percheseb1eb042009-01-21 10:49:16 -05001831BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001832M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001833L: linux-btrfs@vger.kernel.org
1834W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001835Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001836T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/filesystems/btrfs.txt
1839F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001842M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001843L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001844W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001845T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001846S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001848F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Clemens Ladischaf399172011-01-10 16:32:54 +01001850C-MEDIA CMI8788 DRIVER
1851M: Clemens Ladisch <clemens@ladisch.de>
1852L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1853T: git git://git.alsa-project.org/alsa-kernel.git
1854S: Maintained
1855F: sound/pci/oxygen/
1856
Mark Salter21413552011-10-04 11:21:42 -04001857C6X ARCHITECTURE
1858M: Mark Salter <msalter@redhat.com>
1859M: Aurelien Jacquiot <a-jacquiot@ti.com>
1860L: linux-c6x-dev@linux-c6x.org
1861W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1862S: Maintained
1863F: arch/c6x/
1864
David Howellsa5432f52009-04-20 15:46:45 +01001865CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001867L: linux-cachefs@redhat.com
1868S: Supported
1869F: Documentation/filesystems/caching/cachefiles.txt
1870F: fs/cachefiles/
1871
Hans Verkuilc815ca32012-11-23 07:05:54 -03001872CADET FM/AM RADIO RECEIVER DRIVER
1873M: Hans Verkuil <hverkuil@xs4all.nl>
1874L: linux-media@vger.kernel.org
1875T: git git://linuxtv.org/media_tree.git
1876W: http://linuxtv.org
1877S: Maintained
1878F: drivers/media/radio/radio-cadet*
1879
Jonathan Corbet77d51402007-03-22 19:44:17 -03001880CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001883T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001885F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001886F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001887
Joe Perches201b6ba2010-09-07 20:33:24 +00001888CAIF NETWORK LAYER
1889M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1890L: netdev@vger.kernel.org
1891S: Supported
1892F: Documentation/networking/caif/
1893F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001894F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001895F: include/net/caif/
1896F: net/caif/
1897
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001898CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001899M: Muli Ben-Yehuda <muli@il.ibm.com>
1900M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001901L: discuss@x86-64.org
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: arch/x86/kernel/pci-calgary_64.c
1904F: arch/x86/kernel/tce_64.c
1905F: arch/x86/include/asm/calgary.h
1906F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001907
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001908CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001909M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001910L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001911W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001912T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001913S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001914F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001915F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001916F: include/uapi/linux/can.h
1917F: include/uapi/linux/can/bcm.h
1918F: include/uapi/linux/can/raw.h
1919F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001920
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001921CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001923M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001924L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001925W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001926T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001927S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001928F: drivers/net/can/
1929F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001930F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001931F: include/uapi/linux/can/error.h
1932F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001933
James Morris95d16c72012-03-16 12:05:48 +11001934CAPABILITIES
1935M: Serge Hallyn <serge.hallyn@canonical.com>
1936L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001937S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001938F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001939F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001940F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001941F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001942F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001943
Arnd Bergmannb8154542008-05-16 11:10:59 +02001944CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001946L: linuxppc-dev@lists.ozlabs.org
1947L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001948W: http://www.ibm.com/developerworks/power/cell/
1949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001950F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001951F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001952F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001953F: arch/powerpc/oprofile/*cell*
1954F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955
Sage Weil9030aaf2009-10-06 11:31:15 -07001956CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001957M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001958L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001959W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001960T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001961S: Supported
1962F: Documentation/filesystems/ceph.txt
1963F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001964F: net/ceph
1965F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001966F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001967
David Vrabel18332a82008-09-17 16:34:44 +01001968CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001969L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001970S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001971F: Documentation/usb/WUSB-Design-overview.txt
1972F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001973F: drivers/usb/host/hwa-hc.c
1974F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001975F: drivers/usb/wusbcore/
1976F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001977
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001978CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001980W: http://miguelojeda.es/auxdisplay.htm
1981W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/auxdisplay/cfag12864b.c
1984F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985
1986CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001987M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001988W: http://miguelojeda.es/auxdisplay.htm
1989W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001991F: drivers/auxdisplay/cfag12864bfb.c
1992F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993
Johannes Berg704232c2007-04-23 12:20:05 -07001994CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001995M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001996L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001997W: http://wireless.kernel.org/
1998T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1999T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002000S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002001F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002002F: include/net/cfg80211.h
2003F: net/wireless/*
2004X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002005
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002006CHAR and MISC DRIVERS
2007M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002008M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002009T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002010S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002011F: drivers/char/*
2012F: drivers/misc/*
2013
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002014CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002016M: Joe Perches <joe@perches.com>
2017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002019
Harry Weif8407f22011-02-25 14:44:15 -08002020CHINESE DOCUMENTATION
2021M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002022L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08002023L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2024S: Maintained
2025F: Documentation/zh_CN/
2026
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002027CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2028M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2029L: linux-usb@vger.kernel.org
2030S: Maintained
2031F: drivers/usb/chipidea/
2032
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002033CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002034M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002035M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002036M: Neel Patel <neepatel@cisco.com>
2037M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002038S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002039F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002040
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002041CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002042M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002043L: netdev@vger.kernel.org
2044S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002045F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002047CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002049L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052
Timur Tabid9e9d822008-04-24 08:45:26 +10002053CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002054M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002055L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002056S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002057F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002058
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002059CLEANCACHE API
2060M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2061L: linux-kernel@vger.kernel.org
2062S: Maintained
2063F: mm/cleancache.c
2064F: include/linux/cleancache.h
2065
Russell Kingd4275352009-04-16 14:05:27 +01002066CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002068S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002069F: include/linux/clk.h
2070
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002071CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002072M: Hiral Patel <hiralpat@cisco.com>
2073M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002074M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002075L: linux-scsi@vger.kernel.org
2076S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002077F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002078
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002079CMPC ACPI DRIVER
2080M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2081M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002082L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002083S: Supported
2084F: drivers/platform/x86/classmate-laptop.c
2085
Nicolas Palix74425ee2010-06-06 17:15:01 +02002086COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002087M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002088M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002089M: Nicolas Palix <nicolas.palix@imag.fr>
2090L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091W: http://coccinelle.lip6.fr/
2092S: Supported
2093F: scripts/coccinelle/
2094F: scripts/coccicheck
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002097M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098M: coda@cs.cmu.edu
2099L: codalist@coda.cs.cmu.edu
2100W: http://www.coda.cs.cmu.edu/
2101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: Documentation/filesystems/coda.txt
2103F: fs/coda/
2104F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002105F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Mike Turquette7704add2012-05-02 18:37:45 -07002107COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002108M: Mike Turquette <mturquette@linaro.org>
2109L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2110T: git git://git.linaro.org/people/mturquette/linux.git
2111S: Maintained
2112F: drivers/clk/clk.c
2113F: drivers/clk/clk-*
2114F: include/linux/clk-pr*
2115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002116COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002118L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002119L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002120W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002121Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002122T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002124F: Documentation/filesystems/cifs.txt
2125F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002129L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002134M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002135L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002141L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002143F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002145COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002147L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002150
Simon Arlott949be0f2007-03-06 02:47:46 -08002151CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002152M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002153L: accessrunner-general@lists.sourceforge.net
2154W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002158CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002159M: Joel Becker <jlbec@evilplan.org>
2160T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002162F: fs/configfs/
2163F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002165CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002167L: netdev@vger.kernel.org
2168S: Maintained
2169F: drivers/connector/
2170
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002171CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002172M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002173M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002174L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002175L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002176T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: include/linux/cgroup*
2179F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002180F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002181
Rudolf Marekbebe4672007-05-08 17:22:02 +02002182CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002183M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002184L: lm-sensors@lm-sensors.org
2185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/hwmon/coretemp
2187F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002190M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191W: http://www.fi.muni.cz/~kas/cosa/
2192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002193F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Florian Fainelli4371ee32009-06-01 02:43:17 -07002195CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002196M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002197L: netdev@vger.kernel.org
2198S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002199F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002202M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002203L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002204L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/cpufreq/
2207F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: arch/x86/kernel/cpuid.c
2213F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002215CPU POWER MONITORING SUBSYSTEM
2216M: Dominik Brodowski <linux@dominikbrodowski.net>
2217M: Thomas Renninger <trenn@suse.de>
2218S: Maintained
2219F: tools/power/cpupower
2220
Paul Jacksoned90fb42005-09-27 21:45:37 -07002221CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002222M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002223W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002224W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: Documentation/cgroups/cpusets.txt
2227F: include/linux/cpuset.h
2228F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002231W: http://sourceforge.net/projects/cramfs/
2232S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002233F: Documentation/filesystems/cramfs.txt
2234F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Mikael Starvik <starvik@axis.com>
2238M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002239L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://developer.axis.com
2241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002243F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Herbert Xu <herbert@gondor.apana.org.au>
2247M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002249T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: Documentation/crypto/
2252F: arch/*/crypto/
2253F: crypto/
2254F: drivers/crypto/
2255F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Neil Horman5b07bd52009-02-05 16:03:04 +11002257CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002259L: linux-crypto@vger.kernel.org
2260S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002261F: crypto/ansi_cprng.c
2262F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002263
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002264CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002268
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002269CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002270M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002271L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002272L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002273T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002274W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002275W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002278F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002279F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002280
Hans Verkuil3f101d92012-11-23 07:00:02 -03002281CX2341X MPEG ENCODER HELPER MODULE
2282M: Hans Verkuil <hverkuil@xs4all.nl>
2283L: linux-media@vger.kernel.org
2284T: git git://linuxtv.org/media_tree.git
2285W: http://linuxtv.org
2286S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002287F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002288F: include/media/cx2341x*
2289
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002290CX88 VIDEO4LINUX DRIVER
2291M: Mauro Carvalho Chehab <mchehab@redhat.com>
2292L: linux-media@vger.kernel.org
2293W: http://linuxtv.org
2294T: git git://linuxtv.org/media_tree.git
2295S: Odd fixes
2296F: Documentation/video4linux/cx88/
2297F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002298
Antti Palosaari91952bc2012-10-01 12:28:46 -03002299CXD2820R MEDIA DRIVER
2300M: Antti Palosaari <crope@iki.fi>
2301L: linux-media@vger.kernel.org
2302W: http://linuxtv.org/
2303W: http://palosaari.fi/linux/
2304Q: http://patchwork.linuxtv.org/project/linux-media/list/
2305T: git git://linuxtv.org/anttip/media_tree.git
2306S: Maintained
2307F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002308
Steve Wisee5ec3782008-05-20 14:06:33 -07002309CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002311L: netdev@vger.kernel.org
2312W: http://www.chelsio.com
2313S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002314F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002315
2316CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002318L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002319W: http://www.openfabrics.org
2320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002322
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002323CXGB4 ETHERNET DRIVER (CXGB4)
2324M: Dimitris Michailidis <dm@chelsio.com>
2325L: netdev@vger.kernel.org
2326W: http://www.chelsio.com
2327S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002328F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002329
2330CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2331M: Steve Wise <swise@chelsio.com>
2332L: linux-rdma@vger.kernel.org
2333W: http://www.openfabrics.org
2334S: Supported
2335F: drivers/infiniband/hw/cxgb4/
2336
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002337CXGB4VF ETHERNET DRIVER (CXGB4VF)
2338M: Casey Leedom <leedom@chelsio.com>
2339L: netdev@vger.kernel.org
2340W: http://www.chelsio.com
2341S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002342F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002343
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002344STMMAC ETHERNET DRIVER
2345M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2346L: netdev@vger.kernel.org
2347W: http://www.stlinux.com
2348S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002349F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354W: http://www.arm.linux.org.uk/
2355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002360S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002361F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002362F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002363F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002368F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002370CYPRESS_FIRMWARE MEDIA DRIVER
2371M: Antti Palosaari <crope@iki.fi>
2372L: linux-media@vger.kernel.org
2373W: http://linuxtv.org/
2374W: http://palosaari.fi/linux/
2375Q: http://patchwork.linuxtv.org/project/linux-media/list/
2376T: git git://linuxtv.org/anttip/media_tree.git
2377S: Maintained
2378F: drivers/media/common/cypress_firmware*
2379
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002380CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002381M: Javier Martinez Canillas <javier@dowhile0.org>
2382L: linux-input@vger.kernel.org
2383S: Maintained
2384F: drivers/input/touchscreen/cyttsp*
2385F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002388M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389W: http://yaina.de/jreuter/
2390W: http://www.qsl.net/dl1bke/
2391L: linux-hams@vger.kernel.org
2392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: net/ax25/af_ax25.c
2394F: net/ax25/ax25_dev.c
2395F: net/ax25/ax25_ds_*
2396F: net/ax25/ax25_in.c
2397F: net/ax25/ax25_out.c
2398F: net/ax25/ax25_timer.c
2399F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002402L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002403S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002404F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002405F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002406
2407DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002408M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002409W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002410M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002415M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002416M: Ali Akcaagac <aliakc@web.de>
2417M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002419L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420L: http://lists.twibble.org/mailman/listinfo/dc395x/
2421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: Documentation/scsi/dc395x.txt
2423F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002425DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002426M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002427L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002428W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002430F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002431F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002432F: include/linux/tfrc.h
2433F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436W: http://linux-decnet.sourceforge.net
2437L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002438S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002439F: Documentation/networking/decnet.txt
2440F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002445F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002447DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002449L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002454M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455W: http://www.debian.org/~dz/i8k/
2456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002458F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Doug Warzecha90563ec2005-09-06 15:17:15 -07002460DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: Documentation/dcdbas.txt
2464F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002465
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002466DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002467M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002468S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002469F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002470
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002471DESIGNWARE USB3 DRD IP DRIVER
2472M: Felipe Balbi <balbi@ti.com>
2473L: linux-usb@vger.kernel.org
2474L: linux-omap@vger.kernel.org
2475T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2476S: Maintained
2477F: drivers/usb/dwc3/
2478
Kyungmin Park89d07762012-01-10 15:09:09 -08002479DEVICE FREQUENCY (DEVFREQ)
2480M: MyungJoo Ham <myungjoo.ham@samsung.com>
2481M: Kyungmin Park <kyungmin.park@samsung.com>
2482L: linux-kernel@vger.kernel.org
2483S: Maintained
2484F: drivers/devfreq/
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002487M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489S: Maintained
2490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002491DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002492M: Alasdair Kergon <agk@redhat.com>
2493M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494L: dm-devel@redhat.com
2495W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002496Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002497T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002499F: Documentation/device-mapper/
2500F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002501F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002502F: include/linux/device-mapper.h
2503F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002504
Guenter Roeck335d7c52011-01-26 11:45:49 -08002505DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002506M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002507L: linux-i2c@vger.kernel.org
2508S: Maintained
2509F: drivers/i2c/busses/i2c-diolan-u2c.c
2510
Randy Dunlape7839f22008-10-12 16:11:45 -07002511DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002512M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002514F: Documentation/filesystems/dnotify.txt
2515F: fs/notify/dnotify/
2516F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002519M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2521W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2522W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2523S: Maintained
2524
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002525DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002526M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: Documentation/filesystems/quota.txt
2529F: fs/quota/
2530F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002531F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Bernie Thompson702686a2012-03-01 13:52:13 -08002533DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2534M: Bernie Thompson <bernie@plugable.com>
2535L: linux-fbdev@vger.kernel.org
2536S: Maintained
2537W: http://plugable.com/category/projects/udlfb/
2538F: drivers/video/udlfb.c
2539F: include/video/udlfb.h
2540F: Documentation/fb/udlfb.txt
2541
Randy Dunlape7839f22008-10-12 16:11:45 -07002542DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002543M: Christine Caulfield <ccaulfie@redhat.com>
2544M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002545L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002546W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002547T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002548S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002549F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002550
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302551DMA BUFFER SHARING FRAMEWORK
2552M: Sumit Semwal <sumit.semwal@linaro.org>
2553S: Maintained
2554L: linux-media@vger.kernel.org
2555L: dri-devel@lists.freedesktop.org
2556L: linaro-mm-sig@lists.linaro.org
2557F: drivers/base/dma-buf*
2558F: include/linux/dma-buf*
2559F: Documentation/dma-buf-sharing.txt
2560T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2561
Dan Williamsb3e5f262007-08-07 10:26:35 -07002562DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002563M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002564M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002566F: drivers/dma/
2567F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302568T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2569T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002570
Juerg Haefligerb8250372007-06-09 10:11:16 -04002571DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002572M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002573L: lm-sensors@lm-sensors.org
2574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002575F: Documentation/hwmon/dme1737
2576F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002577
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002578DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002579M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002580L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002582F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002583
Joe Perches7d2c86b2009-04-07 20:59:01 -07002584DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002585M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002586L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002587T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002589F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002590
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002592M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593L: blinux-list@redhat.com
2594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002595F: drivers/char/dtlk.c
2596F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002598DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002599M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002600L: linux-scsi@vger.kernel.org
2601W: http://www.adaptec.com/
2602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002603F: drivers/scsi/dpt*
2604F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002605
Philipp Reisnerb411b362009-09-25 16:07:19 -07002606DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002607P: Philipp Reisner
2608P: Lars Ellenberg
2609M: drbd-dev@lists.linbit.com
2610L: drbd-user@lists.linbit.com
2611W: http://www.drbd.org
2612T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2613T: git git://git.drbd.org/drbd-8.3.git
2614S: Supported
2615F: drivers/block/drbd/
2616F: lib/lru_cache.c
2617F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002618
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002619DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002620M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002621T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002623F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002624F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002625F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002626F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002627F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002628F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002629F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002632M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002633L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002634T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002636F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002637F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002638F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Chris Wilson8daf7472010-09-28 14:07:26 +01002640INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002641M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002642L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002643L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002644T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002645S: Supported
2646F: drivers/gpu/drm/i915
2647F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002648F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002649
Kyungmin Park398a6d42011-11-02 11:33:16 +09002650DRM DRIVERS FOR EXYNOS
2651M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002652M: Joonyoung Shim <jy0922.shim@samsung.com>
2653M: Seung-Woo Kim <sw0312.kim@samsung.com>
2654M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002655L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002656T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002657S: Supported
2658F: drivers/gpu/drm/exynos
2659F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002660F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002661
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002662DRM DRIVERS FOR NVIDIA TEGRA
2663M: Thierry Reding <thierry.reding@avionic-design.de>
2664L: dri-devel@lists.freedesktop.org
2665L: linux-tegra@vger.kernel.org
2666T: git git://gitorious.org/thierryreding/linux.git
2667S: Maintained
2668F: drivers/gpu/drm/tegra/
2669F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2670
Alexey Klimov598df1a2012-11-28 17:16:32 -03002671DSBR100 USB FM RADIO DRIVER
2672M: Alexey Klimov <klimov.linux@gmail.com>
2673L: linux-media@vger.kernel.org
2674T: git git://linuxtv.org/media_tree.git
2675S: Maintained
2676F: drivers/media/radio/dsbr100.c
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002679M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002680L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002682F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Antti Palosaari91952bc2012-10-01 12:28:46 -03002684DVB_USB_AF9015 MEDIA DRIVER
2685M: Antti Palosaari <crope@iki.fi>
2686L: linux-media@vger.kernel.org
2687W: http://linuxtv.org/
2688W: http://palosaari.fi/linux/
2689Q: http://patchwork.linuxtv.org/project/linux-media/list/
2690T: git git://linuxtv.org/anttip/media_tree.git
2691S: Maintained
2692F: drivers/media/usb/dvb-usb-v2/af9015*
2693
2694DVB_USB_AF9035 MEDIA DRIVER
2695M: Antti Palosaari <crope@iki.fi>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://palosaari.fi/linux/
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/anttip/media_tree.git
2701S: Maintained
2702F: drivers/media/usb/dvb-usb-v2/af9035*
2703
2704DVB_USB_ANYSEE MEDIA DRIVER
2705M: Antti Palosaari <crope@iki.fi>
2706L: linux-media@vger.kernel.org
2707W: http://linuxtv.org/
2708W: http://palosaari.fi/linux/
2709Q: http://patchwork.linuxtv.org/project/linux-media/list/
2710T: git git://linuxtv.org/anttip/media_tree.git
2711S: Maintained
2712F: drivers/media/usb/dvb-usb-v2/anysee*
2713
2714DVB_USB_AU6610 MEDIA DRIVER
2715M: Antti Palosaari <crope@iki.fi>
2716L: linux-media@vger.kernel.org
2717W: http://linuxtv.org/
2718W: http://palosaari.fi/linux/
2719Q: http://patchwork.linuxtv.org/project/linux-media/list/
2720T: git git://linuxtv.org/anttip/media_tree.git
2721S: Maintained
2722F: drivers/media/usb/dvb-usb-v2/au6610*
2723
2724DVB_USB_CE6230 MEDIA DRIVER
2725M: Antti Palosaari <crope@iki.fi>
2726L: linux-media@vger.kernel.org
2727W: http://linuxtv.org/
2728W: http://palosaari.fi/linux/
2729Q: http://patchwork.linuxtv.org/project/linux-media/list/
2730T: git git://linuxtv.org/anttip/media_tree.git
2731S: Maintained
2732F: drivers/media/usb/dvb-usb-v2/ce6230*
2733
Michael Krufkyd099dea2012-10-02 00:56:20 -03002734DVB_USB_CXUSB MEDIA DRIVER
2735M: Michael Krufky <mkrufky@linuxtv.org>
2736L: linux-media@vger.kernel.org
2737W: http://linuxtv.org/
2738W: http://github.com/mkrufky
2739Q: http://patchwork.linuxtv.org/project/linux-media/list/
2740T: git git://linuxtv.org/media_tree.git
2741S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002742F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002743
Antti Palosaari91952bc2012-10-01 12:28:46 -03002744DVB_USB_EC168 MEDIA DRIVER
2745M: Antti Palosaari <crope@iki.fi>
2746L: linux-media@vger.kernel.org
2747W: http://linuxtv.org/
2748W: http://palosaari.fi/linux/
2749Q: http://patchwork.linuxtv.org/project/linux-media/list/
2750T: git git://linuxtv.org/anttip/media_tree.git
2751S: Maintained
2752F: drivers/media/usb/dvb-usb-v2/ec168*
2753
Antti Palosaari55609832013-04-09 20:30:42 -03002754DVB_USB_GL861 MEDIA DRIVER
2755M: Antti Palosaari <crope@iki.fi>
2756L: linux-media@vger.kernel.org
2757W: http://linuxtv.org/
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/gl861*
2762
Michael Krufky8856f5f2012-10-02 00:55:50 -03002763DVB_USB_MXL111SF MEDIA DRIVER
2764M: Michael Krufky <mkrufky@linuxtv.org>
2765L: linux-media@vger.kernel.org
2766W: http://linuxtv.org/
2767W: http://github.com/mkrufky
2768Q: http://patchwork.linuxtv.org/project/linux-media/list/
2769T: git git://linuxtv.org/mkrufky/mxl111sf.git
2770S: Maintained
2771F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2772
Antti Palosaari91952bc2012-10-01 12:28:46 -03002773DVB_USB_RTL28XXU MEDIA DRIVER
2774M: Antti Palosaari <crope@iki.fi>
2775L: linux-media@vger.kernel.org
2776W: http://linuxtv.org/
2777W: http://palosaari.fi/linux/
2778Q: http://patchwork.linuxtv.org/project/linux-media/list/
2779T: git git://linuxtv.org/anttip/media_tree.git
2780S: Maintained
2781F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2782
2783DVB_USB_V2 MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787W: http://palosaari.fi/linux/
2788Q: http://patchwork.linuxtv.org/project/linux-media/list/
2789T: git git://linuxtv.org/anttip/media_tree.git
2790S: Maintained
2791F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2792F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2793
Jason Baronac0ac382011-08-11 14:36:43 -04002794DYNAMIC DEBUG
2795M: Jason Baron <jbaron@redhat.com>
2796S: Maintained
2797F: lib/dynamic_debug.c
2798F: include/linux/dynamic_debug.h
2799
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002800DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002801M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002802S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002803F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002804
Antti Palosaari91952bc2012-10-01 12:28:46 -03002805E4000 MEDIA DRIVER
2806M: Antti Palosaari <crope@iki.fi>
2807L: linux-media@vger.kernel.org
2808W: http://linuxtv.org/
2809W: http://palosaari.fi/linux/
2810Q: http://patchwork.linuxtv.org/project/linux-media/list/
2811T: git git://linuxtv.org/anttip/media_tree.git
2812S: Maintained
2813F: drivers/media/tuners/e4000*
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002817L: linux-eata@i-connect.net
2818L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
2822EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002823M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824L: linux-scsi@vger.kernel.org
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002830L: linux-eata@i-connect.net
2831L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002837L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838W: http://ebtables.sourceforge.net/
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002841F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002842F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Antti Palosaari91952bc2012-10-01 12:28:46 -03002844EC100 MEDIA DRIVER
2845M: Antti Palosaari <crope@iki.fi>
2846L: linux-media@vger.kernel.org
2847W: http://linuxtv.org/
2848W: http://palosaari.fi/linux/
2849Q: http://patchwork.linuxtv.org/project/linux-media/list/
2850T: git git://linuxtv.org/anttip/media_tree.git
2851S: Maintained
2852F: drivers/media/dvb-frontends/ec100*
2853
Michael Halcrow237fead2006-10-04 02:16:22 -07002854ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002855M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002856M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002857L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002858W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002860F: Documentation/filesystems/ecryptfs.txt
2861F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002862
Alan Coxda9bb1d2006-01-18 17:44:13 -08002863EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002865L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002866W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002868F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002869F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002870F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002871
Borislav Petkovc476c232009-05-20 20:31:58 +02002872EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002874M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002875L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002876W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002877S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002878F: drivers/edac/amd64_edac*
2879
Ralf Baechlef65aad42012-10-17 00:39:09 +02002880EDAC-CAVIUM
2881M: Ralf Baechle <ralf@linux-mips.org>
2882M: David Daney <david.daney@cavium.com>
2883L: linux-edac@vger.kernel.org
2884L: linux-mips@linux-mips.org
2885W: bluesmoke.sourceforge.net
2886S: Supported
2887F: drivers/edac/octeon_edac*
2888
Dave Peterson0e438e32006-03-26 01:38:55 -08002889EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002890M: Mark Gross <mark.gross@intel.com>
2891M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002892L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002893W: bluesmoke.sourceforge.net
2894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002895F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002896
2897EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002898M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002899L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002900W: bluesmoke.sourceforge.net
2901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002902F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002903
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002904EDAC-GHES
2905M: Mauro Carvalho Chehab <mchehab@redhat.com>
2906L: linux-edac@vger.kernel.org
2907W: bluesmoke.sourceforge.net
2908S: Maintained
2909F: drivers/edac/ghes-edac.c
2910
Douglas Thompson6bc78402007-07-19 01:50:12 -07002911EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002913L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002914W: bluesmoke.sourceforge.net
2915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002916F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002917
2918EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002919M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002920L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002921W: bluesmoke.sourceforge.net
2922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002923F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002924
2925EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002926M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002927L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002928W: bluesmoke.sourceforge.net
2929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002930F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002931
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002932EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002933M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002934L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002935W: bluesmoke.sourceforge.net
2936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002937F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002938
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002939EDAC-I7300
2940M: Mauro Carvalho Chehab <mchehab@redhat.com>
2941L: linux-edac@vger.kernel.org
2942W: bluesmoke.sourceforge.net
2943S: Maintained
2944F: drivers/edac/i7300_edac.c
2945
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002946EDAC-I7CORE
2947M: Mauro Carvalho Chehab <mchehab@redhat.com>
2948L: linux-edac@vger.kernel.org
2949W: bluesmoke.sourceforge.net
2950S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002951F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002952
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002953EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002954M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302955M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002956L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002957W: bluesmoke.sourceforge.net
2958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002960
2961EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002962M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002963L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002964W: bluesmoke.sourceforge.net
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002967
Dave Peterson0e438e32006-03-26 01:38:55 -08002968EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002970L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002971W: bluesmoke.sourceforge.net
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002974
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002975EDAC-SBRIDGE
2976M: Mauro Carvalho Chehab <mchehab@redhat.com>
2977L: linux-edac@vger.kernel.org
2978W: bluesmoke.sourceforge.net
2979S: Maintained
2980F: drivers/edac/sb_edac.c
2981
Clemens Ladischaf399172011-01-10 16:32:54 +01002982EDIROL UA-101/UA-1000 DRIVER
2983M: Clemens Ladisch <clemens@ladisch.de>
2984L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2985T: git git://git.alsa-project.org/alsa-kernel.git
2986S: Maintained
2987F: sound/usb/misc/ua101.c
2988
Matt Fleming1f7df952012-10-03 10:04:02 +01002989EXTENSIBLE FIRMWARE INTERFACE (EFI)
2990M: Matt Fleming <matt.fleming@intel.com>
2991L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002992T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002993S: Maintained
2994F: Documentation/x86/efi-stub.txt
2995F: arch/ia64/kernel/efi.c
2996F: arch/x86/boot/compressed/eboot.[ch]
2997F: arch/x86/include/asm/efi.h
2998F: arch/x86/platform/efi/*
2999F: drivers/firmware/efivars.c
3000F: include/linux/efi*.h
3001
Peter Jones85a00d92010-09-22 13:05:04 -07003002EFIFB FRAMEBUFFER DRIVER
3003L: linux-fbdev@vger.kernel.org
3004M: Peter Jones <pjones@redhat.com>
3005S: Maintained
3006F: drivers/video/efifb.c
3007
Josh Triplett0bee8d22006-07-30 03:03:58 -07003008EFS FILESYSTEM
3009W: http://aeschi.ch.eu.org/efs/
3010S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003011F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003012
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003013EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003014M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3015M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003016L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003018F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003019
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003020EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003021M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003022L: netdev@vger.kernel.org
3023S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003024F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003025
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003026EM28XX VIDEO4LINUX DRIVER
3027M: Mauro Carvalho Chehab <mchehab@redhat.com>
3028L: linux-media@vger.kernel.org
3029W: http://linuxtv.org
3030T: git git://linuxtv.org/media_tree.git
3031S: Maintained
3032F: drivers/media/usb/em28xx/
3033
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003034EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003035M: Paul Gortmaker <paul.gortmaker@windriver.com>
3036M: Matt Mackall <mpm@selenic.com>
3037M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003038L: linux-embedded@vger.kernel.org
3039S: Maintained
3040
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003041EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003042M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003043L: linux-scsi@vger.kernel.org
3044W: http://sourceforge.net/projects/lpfcxxxx
3045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003046F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003047
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003048ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003049M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003050S: Maintained
3051F: drivers/misc/cb710/
3052F: drivers/mmc/host/cb710-mmc.*
3053F: include/linux/cb710.h
3054
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003055ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3056M: Maxim Levitsky <maximlevitsky@gmail.com>
3057S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003058F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003059
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003060EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003061M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003062S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003063T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003064F: drivers/video/s1d13xxxfb.c
3065F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003068M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003069L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003070L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003071W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: include/linux/netfilter_bridge/
3074F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003077M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003078L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003080F: Documentation/filesystems/ext2.txt
3081F: fs/ext2/
3082F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003085M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003087M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003088L: linux-ext4@vger.kernel.org
3089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: Documentation/filesystems/ext3.txt
3091F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003092
3093EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003095M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003096L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003097W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003098Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: Documentation/filesystems/ext4.txt
3101F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Mimi Zoharc5532b02011-08-17 18:52:24 -04003103Extended Verification Module (EVM)
3104M: Mimi Zohar <zohar@us.ibm.com>
3105S: Supported
3106F: security/integrity/evm/
3107
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003108EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3109M: MyungJoo Ham <myungjoo.ham@samsung.com>
3110M: Chanwoo Choi <cw00.choi@samsung.com>
3111L: linux-kernel@vger.kernel.org
3112S: Maintained
3113F: drivers/extcon/
3114F: Documentation/extcon/
3115
Jingoo Han0a799512012-02-06 11:30:39 +09003116EXYNOS DP DRIVER
3117M: Jingoo Han <jg1.han@samsung.com>
3118L: linux-fbdev@vger.kernel.org
3119S: Maintained
3120F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003121F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003122
Donghwa Lee33ad3912012-03-06 11:44:58 +09003123EXYNOS MIPI DISPLAY DRIVERS
3124M: Inki Dae <inki.dae@samsung.com>
3125M: Donghwa Lee <dh09.lee@samsung.com>
3126M: Kyungmin Park <kyungmin.park@samsung.com>
3127L: linux-fbdev@vger.kernel.org
3128S: Maintained
3129F: drivers/video/exynos/exynos_mipi*
3130F: include/video/exynos_mipi*
3131
Jean Delvaree53004e2006-01-09 23:26:14 +01003132F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003134L: lm-sensors@lm-sensors.org
3135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/hwmon/f71805f
3137F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003138
Michael Büscheea977e2012-04-02 12:14:32 -03003139FC0011 TUNER DRIVER
3140M: Michael Buesch <m@bues.ch>
3141L: linux-media@vger.kernel.org
3142S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003143F: drivers/media/tuners/fc0011.h
3144F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003145
Antti Palosaari91952bc2012-10-01 12:28:46 -03003146FC2580 MEDIA DRIVER
3147M: Antti Palosaari <crope@iki.fi>
3148L: linux-media@vger.kernel.org
3149W: http://linuxtv.org/
3150W: http://palosaari.fi/linux/
3151Q: http://patchwork.linuxtv.org/project/linux-media/list/
3152T: git git://linuxtv.org/anttip/media_tree.git
3153S: Maintained
3154F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Eric Paris88b2dbd2010-08-18 12:25:50 -04003156FANOTIFY
3157M: Eric Paris <eparis@redhat.com>
3158S: Maintained
3159F: fs/notify/fanotify/
3160F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003161F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003164M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165W: http://www.farsite.co.uk/
3166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003167F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Akinobu Mitac5408b82007-04-23 14:41:20 -07003169FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003172F: Documentation/fault-injection/
3173F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003174
Robert Lovecae727d2010-02-16 12:16:00 -08003175FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3176M: Robert Love <robert.w.love@intel.com>
3177L: devel@open-fcoe.org
3178W: www.Open-FCoE.org
3179S: Supported
3180F: drivers/scsi/libfc/
3181F: drivers/scsi/fcoe/
3182F: include/scsi/fc/
3183F: include/scsi/libfc.h
3184F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003185F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003187FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003189L: linux-fsdevel@vger.kernel.org
3190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: include/linux/fcntl.h
3192F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003193F: include/uapi/linux/fcntl.h
3194F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003195F: fs/fcntl.c
3196F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003197
3198FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003199M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003200L: linux-fsdevel@vger.kernel.org
3201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003203
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003204FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003205M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003206L: lm-sensors@lm-sensors.org
3207S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003208F: drivers/hwmon/f75375s.c
3209F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003210
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003211FIREWIRE AUDIO DRIVERS
3212M: Clemens Ladisch <clemens@ladisch.de>
3213L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3214T: git git://git.alsa-project.org/alsa-kernel.git
3215S: Maintained
3216F: sound/firewire/
3217
Stefan Richtereb86ec52012-11-03 09:25:20 +01003218FIREWIRE MEDIA DRIVERS (firedtv)
3219M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3220L: linux-media@vger.kernel.org
3221L: linux1394-devel@lists.sourceforge.net
3222T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3223S: Maintained
3224F: drivers/media/firewire/
3225
Chris Boota511ce32012-04-14 17:50:35 -07003226FIREWIRE SBP-2 TARGET
3227M: Chris Boot <bootc@bootc.net>
3228L: linux-scsi@vger.kernel.org
3229L: target-devel@vger.kernel.org
3230L: linux1394-devel@lists.sourceforge.net
3231T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3232S: Maintained
3233F: drivers/target/sbp/
3234
Joe Perches7d2c86b2009-04-07 20:59:01 -07003235FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003238W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003239T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003242F: include/linux/firewire.h
3243F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003244F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003245
3246FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003247M: Ming Lei <ming.lei@canonical.com>
3248L: linux-kernel@vger.kernel.org
3249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003250F: Documentation/firmware_class/
3251F: drivers/base/firmware*.c
3252F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003253
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003254FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3255M: Joshua Morris <josh.h.morris@us.ibm.com>
3256M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3257S: Maintained
3258F: drivers/block/rsxx/
3259
Jiri Kosina8206f662012-05-18 13:52:29 +02003260FLOPPY DRIVER
3261M: Jiri Kosina <jkosina@suse.cz>
3262T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3263S: Odd fixes
3264F: drivers/block/floppy.c
3265
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003266FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003267M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003268W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003271
3272FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003273L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003274S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003275F: drivers/net/wan/dlci.c
3276F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003279M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003280L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003282Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003283T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003286F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003287F: drivers/video/
3288F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003289F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003290F: include/uapi/video/
3291F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Timur Tabia57c1882012-10-16 17:33:42 -05003293FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003294M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003295L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003296S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003297F: drivers/video/fsl-diu-fb.*
3298
Zhang Wei173acc72008-03-01 07:42:48 -07003299FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: Li Yang <leoli@freescale.com>
3301M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003302L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003305
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003306FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003307M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003308L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003309L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003311F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003312
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003313FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003314M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003315L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003317S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003318F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003319F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003320
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003321FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3323M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003324L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003325L: netdev@vger.kernel.org
3326S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003327F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003328F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003329
Timur Tabid9e9d822008-04-24 08:45:26 +10003330FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003331L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003333F: arch/powerpc/sysdev/qe_lib/
3334F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003335
Joe Perchesb55ef922009-10-26 16:49:46 -07003336FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003337M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003338L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003339L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003340S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003341F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003342
Li Yangbeaf53b2007-05-25 13:54:02 +08003343FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003344M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003345L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003346L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003347S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003348F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003349
Timur Tabid9e9d822008-04-24 08:45:26 +10003350FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003351M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003352L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003353S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003354F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003355
3356FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003357M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003358L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003359L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003360S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003361F: sound/soc/fsl/fsl*
3362F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003363
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003365M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003368F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Pavel Machek71038f52009-01-15 13:51:02 -08003370FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Pavel Machek <pavel@ucw.cz>
3372M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003373L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003375F: Documentation/power/freezing-of-tasks.txt
3376F: include/linux/freezer.h
3377F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003378
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003379FRONTSWAP API
3380M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3381L: linux-kernel@vger.kernel.org
3382S: Maintained
3383F: mm/frontswap.c
3384F: include/linux/frontswap.h
3385
David Howellsa5432f52009-04-20 15:46:45 +01003386FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003387M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003388L: linux-cachefs@redhat.com
3389S: Supported
3390F: Documentation/filesystems/caching/
3391F: fs/fscache/
3392F: include/linux/fscache*.h
3393
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003394F2FS FILE SYSTEM
3395M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3396L: linux-f2fs-devel@lists.sourceforge.net
3397W: http://en.wikipedia.org/wiki/F2FS
3398T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3399S: Maintained
3400F: Documentation/filesystems/f2fs.txt
3401F: fs/f2fs/
3402F: include/linux/f2fs_fs.h
3403
David Howells5ab7ffe2007-04-10 15:10:45 +01003404FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003407F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Jonathan Woithe20b93732008-06-11 10:14:56 +09303409FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303410M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003411L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003413F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303414
Heungjun Kim4da621b2011-11-11 08:05:33 -03003415FUJITSU M-5MO LS CAMERA ISP DRIVER
3416M: Kyungmin Park <kyungmin.park@samsung.com>
3417M: Heungjun Kim <riverful.kim@samsung.com>
3418L: linux-media@vger.kernel.org
3419S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003420F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003421F: include/media/m5mols.h
3422
Robert Gerlach2d24c492012-01-18 14:26:22 +01003423FUJITSU TABLET EXTRAS
3424M: Robert Gerlach <khnz@gmx.de>
3425L: platform-driver-x86@vger.kernel.org
3426S: Maintained
3427F: drivers/platform/x86/fujitsu-tablet.c
3428
Miklos Szeredi04578f12005-09-09 13:10:22 -07003429FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003431L: fuse-devel@lists.sourceforge.net
3432W: http://fuse.sourceforge.net/
3433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003434F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003435F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003438M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003440S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003441F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003444M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445L: linux-scsi@vger.kernel.org
3446W: http://www.icp-vortex.com/
3447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003448F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003450GEMTEK FM RADIO RECEIVER DRIVER
3451M: Hans Verkuil <hverkuil@xs4all.nl>
3452L: linux-media@vger.kernel.org
3453T: git git://linuxtv.org/media_tree.git
3454W: http://linuxtv.org
3455S: Maintained
3456F: drivers/media/radio/radio-gemtek*
3457
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003458GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003459M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003461F: drivers/i2c/busses/i2c-gpio.c
3462F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003463
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003464GENERIC GPIO I2C MULTIPLEXER DRIVER
3465M: Peter Korsgaard <peter.korsgaard@barco.com>
3466L: linux-i2c@vger.kernel.org
3467S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003468F: drivers/i2c/muxes/i2c-mux-gpio.c
3469F: include/linux/i2c-mux-gpio.h
3470F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003471
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003472GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: drivers/net/wan/c101.c
3477F: drivers/net/wan/hd6457*
3478F: drivers/net/wan/hdlc*
3479F: drivers/net/wan/n2.c
3480F: drivers/net/wan/pc300too.c
3481F: drivers/net/wan/pci200syn.c
3482F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003484GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003485M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003486L: linux-arch@vger.kernel.org
3487T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3488S: Maintained
3489F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003490F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003491
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003492GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003493M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003494L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003495S: Supported
3496F: drivers/uio/uio_pci_generic.c
3497
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003498GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003499M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003500L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003501W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003502T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3503T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003505F: Documentation/filesystems/gfs2*.txt
3506F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003507F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003508
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003509GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003510M: Hansjoerg Lipp <hjlipp@web.de>
3511M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003512L: gigaset307x-common@lists.sourceforge.net
3513W: http://gigaset307x.sourceforge.net/
3514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: Documentation/isdn/README.gigaset
3516F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003517F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003518
Grant Likelya0dc00b2011-02-12 01:48:14 -07003519GPIO SUBSYSTEM
3520M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003521M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003522S: Maintained
3523T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003524F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003525F: drivers/gpio/
3526F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003527F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003528
Harry Wei71a6d0a2011-05-11 15:13:33 -07003529GRE DEMULTIPLEXER DRIVER
3530M: Dmitry Kozlov <xeb@mail.ru>
3531L: netdev@vger.kernel.org
3532S: Maintained
3533F: net/ipv4/gre.c
3534F: include/net/gre.h
3535
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003536GRETH 10/100/1G Ethernet MAC device driver
3537M: Kristoffer Glembo <kristoffer@gaisler.com>
3538L: netdev@vger.kernel.org
3539S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003540F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003541
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003542GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003544L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003545T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003546S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003547F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003548
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003549GSPCA GL860 SUBDRIVER
3550M: Olivier Lorin <o.lorin@laposte.net>
3551L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003552T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003553S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003554F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003555
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003556GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003558L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003559T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003560S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003561F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003562
3563GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003565L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003566T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003567S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003568F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003569
Brian Johnson261982f2009-07-19 15:58:56 -03003570GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003571M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003572L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003573T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003574S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003575F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003576
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003577GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003579L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003580T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003581S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003582F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003583
3584GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003585M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003586L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003587T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003588S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003589F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003590
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003591STK1160 USB VIDEO CAPTURE DRIVER
3592M: Ezequiel Garcia <elezegarcia@gmail.com>
3593L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003594T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003595S: Maintained
3596F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003597
Harry Wei71a6d0a2011-05-11 15:13:33 -07003598HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3599M: Frank Seidel <frank@f-seidel.de>
3600L: platform-driver-x86@vger.kernel.org
3601W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3602S: Maintained
3603F: drivers/platform/x86/hdaps.c
3604
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003605HDPVR USB VIDEO ENCODER DRIVER
3606M: Hans Verkuil <hverkuil@xs4all.nl>
3607L: linux-media@vger.kernel.org
3608T: git git://linuxtv.org/media_tree.git
3609W: http://linuxtv.org
3610S: Odd Fixes
3611F: drivers/media/usb/hdpvr
3612
Harry Wei71a6d0a2011-05-11 15:13:33 -07003613HWPOISON MEMORY FAILURE HANDLING
3614M: Andi Kleen <andi@firstfloor.org>
3615L: linux-mm@kvack.org
3616T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3617S: Maintained
3618F: mm/memory-failure.c
3619F: mm/hwpoison-inject.c
3620
3621HYPERVISOR VIRTUAL CONSOLE DRIVER
3622L: linuxppc-dev@lists.ozlabs.org
3623S: Odd Fixes
3624F: drivers/tty/hvc/
3625
Michael Buesch844dd052006-06-26 00:24:59 -07003626HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003627M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003628M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003629L: lm-sensors@lm-sensors.org
3630W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003631T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003632T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003633S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003634F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003635F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003636F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003637
3638HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003639M: Matt Mackall <mpm@selenic.com>
3640M: Herbert Xu <herbert@gondor.apana.org.au>
3641S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003642F: Documentation/hw_random.txt
3643F: drivers/char/hw_random/
3644F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003645
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003646HARDWARE SPINLOCK CORE
3647M: Ohad Ben-Cohen <ohad@wizery.com>
3648S: Maintained
3649F: Documentation/hwspinlock.txt
3650F: drivers/hwspinlock/hwspinlock_*
3651F: include/linux/hwspinlock.h
3652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003654L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003656F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
Antti Palosaari91952bc2012-10-01 12:28:46 -03003658HD29L2 MEDIA DRIVER
3659M: Antti Palosaari <crope@iki.fi>
3660L: linux-media@vger.kernel.org
3661W: http://linuxtv.org/
3662W: http://palosaari.fi/linux/
3663Q: http://patchwork.linuxtv.org/project/linux-media/list/
3664T: git git://linuxtv.org/anttip/media_tree.git
3665S: Maintained
3666F: drivers/media/dvb-frontends/hd29l2*
3667
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003668HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003669M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003670L: iss_storagedev@hp.com
3671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: Documentation/blockdev/cpqarray.txt
3673F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003674
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003675HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003676M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003677L: iss_storagedev@hp.com
3678S: Supported
3679F: Documentation/scsi/hpsa.txt
3680F: drivers/scsi/hpsa*.[ch]
3681F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003682F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003683
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003684HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003685M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003686L: iss_storagedev@hp.com
3687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003688F: Documentation/blockdev/cciss.txt
3689F: drivers/block/cciss*
3690F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003691F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003694L: linux-fsdevel@vger.kernel.org
3695S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003696F: Documentation/filesystems/hfs.txt
3697F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
3699HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003700M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701L: linux-nvidia@lists.surfsouth.com
3702W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003706HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003707M: Pavel Machek <pavel@ucw.cz>
3708M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003709L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003711F: arch/x86/power/
3712F: drivers/base/power/
3713F: kernel/power/
3714F: include/linux/suspend.h
3715F: include/linux/freezer.h
3716F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003717F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003718
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003719HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003720M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003721L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003722T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003724F: drivers/hid/
3725F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003726F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003727
Ingo Molnar38bed542007-02-22 09:09:34 +01003728HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003729M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003730T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003732F: Documentation/timers/
3733F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003734F: kernel/time/clockevents.c
3735F: kernel/time/tick*.*
3736F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003737F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003738F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003742S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003743F: drivers/net/hamradio/dmascc.c
3744F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003746HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003747M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003748W: http://www.highpoint-tech.com
3749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003750F: Documentation/scsi/hptiop.txt
3751F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003752
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003754M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755L: linux-hippi@sunsite.dk
3756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003758F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003759F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003760F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Jouni Malinenff1d2762005-05-12 22:54:16 -04003762HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003763M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003764L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003765L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003766W: http://hostap.epitest.fi/
3767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003769
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003770HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003771L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003772S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003773F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003774
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003775HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003777S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003778F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003779
Joe Perches7d2c86b2009-04-07 20:59:01 -07003780HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003781M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003783F: Documentation/timers/hpet.txt
3784F: drivers/char/hpet.c
3785F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003786F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003787
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003788HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003789M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003791F: arch/x86/kernel/hpet.c
3792F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Joe Perches7d2c86b2009-04-07 20:59:01 -07003800HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003801M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003802W: http://www.pharscape.org
3803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003804F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003805
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003806HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003807M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003808L: linux-input@vger.kernel.org
3809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003813M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003817Hyper-V CORE AND DRIVERS
3818M: K. Y. Srinivasan <kys@microsoft.com>
3819M: Haiyang Zhang <haiyangz@microsoft.com>
3820L: devel@linuxdriverproject.org
3821S: Maintained
3822F: drivers/hv/
3823F: drivers/hid/hid-hyperv.c
3824F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003825
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003826I2C OVER PARALLEL PORT
3827M: Jean Delvare <khali@linux-fr.org>
3828L: linux-i2c@vger.kernel.org
3829S: Maintained
3830F: Documentation/i2c/busses/i2c-parport
3831F: Documentation/i2c/busses/i2c-parport-light
3832F: drivers/i2c/busses/i2c-parport.c
3833F: drivers/i2c/busses/i2c-parport-light.c
3834
3835I2C/SMBUS CONTROLLER DRIVERS FOR PC
3836M: Jean Delvare <khali@linux-fr.org>
3837L: linux-i2c@vger.kernel.org
3838S: Maintained
3839F: Documentation/i2c/busses/i2c-ali1535
3840F: Documentation/i2c/busses/i2c-ali1563
3841F: Documentation/i2c/busses/i2c-ali15x3
3842F: Documentation/i2c/busses/i2c-amd756
3843F: Documentation/i2c/busses/i2c-amd8111
3844F: Documentation/i2c/busses/i2c-i801
3845F: Documentation/i2c/busses/i2c-nforce2
3846F: Documentation/i2c/busses/i2c-piix4
3847F: Documentation/i2c/busses/i2c-sis5595
3848F: Documentation/i2c/busses/i2c-sis630
3849F: Documentation/i2c/busses/i2c-sis96x
3850F: Documentation/i2c/busses/i2c-via
3851F: Documentation/i2c/busses/i2c-viapro
3852F: drivers/i2c/busses/i2c-ali1535.c
3853F: drivers/i2c/busses/i2c-ali1563.c
3854F: drivers/i2c/busses/i2c-ali15x3.c
3855F: drivers/i2c/busses/i2c-amd756.c
3856F: drivers/i2c/busses/i2c-amd756-s4882.c
3857F: drivers/i2c/busses/i2c-amd8111.c
3858F: drivers/i2c/busses/i2c-i801.c
3859F: drivers/i2c/busses/i2c-isch.c
3860F: drivers/i2c/busses/i2c-nforce2.c
3861F: drivers/i2c/busses/i2c-nforce2-s4985.c
3862F: drivers/i2c/busses/i2c-piix4.c
3863F: drivers/i2c/busses/i2c-sis5595.c
3864F: drivers/i2c/busses/i2c-sis630.c
3865F: drivers/i2c/busses/i2c-sis96x.c
3866F: drivers/i2c/busses/i2c-via.c
3867F: drivers/i2c/busses/i2c-viapro.c
3868
Neil Hormancb7f07a2013-02-10 11:59:03 -05003869I2C/SMBUS ISMT DRIVER
3870M: Seth Heasley <seth.heasley@intel.com>
3871M: Neil Horman <nhorman@tuxdriver.com>
3872L: linux-i2c@vger.kernel.org
3873F: drivers/i2c/busses/i2c-ismt.c
3874F: Documentation/i2c/busses/i2c-ismt
3875
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003876I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003877M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003878L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003879S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003880F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003881
Jean Delvare5b543962005-08-15 19:51:02 +02003882I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003883M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003884M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003885L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003886W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003887T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003889F: Documentation/i2c/
3890F: drivers/i2c/
3891F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003892F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003893F: include/uapi/linux/i2c.h
3894F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003896I2C-TAOS-EVM DRIVER
3897M: Jean Delvare <khali@linux-fr.org>
3898L: linux-i2c@vger.kernel.org
3899S: Maintained
3900F: Documentation/i2c/busses/i2c-taos-evm
3901F: drivers/i2c/busses/i2c-taos-evm.c
3902
Till Harbaume8c76ee2007-05-01 23:26:35 +02003903I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003905L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003906W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003908F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003909
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003911M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
3915i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003917T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918S: Maintained
3919
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003921M: Tony Luck <tony.luck@intel.com>
3922M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003924T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Kent Yoder956c2032012-09-07 04:17:01 +08003928IBM Power in-Nest Crypto Acceleration
3929M: Kent Yoder <key@linux.vnet.ibm.com>
3930L: linux-crypto@vger.kernel.org
3931S: Supported
3932F: drivers/crypto/nx/
3933
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003934IBM Power 842 compression accelerator
3935M: Robert Jennings <rcj@linux.vnet.ibm.com>
3936S: Supported
3937F: drivers/crypto/nx/nx-842.c
3938F: include/linux/nx842.h
3939
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003941M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Santiago Leon9d348af2010-09-03 18:29:53 +00003945IBM Power Virtual Ethernet Device Driver
3946M: Santiago Leon <santil@linux.vnet.ibm.com>
3947L: netdev@vger.kernel.org
3948S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003949F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003950
Robert Jennings4b7652c2012-07-31 12:34:36 -05003951IBM Power Virtual SCSI/FC Device Drivers
3952M: Robert Jennings <rcj@linux.vnet.ibm.com>
3953L: linux-scsi@vger.kernel.org
3954S: Supported
3955F: drivers/scsi/ibmvscsi/
3956X: drivers/scsi/ibmvscsi/ibmvstgt.c
3957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958IBM ServeRAID RAID DRIVER
3959P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003963F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003965ICH LPC AND GPIO DRIVER
3966M: Peter Tyser <ptyser@xes-inc.com>
3967S: Maintained
3968F: drivers/mfd/lpc_ich.c
3969F: drivers/gpio/gpio-ich.c
3970
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003971IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003972M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003974Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003975T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003977F: Documentation/ide/
3978F: drivers/ide/
3979F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
Ike Panhc6cb8c132011-08-25 22:28:45 +08003981IDEAPAD LAPTOP EXTRAS DRIVER
3982M: Ike Panhc <ike.pan@canonical.com>
3983L: platform-driver-x86@vger.kernel.org
3984W: http://launchpad.net/ideapad-laptop
3985S: Maintained
3986F: drivers/platform/x86/ideapad-laptop.c
3987
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003988IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003989M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003990L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: Documentation/cdrom/ide-cd
3993F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Andy Henroid27471fd2008-10-09 11:45:22 -07003995IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003996M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003997L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003999F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004000
Sergey Lapin02cf2282009-06-08 12:18:50 +00004001IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004002M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004003M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004004L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004005W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004006T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004007S: Maintained
4008F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004009F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004010F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004011
Sean Young40ad4a32012-11-19 10:32:53 -03004012IGUANAWORKS USB IR TRANSCEIVER
4013M: Sean Young <sean@mess.org>
4014L: linux-media@vger.kernel.org
4015S: Maintained
4016F: drivers/media/rc/iguanair.c
4017
Ameya Palande9545f862012-01-10 09:00:58 -08004018IIO SUBSYSTEM AND DRIVERS
4019M: Jonathan Cameron <jic23@cam.ac.uk>
4020L: linux-iio@vger.kernel.org
4021S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004022F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004023F: drivers/staging/iio/
4024
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004025IKANOS/ADI EAGLE ADSL USB DRIVER
4026M: Matthieu Castet <castet.matthieu@free.fr>
4027M: Stanislaw Gruszka <stf_xl@wp.pl>
4028S: Maintained
4029F: drivers/usb/atm/ueagle-atm.c
4030
Guenter Roecke89ab512013-03-08 08:13:09 -08004031INA209 HARDWARE MONITOR DRIVER
4032M: Guenter Roeck <linux@roeck-us.net>
4033L: lm-sensors@lm-sensors.org
4034S: Maintained
4035F: Documentation/hwmon/ina209
4036F: Documentation/devicetree/bindings/i2c/ina209.txt
4037F: drivers/hwmon/ina209.c
4038
4039INA2XX HARDWARE MONITOR DRIVER
4040M: Guenter Roeck <linux@roeck-us.net>
4041L: lm-sensors@lm-sensors.org
4042S: Maintained
4043F: Documentation/hwmon/ina2xx
4044F: drivers/hwmon/ina2xx.c
4045F: include/linux/platform_data/ina2xx.h
4046
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004047INDUSTRY PACK SUBSYSTEM (IPACK)
4048M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4049M: Jens Taprogge <jens.taprogge@taprogge.org>
4050M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4051L: industrypack-devel@lists.sourceforge.net
4052W: http://industrypack.sourceforge.net
4053S: Maintained
4054F: drivers/ipack/
4055
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004056INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004059F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004062L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004063S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004064F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
4066INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004067M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Sean Hefty <sean.hefty@intel.com>
4069M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004070L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004071W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004072Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004073T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004075F: Documentation/infiniband/
4076F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004077F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Robert Lovec9f04f52005-07-15 12:21:07 -04004079INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: John McCutchan <john@johnmccutchan.com>
4081M: Robert Love <rlove@rlove.org>
4082M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: Documentation/filesystems/inotify.txt
4085F: fs/notify/inotify/
4086F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004087F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004088
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004089INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004090M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4091M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004092L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004093Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004094T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004096F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004097F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004098F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004099F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004100
Henrik Rydberg3267a872010-06-24 19:10:40 -07004101INPUT MULTITOUCH (MT) PROTOCOL
4102M: Henrik Rydberg <rydberg@euromail.se>
4103L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004104T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004105S: Maintained
4106F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004107F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004108K: \b(ABS|SYN)_MT_
4109
Dave Jiang4ac13e12011-07-29 17:16:55 -07004110INTEL C600 SERIES SAS CONTROLLER DRIVER
4111M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004112M: Lukasz Dorau <lukasz.dorau@intel.com>
4113M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004114M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004115L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004116T: git git://git.code.sf.net/p/intel-sas/isci
4117S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004118F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004119
Len Brown26717172010-03-08 14:07:30 -05004120INTEL IDLE DRIVER
4121M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004122L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004123T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004124S: Supported
4125F: drivers/idle/intel_idle.c
4126
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004127INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004128M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004129L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004131F: Documentation/fb/intelfb.txt
4132F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004133
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004135M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004136L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304140INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004141M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004142L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304143W: http://www.lesswatts.org/projects/acpi/
4144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004145F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304146
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004148M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004150F: arch/x86/kernel/microcode_core.c
4151F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004153INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004154M: Dan Williams <djbw@fb.com>
4155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004156F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004157
David Woodhouse6c8909b2008-10-18 16:12:17 +01004158INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004159M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004160L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004161T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004162S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004163F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004164F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004165
Dan Williamsb3e5f262007-08-07 10:26:35 -07004166INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004167M: Dan Williams <djbw@fb.com>
4168S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004169F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004170
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004171INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004174F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4175F: arch/arm/mach-ixp4xx/include/mach/npe.h
4176F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4177F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004178F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004179F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004180
Michael Buesch844dd052006-06-26 00:24:59 -07004181INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004182M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004184F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004185
Jeff Kirsher0d164402010-10-05 01:15:17 +00004186INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4188M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4189M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004190M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4191M: Don Skidmore <donald.c.skidmore@intel.com>
4192M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004193M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004194M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004196M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004197L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004198W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004199W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004200T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4201T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004203F: Documentation/networking/e100.txt
4204F: Documentation/networking/e1000.txt
4205F: Documentation/networking/e1000e.txt
4206F: Documentation/networking/igb.txt
4207F: Documentation/networking/igbvf.txt
4208F: Documentation/networking/ixgb.txt
4209F: Documentation/networking/ixgbe.txt
4210F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004211F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004213INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4214M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004215L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004217F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004218F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004219F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004220
Shane Wang4bd96a72010-03-10 14:36:10 +08004221INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004222M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4223M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004224M: Shane Wang <shane.wang@intel.com>
4225L: tboot-devel@lists.sourceforge.net
4226W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004227T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004228S: Supported
4229F: Documentation/intel_txt.txt
4230F: include/linux/tboot.h
4231F: arch/x86/kernel/tboot.c
4232
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004233INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004234M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004235M: linux-wimax@intel.com
4236L: wimax@linuxwimax.org
4237S: Supported
4238W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004239F: Documentation/wimax/README.i2400m
4240F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004241F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004242
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004243INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4244M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004245L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004246S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004247F: drivers/net/wireless/iwlegacy/
4248
Zhu Yib481de92007-09-25 17:54:57 -07004249INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004250M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004251M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004252M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004253L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004254W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004255T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004257F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004258
Tomas Winklerde8fe022012-05-09 16:39:02 +03004259INTEL MANAGEMENT ENGINE (mei)
4260M: Tomas Winkler <tomas.winkler@intel.com>
4261L: linux-kernel@vger.kernel.org
4262S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004263F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004264F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004265F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004266
Ralf Baechlecb109a02007-08-30 23:56:30 -07004267IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269L: linux-mips@linux-mips.org
4270S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004271F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Ralf Baechlecb109a02007-08-30 23:56:30 -07004273IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004274M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004275L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004276S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004277F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004278
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004279IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004282F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
Francois Romieu1202d6f2007-09-17 17:13:55 -07004284IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004285M: Francois Romieu <romieu@fr.zoreil.com>
4286M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004287L: netdev@vger.kernel.org
4288S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004289F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004290
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004291IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004292M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004293L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004296
Corey Minyard4409ebe2006-04-20 02:43:12 -07004297IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004298M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004299L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004300W: http://openipmi.sourceforge.net/
4301S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004302F: Documentation/IPMI.txt
4303F: drivers/char/ipmi/
4304F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004305F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004307IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004308M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004309L: linux-scsi@vger.kernel.org
4310W: http://www.adaptec.com/
4311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004312F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004313
4314IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Wensong Zhang <wensong@linux-vs.org>
4316M: Simon Horman <horms@verge.net.au>
4317M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004318L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004321F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004322F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004323F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004324F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Randy Dunlape7839f22008-10-12 16:11:45 -07004326IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004327M: Jiri Kosina <jkosina@suse.cz>
4328M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004329S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004330F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004331
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004332IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004333M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004334L: netdev@vger.kernel.org
4335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004336F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004337F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004338F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004342L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004343L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004345S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004346T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004347F: Documentation/networking/irda.txt
4348F: drivers/net/irda/
4349F: include/net/irda/
4350F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004352IRQ SUBSYSTEM
4353M: Thomas Gleixner <tglx@linutronix.de>
4354S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004355T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004356F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004357F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004358
Grant Likely7ab3a832012-02-14 14:06:47 -07004359IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4360M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4361M: Grant Likely <grant.likely@secretlab.ca>
4362T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4363S: Maintained
4364F: Documentation/IRQ-domain.txt
4365F: include/linux/irqdomain.h
4366F: kernel/irq/irqdomain.c
4367
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004368ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004369M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004371F: Documentation/isapnp.txt
4372F: drivers/pnp/isapnp/
4373F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004374
Hans Verkuild39b8422012-11-23 07:07:02 -03004375ISA RADIO MODULE
4376M: Hans Verkuil <hverkuil@xs4all.nl>
4377L: linux-media@vger.kernel.org
4378T: git git://linuxtv.org/media_tree.git
4379W: http://linuxtv.org
4380S: Maintained
4381F: drivers/media/radio/radio-isa*
4382
Harry Wei71a6d0a2011-05-11 15:13:33 -07004383iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4384M: Peter Jones <pjones@redhat.com>
4385M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4386S: Maintained
4387F: drivers/firmware/iscsi_ibft*
4388
Mike Christie14816b12007-11-28 16:22:06 -08004389ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004391L: open-iscsi@googlegroups.com
4392W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004393T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: drivers/scsi/*iscsi*
4396F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004397
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004399M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004400L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004401L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004403T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: Documentation/isdn/
4406F: drivers/isdn/
4407F: include/linux/isdn.h
4408F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004409F: include/uapi/linux/isdn.h
4410F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
4412ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004413M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004414L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415W: http://www.melware.de
4416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004417F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Jean Delvared6248702010-03-05 22:17:20 +01004419IT87 HARDWARE MONITORING DRIVER
4420M: Jean Delvare <khali@linux-fr.org>
4421L: lm-sensors@lm-sensors.org
4422S: Maintained
4423F: Documentation/hwmon/it87
4424F: drivers/hwmon/it87.c
4425
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004426IT913X MEDIA DRIVER
4427M: Malcolm Priestley <tvboxspy@gmail.com>
4428L: linux-media@vger.kernel.org
4429W: http://linuxtv.org/
4430Q: http://patchwork.linuxtv.org/project/linux-media/list/
4431S: Maintained
4432F: drivers/media/usb/dvb-usb-v2/it913x*
4433
4434IT913X FE MEDIA DRIVER
4435M: Malcolm Priestley <tvboxspy@gmail.com>
4436L: linux-media@vger.kernel.org
4437W: http://linuxtv.org/
4438Q: http://patchwork.linuxtv.org/project/linux-media/list/
4439S: Maintained
4440F: drivers/media/dvb-frontends/it913x-fe*
4441
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004442IT913X MEDIA DRIVER
4443M: Antti Palosaari <crope@iki.fi>
4444L: linux-media@vger.kernel.org
4445W: http://linuxtv.org/
4446W: http://palosaari.fi/linux/
4447Q: http://patchwork.linuxtv.org/project/linux-media/list/
4448T: git git://linuxtv.org/anttip/media_tree.git
4449S: Maintained
4450F: drivers/media/tuners/it913x*
4451
Hans Verkuil91821ff2007-12-02 09:35:33 -03004452IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004453M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004454L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004455L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004456T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004457W: http://www.ivtvdriver.org
4458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004459F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004460F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004461F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004462
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004463IX2505V 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/dvb-frontends/ix2505v*
4470
Guenter Roeck4453d732010-08-09 17:21:08 -07004471JC42.4 TEMPERATURE SENSOR DRIVER
4472M: Guenter Roeck <linux@roeck-us.net>
4473L: lm-sensors@lm-sensors.org
4474S: Maintained
4475F: drivers/hwmon/jc42.c
4476F: Documentation/hwmon/jc42
4477
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004478JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004479M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004480L: jfs-discussion@lists.sourceforge.net
4481W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004482T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004484F: Documentation/filesystems/jfs.txt
4485F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004486
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004487JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004488M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004489L: netdev@vger.kernel.org
4490S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004491F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004494M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004495L: linux-mtd@lists.infradead.org
4496W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004499F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Josh Triplettde456d32006-07-30 03:04:00 -07004501JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004503M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004504L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004505S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004506F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004507F: include/linux/jbd.h
4508
4509JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4510M: "Theodore Ts'o" <tytso@mit.edu>
4511L: linux-ext4@vger.kernel.org
4512S: Maintained
4513F: fs/jbd2/
4514F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004515
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004516JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004517M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004518L: linux-serial@vger.kernel.org
4519S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004520F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004521
Clemens Ladischaf399172011-01-10 16:32:54 +01004522K10TEMP HARDWARE MONITORING DRIVER
4523M: Clemens Ladisch <clemens@ladisch.de>
4524L: lm-sensors@lm-sensors.org
4525S: Maintained
4526F: Documentation/hwmon/k10temp
4527F: drivers/hwmon/k10temp.c
4528
Rudolf Marek4660cb32006-10-08 22:01:26 +02004529K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004531L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004533F: Documentation/hwmon/k8temp
4534F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
4536KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004537M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004538L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004539S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004540F: Documentation/kbuild/kconfig-language.txt
4541F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
Vivek Goyalea6c2082006-05-20 14:59:55 -07004543KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004544M: Vivek Goyal <vgoyal@redhat.com>
4545M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004546L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004547W: http://lse.sourceforge.net/kdump/
4548S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004549F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004550
Hans Verkuilf41bf022012-11-23 07:04:36 -03004551KEENE FM RADIO TRANSMITTER DRIVER
4552M: Hans Verkuil <hverkuil@xs4all.nl>
4553L: linux-media@vger.kernel.org
4554T: git git://linuxtv.org/media_tree.git
4555W: http://linuxtv.org
4556S: Maintained
4557F: drivers/media/radio/radio-keene*
4558
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004561L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004563F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Michal Marek70fb7ba2010-01-29 14:22:43 +01004565KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004566M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004567T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4568T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004569L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: Documentation/kbuild/
4572F: Makefile
4573F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004574F: scripts/basic/
4575F: scripts/mk*
4576F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
4578KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004579L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004580W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004581S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004583KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004585L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004587S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004588F: fs/nfsd/
4589F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004590F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004591F: fs/lockd/
4592F: fs/nfs_common/
4593F: net/sunrpc/
4594F: include/linux/lockd/
4595F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004596F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Avi Kivity426d62e2006-12-13 00:34:03 -08004598KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004599M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004600M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004601L: kvm@vger.kernel.org
4602W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004604F: Documentation/*/kvm.txt
4605F: arch/*/kvm/
4606F: arch/*/include/asm/kvm*
4607F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004608F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004609F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004610
Joerg Roedelad8003d2008-09-10 20:01:07 +02004611KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004612M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004613L: kvm@vger.kernel.org
4614W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004617F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004618
Hollis Blanchard513014b2008-04-16 23:28:08 -05004619KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004620M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004621L: kvm-ppc@vger.kernel.org
4622W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004623T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004625F: arch/powerpc/include/asm/kvm*
4626F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004627
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004628KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004629M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004630L: kvm-ia64@vger.kernel.org
4631W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004633F: Documentation/ia64/kvm.txt
4634F: arch/ia64/include/asm/kvm*
4635F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004636
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004637KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004638M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004639M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004640M: linux390@de.ibm.com
4641L: linux-s390@vger.kernel.org
4642W: http://www.ibm.com/developerworks/linux/linux390/
4643S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004644F: Documentation/s390/kvm.txt
4645F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004646F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004647F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004648
Christoffer Dalla7494742013-01-20 18:42:26 -05004649KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4650M: Christoffer Dall <cdall@cs.columbia.edu>
4651L: kvmarm@lists.cs.columbia.edu
4652W: http://systems.cs.columbia.edu/projects/kvm-arm
4653S: Maintained
4654F: arch/arm/include/uapi/asm/kvm*
4655F: arch/arm/include/asm/kvm*
4656F: arch/arm/kvm/
4657
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004658KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004659M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004660W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004661L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004663F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004664F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004665F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004666
David Howellse9714612010-03-29 23:42:09 +01004667KEYS/KEYRINGS:
4668M: David Howells <dhowells@redhat.com>
4669L: keyrings@linux-nfs.org
4670S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004671F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004672F: include/linux/key.h
4673F: include/linux/key-type.h
4674F: include/keys/
4675F: security/keys/
4676
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004677KEYS-TRUSTED
4678M: David Safford <safford@watson.ibm.com>
4679M: Mimi Zohar <zohar@us.ibm.com>
4680L: linux-security-module@vger.kernel.org
4681L: keyrings@linux-nfs.org
4682S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004683F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004684F: include/keys/trusted-type.h
4685F: security/keys/trusted.c
4686F: security/keys/trusted.h
4687
4688KEYS-ENCRYPTED
4689M: Mimi Zohar <zohar@us.ibm.com>
4690M: David Safford <safford@watson.ibm.com>
4691L: linux-security-module@vger.kernel.org
4692L: keyrings@linux-nfs.org
4693S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004694F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004695F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004696F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004697
Jason Wessel5b778da2010-05-20 21:04:28 -05004698KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004700W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004701L: kgdb-bugreport@lists.sourceforge.net
4702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004703F: Documentation/DocBook/kgdb.tmpl
4704F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004705F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004706F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004707F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004708F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004709
Pekka Enberg456db8c2008-04-28 22:47:29 +03004710KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004711M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004712M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004713S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004714F: Documentation/kmemcheck.txt
4715F: arch/x86/include/asm/kmemcheck.h
4716F: arch/x86/mm/kmemcheck/
4717F: include/linux/kmemcheck.h
4718F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004719
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004720KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004722S: Maintained
4723F: Documentation/kmemleak.txt
4724F: include/linux/kmemleak.h
4725F: mm/kmemleak.c
4726F: mm/kmemleak-test.c
4727
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004728KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4730M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4731M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004732M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004734F: Documentation/kprobes.txt
4735F: include/linux/kprobes.h
4736F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004737
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004738KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004739M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004740W: http://miguelojeda.es/auxdisplay.htm
4741W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004743F: Documentation/auxdisplay/ks0108
4744F: drivers/auxdisplay/ks0108.c
4745F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004746
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004749S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004750F: Documentation/networking/lapb-module.txt
4751F: include/*/lapb.h
4752F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
4754LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756L: linux-scsi@vger.kernel.org
4757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004758F: Documentation/scsi/53c700.txt
4759F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Richard Purdie263de9b2006-05-15 09:44:16 -07004761LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004762M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004763M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004764L: linux-leds@vger.kernel.org
4765T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004767F: drivers/leds/
4768F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004769
Jean Delvareb0461a42011-06-15 15:08:46 -07004770LEGACY EEPROM DRIVER
4771M: Jean Delvare <khali@linux-fr.org>
4772S: Maintained
4773F: Documentation/misc-devices/eeprom
4774F: drivers/misc/eeprom/eeprom.c
4775
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778L: legousb-devel@lists.sourceforge.net
4779W: http://legousb.sourceforge.net/
4780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
Michael Krufky055616a2012-10-02 00:56:06 -03004783LG2160 MEDIA DRIVER
4784M: Michael Krufky <mkrufky@linuxtv.org>
4785L: linux-media@vger.kernel.org
4786W: http://linuxtv.org/
4787W: http://github.com/mkrufky
4788Q: http://patchwork.linuxtv.org/project/linux-media/list/
4789T: git git://linuxtv.org/mkrufky/tuners.git
4790S: Maintained
4791F: drivers/media/dvb-frontends/lg2160.*
4792
Michael Krufky6f0e7722012-10-02 00:56:00 -03004793LGDT3305 MEDIA DRIVER
4794M: Michael Krufky <mkrufky@linuxtv.org>
4795L: linux-media@vger.kernel.org
4796W: http://linuxtv.org/
4797W: http://github.com/mkrufky
4798Q: http://patchwork.linuxtv.org/project/linux-media/list/
4799T: git git://linuxtv.org/mkrufky/tuners.git
4800S: Maintained
4801F: drivers/media/dvb-frontends/lgdt3305.*
4802
Rusty Russell568a17f2007-10-25 14:12:24 +10004803LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004804M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004805L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004806W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004807S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004808F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004809F: arch/x86/lguest/
4810F: drivers/lguest/
4811F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004812F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816W: http://www.ibm.com/linux/ltc/projects/ppc
4817S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004818F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004820LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004821M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4822M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004824L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004825Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004826T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004828F: Documentation/powerpc/
4829F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
4831LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004832M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004834L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004836F: arch/powerpc/platforms/powermac/
4837F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
Grant Likely77a76362008-07-12 12:11:43 -06004839LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004840M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004841L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004842T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004844F: arch/powerpc/platforms/512x/
4845F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
4847LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004848M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004849M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004851L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004852T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004854F: arch/powerpc/platforms/40x/
4855F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Grant Likely260c02a2007-10-02 12:15:34 +10004857LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004858M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004859W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004860L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004861T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004863F: arch/powerpc/*/*virtex*
4864F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Tom Rinie93adf12005-07-26 12:49:53 -07004866LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: Vitaly Bordug <vitb@kernel.crashing.org>
4868M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004869W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004870L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004871S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004872F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004876W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004877L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004878S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004879F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004880F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
Olof Johanssonab06ff32006-09-06 14:44:54 -05004882LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004883M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004884L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004885S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004886F: arch/powerpc/platforms/pasemi/
4887F: drivers/*/*pasemi*
4888F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004889
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004892L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893S: Supported
4894
Harry Weia23ce6d2011-02-11 16:52:20 +01004895LIS3LV02D ACCELEROMETER DRIVER
4896M: Eric Piel <eric.piel@tremplin-utc.net>
4897S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004898F: Documentation/misc-devices/lis3lv02d
4899F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004900F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004901
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004902LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004903M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004906F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004907F: include/net/llc*
4908F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004909
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004910LM73 HARDWARE MONITOR DRIVER
4911M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4912L: lm-sensors@lm-sensors.org
4913S: Maintained
4914F: drivers/hwmon/lm73.c
4915
Jean Delvare156e2d12011-07-25 21:46:11 +02004916LM78 HARDWARE MONITOR DRIVER
4917M: Jean Delvare <khali@linux-fr.org>
4918L: lm-sensors@lm-sensors.org
4919S: Maintained
4920F: Documentation/hwmon/lm78
4921F: drivers/hwmon/lm78.c
4922
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004924M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004925L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004927F: Documentation/hwmon/lm83
4928F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
4930LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004931M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004932L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004934F: Documentation/hwmon/lm90
4935F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004937LME2510 MEDIA DRIVER
4938M: Malcolm Priestley <tvboxspy@gmail.com>
4939L: linux-media@vger.kernel.org
4940W: http://linuxtv.org/
4941Q: http://patchwork.linuxtv.org/project/linux-media/list/
4942S: Maintained
4943F: drivers/media/usb/dvb-usb-v2/lmedm04*
4944
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004945LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004946M: Peter Zijlstra <peterz@infradead.org>
4947M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004948T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004950F: Documentation/lockdep*.txt
4951F: Documentation/lockstat.txt
4952F: include/linux/lockdep.h
4953F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004954
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004955LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004956M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004957L: linux-ntfs-dev@lists.sourceforge.net
4958W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004960F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004961F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Joern Engelef6ada32009-11-20 22:17:12 +01004963LogFS
4964M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304965M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004966L: logfs@logfs.org
4967W: logfs.org
4968S: Maintained
4969F: fs/logfs/
4970
Roland Stiggeb62d7942013-04-02 19:37:11 +02004971LPC32XX MACHINE SUPPORT
4972M: Roland Stigge <stigge@antcom.de>
4973L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4974S: Maintained
4975F: arch/arm/mach-lpc32xx/
4976
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004977LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304978M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4979M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004980M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004981L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004982L: linux-scsi@vger.kernel.org
4983W: http://www.lsilogic.com/support
4984S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004985F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304986F: drivers/scsi/mpt2sas/
4987F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004990M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991L: linux-scsi@vger.kernel.org
4992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004993F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Guenter Roecke5f5c992010-06-25 11:59:54 -07004995LTC4261 HARDWARE MONITOR DRIVER
4996M: Guenter Roeck <linux@roeck-us.net>
4997L: lm-sensors@lm-sensors.org
4998S: Maintained
4999F: Documentation/hwmon/ltc4261
5000F: drivers/hwmon/ltc4261.c
5001
Mike Frysinger81365c32008-10-29 14:01:12 -07005002LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005003M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005004M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005005M: Cyril Hrubis <chrubis@suse.cz>
5006M: Caspar Zhang <caspar@casparzhang.com>
5007M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005008L: ltp-list@lists.sourceforge.net (subscribers-only)
5009W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005010T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005011T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005012S: Maintained
5013
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005014M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005016L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005017L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5018W: http://www.linux-m32r.org/
5019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005023M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024L: linux-m68k@lists.linux-m68k.org
5025W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005026T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005028F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005029F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030
5031M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005032M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005034L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005036F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
5038M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005039M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040W: http://www.tazenda.demon.co.uk/phil/linux-hp
5041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005042F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005044M88RS2000 MEDIA DRIVER
5045M: Malcolm Priestley <tvboxspy@gmail.com>
5046L: linux-media@vger.kernel.org
5047W: http://linuxtv.org/
5048Q: http://patchwork.linuxtv.org/project/linux-media/list/
5049S: Maintained
5050F: drivers/media/dvb-frontends/m88rs2000*
5051
Alexey Klimov07a092f2012-11-12 02:57:32 -03005052MA901 MASTERKIT USB FM RADIO DRIVER
5053M: Alexey Klimov <klimov.linux@gmail.com>
5054L: linux-media@vger.kernel.org
5055T: git git://linuxtv.org/media_tree.git
5056S: Maintained
5057F: drivers/media/radio/radio-ma901.c
5058
Jiri Benc64a327a2007-05-05 11:47:08 -07005059MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005060M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005061L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005062W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005063T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5064T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: Documentation/networking/mac80211-injection.txt
5067F: include/net/mac80211.h
5068F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005069
Stefano Brivio1036d862007-12-23 04:46:27 +01005070MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005071M: Stefano Brivio <stefano.brivio@polimi.it>
5072M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005073L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005074W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005075T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5076T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005079
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005080MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005081M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005082L: netdev@vger.kernel.org
5083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005084F: drivers/net/macvlan.c
5085F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005086
Michael Kerriskfaf16682005-07-31 22:34:47 -07005087MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005088M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005089W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005090L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005091S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005092
stephen hemminger44c14c12012-04-02 12:59:47 +00005093MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5094M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005095M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005096L: netdev@vger.kernel.org
5097S: Maintained
5098F: drivers/net/ethernet/marvell/sk*
5099
Stefano Brivio74cda162007-11-19 20:27:46 +01005100MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005101L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005102S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005103F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005104
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005105MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005106M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005107L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005108S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005109F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005110F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005112MARVELL MVNETA ETHERNET DRIVER
5113M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5114L: netdev@vger.kernel.org
5115S: Maintained
5116F: drivers/net/ethernet/marvell/mvneta.*
5117
Bing Zhaofcad5842011-07-13 13:11:58 -07005118MARVELL MWIFIEX WIRELESS DRIVER
5119M: Bing Zhao <bzhao@marvell.com>
5120L: linux-wireless@vger.kernel.org
5121S: Maintained
5122F: drivers/net/wireless/mwifiex/
5123
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005124MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005125M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005126L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005127S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005128F: drivers/net/wireless/mwl8k.c
5129
Pierre Ossman2a695672009-03-16 19:52:26 +01005130MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005131M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005132S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005133F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005136L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005137S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005138F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005139F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Guenter Roeckca462082012-06-01 23:28:23 -07005141MAX16065 HARDWARE MONITOR DRIVER
5142M: Guenter Roeck <linux@roeck-us.net>
5143L: lm-sensors@lm-sensors.org
5144S: Maintained
5145F: Documentation/hwmon/max16065
5146F: drivers/hwmon/max16065.c
5147
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005148MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005149M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005150L: lm-sensors@lm-sensors.org
5151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005152F: Documentation/hwmon/max6650
5153F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005154
Guenter Roecke89ab512013-03-08 08:13:09 -08005155MAX6697 HARDWARE MONITOR DRIVER
5156M: Guenter Roeck <linux@roeck-us.net>
5157L: lm-sensors@lm-sensors.org
5158S: Maintained
5159F: Documentation/hwmon/max6697
5160F: Documentation/devicetree/bindings/i2c/max6697.txt
5161F: drivers/hwmon/max6697.c
5162F: include/linux/platform_data/max6697.h
5163
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005164MAXIRADIO FM RADIO RECEIVER DRIVER
5165M: Hans Verkuil <hverkuil@xs4all.nl>
5166L: linux-media@vger.kernel.org
5167T: git git://linuxtv.org/media_tree.git
5168W: http://linuxtv.org
5169S: Maintained
5170F: drivers/media/radio/radio-maxiradio*
5171
Joe Perches127c49a2009-04-08 08:34:04 -07005172MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005173M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005174P: LinuxTV.org Project
5175L: linux-media@vger.kernel.org
5176W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005177Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005178T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005179S: Maintained
5180F: Documentation/dvb/
5181F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005182F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005183F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005184F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005185F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005186F: include/uapi/linux/dvb/
5187F: include/uapi/linux/videodev2.h
5188F: include/uapi/linux/media.h
5189F: include/uapi/linux/v4l2-*
5190F: include/uapi/linux/meye.h
5191F: include/uapi/linux/ivtv*
5192F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005193
Hans Verkuil6149a932012-11-23 07:21:19 -03005194MEDIAVISION PRO MOVIE STUDIO DRIVER
5195M: Hans Verkuil <hverkuil@xs4all.nl>
5196L: linux-media@vger.kernel.org
5197T: git git://linuxtv.org/media_tree.git
5198W: http://linuxtv.org
5199S: Odd Fixes
5200F: drivers/media/parport/pms*
5201
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005202MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005204L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005205W: http://megaraid.lsilogic.com
5206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005207F: Documentation/scsi/megaraid.txt
5208F: drivers/scsi/megaraid.*
5209F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005210
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005211MELLANOX ETHERNET DRIVER (mlx4_en)
5212M: Amir Vadai <amirv@mellanox.com>
5213L: netdev@vger.kernel.org
5214S: Supported
5215W: http://www.mellanox.com
5216Q: http://patchwork.ozlabs.org/project/netdev/list/
5217F: drivers/net/ethernet/mellanox/mlx4/en_*
5218
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005219MEMORY MANAGEMENT
5220L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005221W: http://www.linux-mm.org
5222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005223F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005224F: include/linux/gfp.h
5225F: include/linux/mmzone.h
5226F: include/linux/memory_hotplug.h
5227F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005228F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005229
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005230MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005231M: Johannes Weiner <hannes@cmpxchg.org>
5232M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005233M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005234M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005235L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005236L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005238F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005239F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005240
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005241MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005244W: http://www.linux-mtd.infradead.org/
5245Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005246T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: drivers/mtd/
5249F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005250F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
James Hogan12285942012-10-10 12:59:49 +01005252METAG ARCHITECTURE
5253M: James Hogan <james.hogan@imgtec.com>
5254S: Supported
5255F: arch/metag/
5256F: Documentation/metag/
5257F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005258F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005259F: drivers/irqchip/irq-metag.c
5260F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005261F: drivers/tty/metag_da.c
5262F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005263
Michal Simekc6375b02009-03-27 14:25:52 +01005264MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005265M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005266L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005267W: http://www.monstr.eu/fdt/
5268T: git git://git.monstr.eu/linux-2.6-microblaze.git
5269S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005270F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
5272MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005273M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005275F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
5277MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005278M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005280W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005281T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005282Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005284F: Documentation/mips/
5285F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286
Hans Verkuil08b76202012-11-23 07:15:42 -03005287MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5288M: Hans Verkuil <hverkuil@xs4all.nl>
5289L: linux-media@vger.kernel.org
5290T: git git://linuxtv.org/media_tree.git
5291W: http://linuxtv.org
5292S: Odd Fixes
5293F: drivers/media/radio/radio-miropcm20*
5294
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005296M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: include/linux/module.h
5299F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
5301MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005303S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005304F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005305F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005306F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
Jiri Slabyb9705b62008-04-30 00:53:48 -07005308MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005309M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005312F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005313
Alexey Klimov889b2f82012-11-16 17:43:59 -03005314MR800 AVERMEDIA USB FM RADIO DRIVER
5315M: Alexey Klimov <klimov.linux@gmail.com>
5316L: linux-media@vger.kernel.org
5317T: git git://linuxtv.org/media_tree.git
5318S: Maintained
5319F: drivers/media/radio/radio-mr800.c
5320
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005321MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005322M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005323L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005325F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005326
Anisse Astier0f1006b2009-12-17 11:28:49 +01005327MSI WMI SUPPORT
5328M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005329L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005330S: Supported
5331F: drivers/platform/x86/msi-wmi.c
5332
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005333MT9M032 SENSOR DRIVER
5334M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5335L: linux-media@vger.kernel.org
5336T: git git://linuxtv.org/media_tree.git
5337S: Maintained
5338F: drivers/media/i2c/mt9m032.c
5339F: include/media/mt9m032.h
5340
5341MT9P031 SENSOR DRIVER
5342M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5343L: linux-media@vger.kernel.org
5344T: git git://linuxtv.org/media_tree.git
5345S: Maintained
5346F: drivers/media/i2c/mt9p031.c
5347F: include/media/mt9p031.h
5348
5349MT9T001 SENSOR DRIVER
5350M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5351L: linux-media@vger.kernel.org
5352T: git git://linuxtv.org/media_tree.git
5353S: Maintained
5354F: drivers/media/i2c/mt9t001.c
5355F: include/media/mt9t001.h
5356
5357MT9V032 SENSOR DRIVER
5358M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5359L: linux-media@vger.kernel.org
5360T: git git://linuxtv.org/media_tree.git
5361S: Maintained
5362F: drivers/media/i2c/mt9v032.c
5363F: include/media/mt9v032.h
5364
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005365MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005367T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005369F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005370
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005371MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005372M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005373L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005374T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005376F: drivers/mmc/
5377F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005378F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005379
David Brownell15a05802007-08-08 09:12:54 -07005380MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005381S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005382F: drivers/mmc/host/mmc_spi.c
5383F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005384
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005388F: Documentation/sound/oss/MultiSound
5389F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Jiri Slabyd7354102006-12-08 02:38:35 -08005391MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005392S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005393F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005394F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005395
Felipe Balbi550a7372008-07-24 12:27:36 +03005396MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005397M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005398L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005399T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005402
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005403MXL5007T MEDIA DRIVER
5404M: Michael Krufky <mkrufky@linuxtv.org>
5405L: linux-media@vger.kernel.org
5406W: http://linuxtv.org/
5407W: http://github.com/mkrufky
5408Q: http://patchwork.linuxtv.org/project/linux-media/list/
5409T: git git://linuxtv.org/mkrufky/tuners.git
5410S: Maintained
5411F: drivers/media/tuners/mxl5007t.*
5412
Brice Goglin2d3cf582008-05-17 12:45:36 +02005413MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005414M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005415L: netdev@vger.kernel.org
5416W: http://www.myri.com/scs/download-Myri10GE.html
5417S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005418F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005419
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005421S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005422F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423
Daniel Mack23dc05a2011-05-18 11:28:38 +02005424NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5425M: Daniel Mack <zonque@gmail.com>
5426S: Maintained
5427L: alsa-devel@alsa-project.org
5428W: http://www.native-instruments.com
5429F: sound/usb/caiaq/
5430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005432M: Petr Vandrovec <petr@vandrovec.name>
5433S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005434F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435
5436NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005437M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438L: linux-scsi@vger.kernel.org
5439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005440F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005442NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005443M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005444L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005445W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005446S: Supported
5447F: drivers/infiniband/hw/nes/
5448
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005449NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005450M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005451L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005453F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005454
Jon Masonb2f5a052010-07-15 08:47:27 +00005455NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005456M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005457L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005459F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005460F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005461F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005462
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464P: Harald Welte
5465P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005466M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005467M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005468L: netfilter-devel@vger.kernel.org
5469L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005470L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471W: http://www.netfilter.org/
5472W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005473T: git git://1984.lsi.us.es/nf
5474T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005476F: include/linux/netfilter*
5477F: include/linux/netfilter/
5478F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005479F: include/uapi/linux/netfilter*
5480F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005481F: net/*/netfilter.c
5482F: net/*/netfilter/
5483F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
Paul Moore4cc67732006-09-25 15:57:13 -07005485NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005486M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005487W: http://netlabel.sf.net
5488L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005489S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005490F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005491F: include/net/netlabel.h
5492F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005493
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005495M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005497W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005499F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005500F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005501F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005503NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005504M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005506L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005507F: Documentation/blockdev/nbd.txt
5508F: drivers/block/nbd.c
5509F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005510F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Neil Horman6e436502009-10-05 03:56:55 +00005512NETWORK DROP MONITOR
5513M: Neil Horman <nhorman@tuxdriver.com>
5514L: netdev@vger.kernel.org
5515S: Maintained
5516W: https://fedorahosted.org/dropwatch/
5517F: net/core/drop_monitor.c
5518
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005520M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005521L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005522W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005523Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005524T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5525T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005527F: net/
5528F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005529F: include/linux/in.h
5530F: include/linux/net.h
5531F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005532F: include/uapi/linux/in.h
5533F: include/uapi/linux/net.h
5534F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
5536NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005537M: "David S. Miller" <davem@davemloft.net>
5538M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: James Morris <jmorris@namei.org>
5540M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5541M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005542L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005543T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: net/ipv4/
5546F: net/ipv6/
5547F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005548F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549
David S. Miller73b76562012-10-16 14:08:40 -04005550NETWORKING [IPSEC]
5551M: Steffen Klassert <steffen.klassert@secunet.com>
5552M: Herbert Xu <herbert@gondor.apana.org.au>
5553M: "David S. Miller" <davem@davemloft.net>
5554L: netdev@vger.kernel.org
5555T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5556S: Maintained
5557F: net/xfrm/
5558F: net/key/
5559F: net/ipv4/xfrm*
5560F: net/ipv6/xfrm*
5561F: include/uapi/linux/xfrm.h
5562F: include/net/xfrm.h
5563
James Morris10e2ff12007-08-25 14:41:28 -07005564NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005565M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005566L: netdev@vger.kernel.org
5567S: Maintained
5568
John W. Linville29f8f632006-01-18 14:52:48 -08005569NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005570M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005571L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005572Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005573T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005574S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005575F: net/mac80211/
5576F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005577F: net/wireless/
5578F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005579F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005580F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005581F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005582F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005583
Joe Perches788873a2009-04-16 09:38:45 +00005584NETWORKING DRIVERS
5585L: netdev@vger.kernel.org
5586W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005587Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005588T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5589T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005590S: Odd Fixes
5591F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005592F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005593F: include/linux/netdevice.h
5594F: include/linux/arcdevice.h
5595F: include/linux/etherdevice.h
5596F: include/linux/fcdevice.h
5597F: include/linux/fddidevice.h
5598F: include/linux/hippidevice.h
5599F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005600F: include/uapi/linux/if_*
5601F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005602
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005603NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005604M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005605M: Sony Chacko <sony.chacko@qlogic.com>
5606M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005607L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005608W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005609S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005610F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005611
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005612NFC SUBSYSTEM
5613M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5614M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5615M: Samuel Ortiz <sameo@linux.intel.com>
5616L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005617L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005618S: Maintained
5619F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005620F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005621F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005622F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005623F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005625NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005626M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005627L: linux-nfs@vger.kernel.org
5628W: http://client.linux-nfs.org
5629T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: fs/lockd/
5632F: fs/nfs/
5633F: fs/nfs_common/
5634F: net/sunrpc/
5635F: include/linux/lockd/
5636F: include/linux/nfs*
5637F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005638F: include/uapi/linux/nfs*
5639F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005641NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005642M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005643L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005644W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005645T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005647F: Documentation/filesystems/nilfs2.txt
5648F: fs/nilfs2/
5649F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005650
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005652M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005655F: Documentation/scsi/NinjaSCSI.txt
5656F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
5658NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005659M: GOTO Masanori <gotom@debian.or.jp>
5660M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: Documentation/scsi/NinjaSCSI.txt
5664F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Jon Masonfce8a7b2012-11-16 19:27:12 -07005666NTB DRIVER
5667M: Jon Mason <jon.mason@intel.com>
5668S: Supported
5669F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005670F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005671F: include/linux/ntb.h
5672
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005674M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005676W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005677T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005679F: Documentation/filesystems/ntfs.txt
5680F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005682NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005684L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: drivers/video/riva/
5687F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Matthew Wilcox79461682012-11-10 08:54:53 -05005689NVM EXPRESS DRIVER
5690M: Matthew Wilcox <willy@linux.intel.com>
5691L: linux-nvme@lists.infradead.org
5692T: git git://git.infradead.org/users/willy/linux-nvme.git
5693S: Supported
5694F: drivers/block/nvme.c
5695F: include/linux/nvme.h
5696
Tony Lindgrenf5525782009-05-28 13:23:53 -07005697OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005698M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005699L: linux-omap@vger.kernel.org
5700W: http://www.muru.com/linux/omap/
5701W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005702Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005703T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005704S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005705F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005706F: drivers/i2c/busses/i2c-omap.c
5707F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005708
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005709OMAP DEVICE TREE SUPPORT
5710M: Benoît Cousson <b-cousson@ti.com>
5711M: Tony Lindgren <tony@atomide.com>
5712L: linux-omap@vger.kernel.org
5713L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5714S: Maintained
5715F: arch/arm/boot/dts/*omap*
5716F: arch/arm/boot/dts/*am3*
5717
Tony Lindgrenf5525782009-05-28 13:23:53 -07005718OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005719M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005720L: linux-omap@vger.kernel.org
5721S: Maintained
5722F: arch/arm/*omap*/*clock*
5723
5724OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005725M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005726L: linux-omap@vger.kernel.org
5727S: Maintained
5728F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005729F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005730
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005731OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5732M: Rajendra Nayak <rnayak@ti.com>
5733M: Paul Walmsley <paul@pwsan.com>
5734L: linux-omap@vger.kernel.org
5735S: Maintained
5736F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5737F: arch/arm/mach-omap2/powerdomain44xx.c
5738F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5739F: arch/arm/mach-omap2/clockdomain44xx.c
5740
Tony Lindgrenf5525782009-05-28 13:23:53 -07005741OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005742M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005743M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005744L: alsa-devel@alsa-project.org (subscribers-only)
5745L: linux-omap@vger.kernel.org
5746S: Maintained
5747F: sound/soc/omap/
5748
5749OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005750M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005751L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005752L: linux-omap@vger.kernel.org
5753S: Maintained
5754F: drivers/video/omap/
5755
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005756OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005757M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005758L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005759L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005760S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005761F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005762F: Documentation/arm/OMAP/DSS
5763
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005764OMAP HARDWARE SPINLOCK SUPPORT
5765M: Ohad Ben-Cohen <ohad@wizery.com>
5766L: linux-omap@vger.kernel.org
5767S: Maintained
5768F: drivers/hwspinlock/omap_hwspinlock.c
5769F: arch/arm/mach-omap2/hwspinlock.c
5770
Tony Lindgrenf5525782009-05-28 13:23:53 -07005771OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005773L: linux-omap@vger.kernel.org
5774S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005775F: drivers/mmc/host/omap.c
5776
5777OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305778M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305779L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005780L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305781S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005782F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005783
5784OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005785M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786S: Maintained
5787F: drivers/char/hw_random/omap-rng.c
5788
Paul Walmsleyf400c822010-12-06 19:08:54 -07005789OMAP HWMOD SUPPORT
5790M: Benoît Cousson <b-cousson@ti.com>
5791M: Paul Walmsley <paul@pwsan.com>
5792L: linux-omap@vger.kernel.org
5793S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005794F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005795
5796OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5797M: Benoît Cousson <b-cousson@ti.com>
5798L: linux-omap@vger.kernel.org
5799S: Maintained
5800F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5801
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005802OMAP IMAGE SIGNAL PROCESSOR (ISP)
5803M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5804L: linux-media@vger.kernel.org
5805S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005806F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005807
Tony Lindgrenf5525782009-05-28 13:23:53 -07005808OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005809M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005810L: linux-usb@vger.kernel.org
5811L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005812T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005813S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005814F: drivers/usb/*/*omap*
5815F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005816
Kevin Hilman6d994712012-07-16 10:05:07 -07005817OMAP GPIO DRIVER
5818M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005819M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005820L: linux-omap@vger.kernel.org
5821S: Maintained
5822F: drivers/gpio/gpio-omap.c
5823
Bob Copeland0ad122d2008-07-25 19:45:18 -07005824OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005826L: linux-karma-devel@lists.sourceforge.net
5827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005828F: Documentation/filesystems/omfs.txt
5829F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005830
Harald Weltec1986ee2005-11-13 16:06:29 -08005831OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005832M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005834F: drivers/char/pcmcia/cm4000_cs.c
5835F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005836F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005837
Harald Welte77c44ab2005-11-13 16:06:26 -08005838OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005841F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005842
Jonathan Corbet77d51402007-03-22 19:44:17 -03005843OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005844M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005845L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005846T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005847S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005848F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005849
Thomas Gleixner431bca72007-05-02 09:31:35 +02005850ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005852L: linux-mtd@lists.infradead.org
5853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005854F: drivers/mtd/onenand/
5855F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005856
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005858M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859L: osst-users@lists.sourceforge.net
5860L: linux-scsi@vger.kernel.org
5861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005862F: drivers/scsi/osst*
5863F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005865OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005867L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005869F: Documentation/i2c/busses/i2c-ocores
5870F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005871
Grant Likely860c44c2009-10-26 16:49:49 -07005872OPEN FIRMWARE AND FLATTENED DEVICE TREE
5873M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005874M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005875L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005876W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005877T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005878S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005879F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005880F: drivers/of
5881F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005882F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005883K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005884K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005885
Jonas Bonn19f9d392011-06-04 22:00:38 +03005886OPENRISC ARCHITECTURE
5887M: Jonas Bonn <jonas@southpole.se>
5888W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005889L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005890S: Maintained
5891T: git git://openrisc.net/~jonas/linux
5892F: arch/openrisc
5893
Jesse Grossccb13522011-10-25 19:26:31 -07005894OPENVSWITCH
5895M: Jesse Gross <jesse@nicira.com>
5896L: dev@openvswitch.org
5897W: http://openvswitch.org
5898T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5899S: Maintained
5900F: net/openvswitch/
5901
Clemens Ladischaf399172011-01-10 16:32:54 +01005902OPL4 DRIVER
5903M: Clemens Ladisch <clemens@ladisch.de>
5904L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5905T: git git://git.alsa-project.org/alsa-kernel.git
5906S: Maintained
5907F: sound/drivers/opl4/
5908
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005910M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911L: oprofile-list@lists.sf.net
5912S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005913F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005914F: arch/*/oprofile/
5915F: drivers/oprofile/
5916F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005918ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005920M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005921L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5922W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005923T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005924S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005925F: Documentation/filesystems/ocfs2.txt
5926F: Documentation/filesystems/dlmfs.txt
5927F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005928
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005930L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005931W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005932W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005933S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005934F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005936OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005938M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005939L: osd-dev@open-osd.org
5940W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005941T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005942S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005943F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005944F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005945F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005946
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005947P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005948M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005949L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005950W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005952F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005953
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005954PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005955M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005956L: netdev@vger.kernel.org
5957S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005958F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005959
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005960PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005962L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005965
Steffen Klassert48fc2672010-08-13 10:10:46 -04005966PADATA PARALLEL EXECUTION MECHANISM
5967M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005968L: linux-crypto@vger.kernel.org
5969S: Maintained
5970F: kernel/padata.c
5971F: include/linux/padata.h
5972F: Documentation/padata.txt
5973
Harald Welte709ee532008-09-23 17:46:57 +02005974PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005976L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005978F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005979
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005980PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005981M: David Howells <dhowells@redhat.com>
5982M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005983L: linux-am33-list@redhat.com (moderated for non-subscribers)
5984W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005986F: Documentation/mn10300/
5987F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005988
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005990L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005991S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005992F: drivers/parport/
5993F: include/linux/parport*.h
5994F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005995F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005997PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005998M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005999M: Chris Wright <chrisw@sous-sol.org>
6000M: Alok Kataria <akataria@vmware.com>
6001M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006002L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006004F: Documentation/ia64/paravirt_ops.txt
6005F: arch/*/kernel/paravirt*
6006F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006007
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006009M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006010L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011W: http://www.torque.net/linux-pp.html
6012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: Documentation/blockdev/paride.txt
6014F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015
6016PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006017M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006018M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006019L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006021Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006022T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: arch/parisc/
6025F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Jim Cromie1662d322006-10-06 00:43:59 -07006027PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006028M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006029L: lm-sensors@lm-sensors.org
6030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006031F: Documentation/hwmon/pc87360
6032F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006033
6034PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006037F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006038
Jean Delvare1ad107f2010-08-14 21:09:00 +02006039PC87427 HARDWARE MONITORING DRIVER
6040M: Jean Delvare <khali@linux-fr.org>
6041L: lm-sensors@lm-sensors.org
6042S: Maintained
6043F: Documentation/hwmon/pc87427
6044F: drivers/hwmon/pc87427.c
6045
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006046PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006047M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006048S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006049F: drivers/leds/leds-pca9532.c
6050F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006051
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006052PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006053M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006054L: linux-i2c@vger.kernel.org
6055S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006056F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006057
Khalid Aziz3971dae2012-04-12 12:49:13 -07006058PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006059M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006060S: Maintained
6061F: drivers/firmware/pcdp.*
6062
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006063PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006064M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006065L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006067F: Documentation/PCI/pci-error-recovery.txt
6068F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006069
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006071M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006072L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006073Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006074T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006076F: Documentation/PCI/
6077F: drivers/pci/
6078F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006081P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006082L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006083W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006086F: Documentation/pcmcia/
6087F: drivers/pcmcia/
6088F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
6090PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006091M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006092L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006094F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095
Steffen Klassert48fc2672010-08-13 10:10:46 -04006096PCRYPT PARALLEL CRYPTO ENGINE
6097M: Steffen Klassert <steffen.klassert@secunet.com>
6098L: linux-crypto@vger.kernel.org
6099S: Maintained
6100F: crypto/pcrypt.c
6101F: include/crypto/pcrypt.h
6102
Tejun Heoe72df0b2010-12-10 17:02:49 +01006103PER-CPU MEMORY ALLOCATOR
6104M: Tejun Heo <tj@kernel.org>
6105M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006106T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6107S: Maintained
6108F: include/linux/percpu*.h
6109F: mm/percpu*.c
6110F: arch/*/include/asm/percpu.h
6111
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006112PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006113M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006115F: include/linux/delayacct.h
6116F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006117
Ingo Molnar57c0c152009-09-21 12:20:38 +02006118PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006119M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6120M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006121M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006122M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006123T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006124S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006125F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006126F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006127F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006128F: arch/*/kernel/perf_event*.c
6129F: arch/*/kernel/*/perf_event*.c
6130F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006131F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006132F: arch/*/kernel/perf_callchain.c
6133F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006134
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006135PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006136M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006137L: linux-abi-devel@lists.sourceforge.net
6138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006139F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006140F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006141
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006142PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006143M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006144S: Supported
6145F: Documentation/networking/phonet.txt
6146F: include/linux/phonet.h
6147F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006148F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006149F: net/phonet/
6150
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153L: linux-mtd@lists.infradead.org
6154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006155F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156
Bruno Prémontefdbb102012-07-30 21:39:03 +02006157PICOLCD HID DRIVER
6158M: Bruno Prémont <bonbons@linux-vserver.org>
6159L: linux-input@vger.kernel.org
6160S: Maintained
6161F: drivers/hid/hid-picolcd*
6162
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006163PICOXCELL SUPPORT
6164M: Jamie Iles <jamie@jamieiles.com>
6165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6166T: git git://github.com/jamieiles/linux-2.6-ji.git
6167S: Supported
6168F: arch/arm/mach-picoxcell
6169F: drivers/*/picoxcell*
6170F: drivers/*/*/picoxcell*
6171
Linus Walleij2744e8a2011-05-02 20:50:54 +02006172PIN CONTROL SUBSYSTEM
6173M: Linus Walleij <linus.walleij@linaro.org>
6174S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006175F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006176F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006177
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006178PIN CONTROLLER - ATMEL AT91
6179M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6180L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6181S: Maintained
6182F: drivers/pinctrl/pinctrl-at91.c
6183
Viresh Kumardeda8282012-03-28 22:27:07 +05306184PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006185M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306186L: spear-devel@list.st.com
6187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6188W: http://www.st.com/spear
6189S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006190F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306191
Peter Osterlund249a6772005-09-27 21:45:30 -07006192PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006193M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006195F: drivers/block/pktcdvd.c
6196F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006197F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006198
GuanXuetaob31d8272011-01-16 00:35:49 +08006199PKUNITY SOC DRIVERS
6200M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6201W: http://mprc.pku.edu.cn/~guanxuetao/linux
6202S: Maintained
6203T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6204F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006205F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006206F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006207F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006208
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006209PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006210M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006211L: lm-sensors@lm-sensors.org
6212W: http://www.lm-sensors.org/
6213W: http://www.roeck-us.net/linux/drivers/
6214T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6215S: Maintained
6216F: Documentation/hwmon/pmbus
6217F: drivers/hwmon/pmbus/
6218F: include/linux/i2c/pmbus.h
6219
Anil Ravindranath89a36812009-08-25 17:35:18 -07006220PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006221M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006222L: linux-scsi@vger.kernel.org
6223W: http://www.pmc-sierra.com/
6224S: Supported
6225F: drivers/scsi/pmcraid.*
6226
jack wangdbf9bfe2009-10-14 16:19:21 +08006227PMC SIERRA PM8001 DRIVER
6228M: jack_wang@usish.com
6229M: lindar_liu@usish.com
6230L: linux-scsi@vger.kernel.org
6231S: Supported
6232F: drivers/scsi/pm8001/
6233
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006236T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006238F: fs/timerfd.c
6239F: include/linux/timer*
6240F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
Anton Vorontsov3be86142007-07-15 04:43:36 +04006242POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006243M: Anton Vorontsov <cbou@mail.ru>
6244M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006245T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006248F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006249
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006251M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006252M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Vitaly Wool999445d2007-01-04 13:07:03 +01006256PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006257M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006258L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006261
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006263M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264L: linux-ppp@vger.kernel.org
6265S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006266F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267
6268PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006269M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006271F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006272F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273
6274PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006275M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006277F: drivers/net/ppp/pppoe.c
6278F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
James Chapmana6d23702007-06-27 15:53:17 -07006280PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006281M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006282S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006283F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006284F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006285F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006286
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006287PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006288M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006289W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6290L: linuxpps@ml.enneenne.com (subscribers-only)
6291S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006292F: Documentation/pps/
6293F: drivers/pps/
6294F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006295
Harry Wei71a6d0a2011-05-11 15:13:33 -07006296PPTP DRIVER
6297M: Dmitry Kozlov <xeb@mail.ru>
6298L: netdev@vger.kernel.org
6299S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006300F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006301W: http://sourceforge.net/projects/accel-pptp
6302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006304M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305L: kpreempt-tech@lists.sourceforge.net
6306W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006308F: Documentation/preempt-locking.txt
6309F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
6311PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006313L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006314W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006315S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006318PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006319M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006320L: linux-ide@vger.kernel.org
6321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006322F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006323
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006324PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006325M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006326L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006327L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006328S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006329F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006330
Geoff Levandf58a9d12006-11-23 00:46:51 +01006331PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006332M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006333L: linuxppc-dev@lists.ozlabs.org
6334L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006336F: arch/powerpc/boot/ps3*
6337F: arch/powerpc/include/asm/lv1call.h
6338F: arch/powerpc/include/asm/ps3*.h
6339F: arch/powerpc/platforms/ps3/
6340F: drivers/*/ps3*
6341F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006342F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006343F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006344F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006345
Jim Pariscffb4add2009-01-06 11:32:10 +00006346PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006347M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006348L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006349S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006350F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006351
Anton Vorontsov8defe592012-08-03 18:07:20 -07006352PSTORE FILESYSTEM
6353M: Anton Vorontsov <cbouatmailru@gmail.com>
6354M: Colin Cross <ccross@android.com>
6355M: Kees Cook <keescook@chromium.org>
6356M: Tony Luck <tony.luck@intel.com>
6357S: Maintained
6358T: git git://git.infradead.org/users/cbou/linux-pstore.git
6359F: fs/pstore/
6360F: include/linux/pstore*
6361F: drivers/firmware/efivars.c
6362F: drivers/acpi/apei/erst.c
6363
Richard Cochran7fbc4152012-03-10 01:55:53 +00006364PTP HARDWARE CLOCK SUPPORT
6365M: Richard Cochran <richardcochran@gmail.com>
6366S: Maintained
6367W: http://linuxptp.sourceforge.net/
6368F: Documentation/ABI/testing/sysfs-ptp
6369F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006370F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006371F: drivers/net/phy/dp83640*
6372F: drivers/ptp/*
6373F: include/linux/ptp_cl*
6374
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006375PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006376M: Roland McGrath <roland@redhat.com>
6377M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006378S: Maintained
6379F: include/asm-generic/syscall.h
6380F: include/linux/ptrace.h
6381F: include/linux/regset.h
6382F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006383F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006384F: kernel/ptrace.c
6385
Michael Krufky83202042006-07-03 00:24:18 -07006386PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006387M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006388L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006389L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006390W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006391T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006393F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006394F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006395
Hans de Goede39532e62012-11-04 17:05:59 -03006396PWC WEBCAM DRIVER
6397M: Hans de Goede <hdegoede@redhat.com>
6398L: linux-media@vger.kernel.org
6399T: git git://linuxtv.org/media_tree.git
6400S: Maintained
6401F: drivers/media/usb/pwc/*
6402
Thierry Reding200efed2012-03-27 13:16:18 +02006403PWM SUBSYSTEM
6404M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006405L: linux-kernel@vger.kernel.org
6406S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006407W: http://gitorious.org/linux-pwm
6408T: git git://gitorious.org/linux-pwm/linux-pwm.git
6409F: Documentation/pwm.txt
6410F: Documentation/devicetree/bindings/pwm/
6411F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006412F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006413F: drivers/video/backlight/pwm_bl.c
6414F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006415
Eric Miao30ec2612008-06-12 15:21:41 -07006416PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006417M: Eric Miao <eric.y.miao@gmail.com>
6418M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006419M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006420L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006421T: git git://github.com/hzhuang1/linux.git
6422T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006424F: arch/arm/mach-pxa/
6425F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006426F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006427F: drivers/usb/gadget/pxa2*
6428F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006429F: sound/arm/pxa*
6430F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006432MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006434M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006435L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006436T: git git://github.com/hzhuang1/linux.git
6437T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006438S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006439F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006440
Pierre Ossman272f1332007-05-14 21:25:26 +02006441PXA MMCI DRIVER
6442S: Orphan
6443
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006444PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006445M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006446L: rtc-linux@googlegroups.com
6447S: Maintained
6448
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006449QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006450M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006451L: linux-rdma@vger.kernel.org
6452S: Supported
6453F: drivers/infiniband/hw/qib/
6454
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006455QLOGIC QLA1280 SCSI DRIVER
6456M: Michael Reed <mdr@sgi.com>
6457L: linux-scsi@vger.kernel.org
6458S: Maintained
6459F: drivers/scsi/qla1280.[ch]
6460
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006462M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006463M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464L: linux-scsi@vger.kernel.org
6465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006466F: Documentation/scsi/LICENSE.qla2xxx
6467F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468
Ravi Anand883c98f2010-04-28 11:45:49 +05306469QLOGIC QLA4XXX iSCSI DRIVER
6470M: Ravi Anand <ravi.anand@qlogic.com>
6471M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6472M: iscsi-driver@qlogic.com
6473L: linux-scsi@vger.kernel.org
6474S: Supported
6475F: drivers/scsi/qla4xxx/
6476
Ron Mercer5a4faa82006-07-25 00:40:21 -07006477QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006478M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07006480M: linux-driver@qlogic.com
6481L: netdev@vger.kernel.org
6482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006483F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006484F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07006485
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006486QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006487M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6488M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006489M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006490M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006491M: linux-driver@qlogic.com
6492L: netdev@vger.kernel.org
6493S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006494F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006495
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006496QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006497M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006498M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006499M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006500L: netdev@vger.kernel.org
6501S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006502F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006503
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006505M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506W: http://www.alarsen.net/linux/qnx4fs/
6507S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006508F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006509F: include/uapi/linux/qnx4_fs.h
6510F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511
Antti Palosaari91952bc2012-10-01 12:28:46 -03006512QT1010 MEDIA DRIVER
6513M: Antti Palosaari <crope@iki.fi>
6514L: linux-media@vger.kernel.org
6515W: http://linuxtv.org/
6516W: http://palosaari.fi/linux/
6517Q: http://patchwork.linuxtv.org/project/linux-media/list/
6518T: git git://linuxtv.org/anttip/media_tree.git
6519S: Maintained
6520F: drivers/media/tuners/qt1010*
6521
Richard Kuo4f4567c2011-10-31 18:56:38 -05006522QUALCOMM HEXAGON ARCHITECTURE
6523M: Richard Kuo <rkuo@codeaurora.org>
6524L: linux-hexagon@vger.kernel.org
6525S: Supported
6526F: arch/hexagon/
6527
Hans Verkuil35e35402012-11-23 07:02:29 -03006528QUICKCAM PARALLEL PORT WEBCAMS
6529M: Hans Verkuil <hverkuil@xs4all.nl>
6530L: linux-media@vger.kernel.org
6531T: git git://linuxtv.org/media_tree.git
6532W: http://linuxtv.org
6533S: Odd Fixes
6534F: drivers/media/parport/*-qcam*
6535
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006536RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006537M: Yehuda Sadeh <yehuda@inktank.com>
6538M: Sage Weil <sage@inktank.com>
6539M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006540M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006541W: http://ceph.com/
6542T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006543S: Supported
6544F: drivers/block/rbd.c
6545F: drivers/block/rbd_types.h
6546
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006548M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006549L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006551F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006552F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553
Hans de Goedec6c9b342012-11-04 17:03:58 -03006554RADIOSHARK RADIO DRIVER
6555M: Hans de Goede <hdegoede@redhat.com>
6556L: linux-media@vger.kernel.org
6557T: git git://linuxtv.org/media_tree.git
6558S: Maintained
6559F: drivers/media/radio/radio-shark.c
6560
6561RADIOSHARK2 RADIO DRIVER
6562M: Hans de Goede <hdegoede@redhat.com>
6563L: linux-media@vger.kernel.org
6564T: git git://linuxtv.org/media_tree.git
6565S: Maintained
6566F: drivers/media/radio/radio-shark2.c
6567F: drivers/media/radio/radio-tea5777.c
6568
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006570M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006571L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574
Randy Dunlape7839f22008-10-12 16:11:45 -07006575RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006576P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006577M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006578M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006579M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006580L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006581L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006582W: http://rt2x00.serialmonkey.com/
6583S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006584T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006585F: drivers/net/wireless/rt2x00/
6586
Nick Piggin9db55792008-02-08 04:19:49 -08006587RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006588M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006590F: Documentation/blockdev/ramdisk.txt
6591F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006592
Matt Mackall9e95ce22005-04-16 15:25:56 -07006593RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006594M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006597
Matt Porter394b7012005-11-07 01:00:15 -08006598RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006600M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006603
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006604RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006605L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006606S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006607F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006608
6609RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006610M: Josh Triplett <josh@freedesktop.org>
6611M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006612S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006613T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006614F: Documentation/RCU/torture.txt
6615F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006616
Florian Fainellic1f766b2008-02-06 22:39:44 +01006617RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006618M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006619S: Maintained
6620
Florian Fainellidb17f392007-12-19 11:30:30 +01006621RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006622M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006623L: netdev@vger.kernel.org
6624S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006625F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006626
Andy Grovera09ed662009-02-24 15:30:41 +00006627RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006628M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006629L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006631F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006632
Josh Triplett595182b2006-10-04 02:17:21 -07006633READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006634M: Dipankar Sarma <dipankar@in.ibm.com>
6635M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006636W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006637S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006638T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006639F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006640X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006641F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006642F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006643X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006644
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006645REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006646M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006647L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006648Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: Documentation/rtc.txt
6651F: drivers/rtc/
6652F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006653F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006654
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006656L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006658F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659
Mark Brownb83a3132011-05-11 19:59:58 +02006660REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006661M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006662T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6663S: Supported
6664F: drivers/base/regmap/
6665F: include/linux/regmap.h
6666
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006667REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6668M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006669T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006670S: Maintained
6671F: drivers/remoteproc/
6672F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006673F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006674
Ivo van Doorne08976452008-04-12 19:23:55 +02006675RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006676M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006677L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006678W: http://wireless.kernel.org/
6679T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6680T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006681S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006682F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006683F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006684
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006685RICOH SMARTMEDIA/XD DRIVER
6686M: Maxim Levitsky <maximlevitsky@gmail.com>
6687S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006688F: drivers/mtd/nand/r852.c
6689F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006690
Maxim Levitsky92634122011-03-25 01:56:59 -07006691RICOH R5C592 MEMORYSTICK DRIVER
6692M: Maxim Levitsky <maximlevitsky@gmail.com>
6693S: Maintained
6694F: drivers/memstick/host/r592.*
6695
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696ROCKETPORT DRIVER
6697P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698W: http://www.comtrol.com
6699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006701F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006702
6703ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006706W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006708F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006709F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006710F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
Antti Palosaari91952bc2012-10-01 12:28:46 -03006712RTL2830 MEDIA DRIVER
6713M: Antti Palosaari <crope@iki.fi>
6714L: linux-media@vger.kernel.org
6715W: http://linuxtv.org/
6716W: http://palosaari.fi/linux/
6717Q: http://patchwork.linuxtv.org/project/linux-media/list/
6718T: git git://linuxtv.org/anttip/media_tree.git
6719S: Maintained
6720F: drivers/media/dvb-frontends/rtl2830*
6721
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006722RTL2832 MEDIA DRIVER
6723M: Antti Palosaari <crope@iki.fi>
6724L: linux-media@vger.kernel.org
6725W: http://linuxtv.org/
6726W: http://palosaari.fi/linux/
6727Q: http://patchwork.linuxtv.org/project/linux-media/list/
6728T: git git://linuxtv.org/anttip/media_tree.git
6729S: Maintained
6730F: drivers/media/dvb-frontends/rtl2832*
6731
Larry Finger59840482008-11-12 17:13:09 -06006732RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006733M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006734L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006735W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006736T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006737S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006738F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006739
Larry Finger59840482008-11-12 17:13:09 -06006740RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006741M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006742M: Hin-Tak Leung <htl10@users.sourceforge.net>
6743M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006744L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006745W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006746T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006747S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006748F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006749
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006750RTL8192CE WIRELESS DRIVER
6751M: Larry Finger <Larry.Finger@lwfinger.net>
6752M: Chaoming Li <chaoming_li@realsil.com.cn>
6753L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006754W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006755T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6756S: Maintained
6757F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006758F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006759
6760S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006761M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006762L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006764F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006765
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766S390
Joe Perches8b58be82009-07-29 15:04:30 -07006767M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6768M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006770L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006771W: http://www.ibm.com/developerworks/linux/linux390/
6772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006773F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006774F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006775F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006776F: Documentation/s390/
6777F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006778
6779S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006780M: Ursula Braun <ursula.braun@de.ibm.com>
6781M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006782M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006783L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006784W: http://www.ibm.com/developerworks/linux/linux390/
6785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006786F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006787
Felix Beckfeed9b62009-03-26 15:24:23 +01006788S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006789M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006790M: linux390@de.ibm.com
6791L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006792W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006793S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006794F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006795
Heiko Carstens5238da42006-02-11 17:56:01 -08006796S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006797M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006798M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006799L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006800W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006802F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803
Ursula Braundd96df22007-09-19 13:09:02 +02006804S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006805M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006806M: linux390@de.ibm.com
6807L: linux-s390@vger.kernel.org
6808W: http://www.ibm.com/developerworks/linux/linux390/
6809S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006810F: drivers/s390/net/*iucv*
6811F: include/net/iucv/
6812F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006813
Ben Dooks4dde7f72008-06-30 22:40:38 +01006814S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006815M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006816L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006817S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006818F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006819
Hans Verkuil1f15a222012-11-23 07:45:29 -03006820SAA6588 RDS RECEIVER DRIVER
6821M: Hans Verkuil <hverkuil@xs4all.nl>
6822L: linux-media@vger.kernel.org
6823T: git git://linuxtv.org/media_tree.git
6824W: http://linuxtv.org
6825S: Odd Fixes
6826F: drivers/media/i2c/saa6588*
6827
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006828SAA7134 VIDEO4LINUX DRIVER
6829M: Mauro Carvalho Chehab <mchehab@redhat.com>
6830L: linux-media@vger.kernel.org
6831W: http://linuxtv.org
6832T: git git://linuxtv.org/media_tree.git
6833S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03006834F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006835F: drivers/media/pci/saa7134/
6836
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006838M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006839L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006840T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006842F: drivers/media/common/saa7146/
6843F: drivers/media/pci/saa7146/
6844F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845
Corentin Chary92304a42011-12-05 12:38:35 -05006846SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006847M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006848L: platform-driver-x86@vger.kernel.org
6849S: Maintained
6850F: drivers/platform/x86/samsung-laptop.c
6851
Mark Brown4a109cc2010-09-24 10:50:46 +01006852SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006853M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006854L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6855S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006856F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006857
Jingoo Han0d89a282011-12-19 11:09:35 +09006858SAMSUNG FRAMEBUFFER DRIVER
6859M: Jingoo Han <jg1.han@samsung.com>
6860L: linux-fbdev@vger.kernel.org
6861S: Maintained
6862F: drivers/video/s3c-fb.c
6863
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006864SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6865M: Sangbeom Kim <sbkim73@samsung.com>
6866L: linux-kernel@vger.kernel.org
6867S: Supported
6868F: drivers/mfd/sec*.c
6869F: drivers/regulator/s2m*.c
6870F: drivers/regulator/s5m*.c
6871F: drivers/rtc/rtc-sec.c
6872F: include/linux/mfd/samsung/
6873
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006874SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6875M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6876L: linux-media@vger.kernel.org
6877L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6878S: Maintained
6879F: drivers/media/platform/s3c-camif/
6880F: include/media/s3c_camif.h
6881
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006882SAMSUNG S5C73M3 CAMERA DRIVER
6883M: Kyungmin Park <kyungmin.park@samsung.com>
6884M: Andrzej Hajda <a.hajda@samsung.com>
6885L: linux-media@vger.kernel.org
6886S: Supported
6887F: drivers/media/i2c/s5c73m3/*
6888
Alan Coxca749e22011-03-18 13:56:14 +00006889SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006890M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006891L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006892S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006893F: drivers/tty/serial
6894
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306895SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006896M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306897S: Maintained
6898F: include/linux/dw_dmac.h
6899F: drivers/dma/dw_dmac_regs.h
6900F: drivers/dma/dw_dmac.c
6901
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006902SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6903M: Seungwon Jeon <tgih.jun@samsung.com>
6904M: Jaehoon Chung <jh80.chung@samsung.com>
6905L: linux-mmc@vger.kernel.org
6906S: Maintained
6907F: include/linux/mmc/dw_mmc.h
6908F: drivers/mmc/host/dw_mmc*
6909
Thomas Gleixner88606e82010-12-14 21:37:13 +01006910TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006911M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006912M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006913T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006914S: Supported
6915F: include/linux/clocksource.h
6916F: include/linux/time.h
6917F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006918F: include/uapi/linux/time.h
6919F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006920F: kernel/time/clocksource.c
6921F: kernel/time/time*.c
6922F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006923F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006924
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006925TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006926M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03006927M: Hans Verkuil <hverkuil@xs4all.nl>
6928S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006929F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006930
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006932M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006934F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935
6936SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006937M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006938M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006939T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006941F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006942F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006943F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944
Chen Liqin6bcf6732009-06-13 15:24:33 +08006945SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006946M: Chen Liqin <liqin.chen@sunplusct.com>
6947M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006948W: http://www.sunplusct.com
6949S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006950F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006951
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006953M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954L: linux-scsi@vger.kernel.org
6955W: http://www.kernel.dk
6956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006957F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958
Roland Dreierfb50a832010-10-07 09:54:53 -07006959SCSI RDMA PROTOCOL (SRP) INITIATOR
6960M: David Dillow <dillowda@ornl.gov>
6961L: linux-rdma@vger.kernel.org
6962S: Supported
6963W: http://www.openfabrics.org
6964Q: http://patchwork.kernel.org/project/linux-rdma/list/
6965T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6966F: drivers/infiniband/ulp/srp/
6967F: include/scsi/srp.h
6968
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006970M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971L: linux-scsi@vger.kernel.org
6972W: http://www.torque.net/sg
6973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006974F: drivers/scsi/sg.c
6975F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976
6977SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006978M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006980T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6981T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6982T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006984F: drivers/scsi/
6985F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986
6987SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006988M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989L: linux-scsi@vger.kernel.org
6990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006991F: Documentation/scsi/st.txt
6992F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006993
6994SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006995M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006996M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006997L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006998W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007000F: Documentation/networking/sctp.txt
7001F: include/linux/sctp.h
7002F: include/net/sctp/
7003F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004
7005SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007006M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007007S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007008F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007009F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007010F: drivers/watchdog/scx200_wdt.c
7011F: drivers/i2c/busses/scx200*
7012F: drivers/mtd/maps/scx200_docflash.c
7013F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007014
7015SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007016M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007018F: drivers/char/scx200_gpio.c
7019F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007020
7021SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007022M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007024F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025
Sascha Sommer6a369132008-07-15 14:21:29 +02007026SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007027M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007028L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007030F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007031
Randy Dunlape7839f22008-10-12 16:11:45 -07007032SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007033M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007034L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007035T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7036S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007037F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007038F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007039
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007040SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007042L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007043L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007045F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046
Ben Dooks0d1bb412009-06-14 13:52:37 +01007047SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007048M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007049L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007050S: Maintained
7051F: drivers/mmc/host/sdhci-s3c.c
7052
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007053SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007054M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007055L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007056L: linux-mmc@vger.kernel.org
7057S: Maintained
7058F: drivers/mmc/host/sdhci-spear.c
7059
James Morris8711cca2008-12-04 03:19:45 +11007060SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007061M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007062L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007063T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007064W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007065S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007066F: security/
James Morris8711cca2008-12-04 03:19:45 +11007067
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007069M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070S: Supported
7071
7072SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007073M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007074M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007075M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007076L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007077W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007078T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007080F: include/linux/selinux*
7081F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007082F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083
John Johansenc1c124e2010-07-29 14:48:09 -07007084APPARMOR SECURITY MODULE
7085M: John Johansen <john.johansen@canonical.com>
7086L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7087W: apparmor.wiki.kernel.org
7088T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7089S: Supported
7090F: security/apparmor/
7091
Jiri Slabycef2cf02007-05-08 00:31:45 -07007092SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007095F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007096F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007097
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007098SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007099M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007101T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007103F: drivers/ata/
7104F: include/linux/ata.h
7105F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307107SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007108M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007109L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007110W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007111S: Supported
7112F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307113
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007114SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007115M: Sathya Perla <sathya.perla@emulex.com>
7116M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7117M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007118L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007119W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007120S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007121F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007122
Ben Hutchings8ceee662008-04-27 12:55:59 +01007123SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007124M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007125M: Ben Hutchings <bhutchings@solarflare.com>
7126L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007127S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007128F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007130SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007131M: Dimitri Sivanich <sivanich@sgi.com>
7132M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007134F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007135
7136SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007138L: linux-ia64@vger.kernel.org
7139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007140F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007141F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007142F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007143
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007145M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007146L: linux-visws-devel@lists.sf.net
7147W: http://linux-visws.sf.net
7148S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007149F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
Jack Steiner75312612008-08-15 00:40:42 -07007151SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007152M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007154F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007155
Hans Verkuil49cc6292012-11-30 07:13:29 -03007156SI470X FM RADIO RECEIVER I2C DRIVER
7157M: Hans Verkuil <hverkuil@xs4all.nl>
7158L: linux-media@vger.kernel.org
7159T: git git://linuxtv.org/media_tree.git
7160W: http://linuxtv.org
7161S: Odd Fixes
7162F: drivers/media/radio/si470x/radio-si470x-i2c.c
7163
7164SI470X FM RADIO RECEIVER USB DRIVER
7165M: Hans Verkuil <hverkuil@xs4all.nl>
7166L: linux-media@vger.kernel.org
7167T: git git://linuxtv.org/media_tree.git
7168W: http://linuxtv.org
7169S: Maintained
7170F: drivers/media/radio/si470x/radio-si470x-common.c
7171F: drivers/media/radio/si470x/radio-si470x.h
7172F: drivers/media/radio/si470x/radio-si470x-usb.c
7173
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007174SI4713 FM RADIO TRANSMITTER I2C DRIVER
7175M: Eduardo Valentin <edubezval@gmail.com>
7176L: linux-media@vger.kernel.org
7177T: git git://linuxtv.org/media_tree.git
7178W: http://linuxtv.org
7179S: Odd Fixes
7180F: drivers/media/radio/si4713-i2c.?
7181
7182SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7183M: Eduardo Valentin <edubezval@gmail.com>
7184L: linux-media@vger.kernel.org
7185T: git git://linuxtv.org/media_tree.git
7186W: http://linuxtv.org
7187S: Odd Fixes
7188F: drivers/media/radio/radio-si4713.h
7189
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007190SIANO DVB DRIVER
7191M: Mauro Carvalho Chehab <mchehab@redhat.com>
7192L: linux-media@vger.kernel.org
7193W: http://linuxtv.org
7194T: git git://linuxtv.org/media_tree.git
7195S: Odd fixes
7196F: drivers/media/common/siano/
7197F: drivers/media/dvb/siano/
7198F: drivers/media/usb/siano/
7199F: drivers/media/mmc/siano
7200
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007201SH_VEU V4L2 MEM2MEM DRIVER
7202M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7203L: linux-media@vger.kernel.org
7204S: Maintained
7205F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007206
7207SH_VOU V4L2 OUTPUT DRIVER
7208M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7209L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007210S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007211F: drivers/media/platform/sh_vou.c
7212F: include/media/sh_vou.h
7213
Len Brown6349d992009-08-14 15:07:14 -04007214SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007215M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007216L: sfi-devel@simplefirmware.org
7217W: http://simplefirmware.org/
7218T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007219S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007220F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007221F: drivers/sfi/
7222F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007223
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224SIMTEC EB110ATX (Chalice CATS)
7225P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007226P: Vincent Sanders <vince@simtec.co.uk>
7227M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228W: http://www.simtec.co.uk/products/EB110ATX/
7229S: Supported
7230
7231SIMTEC EB2410ITX (BAST)
7232P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007233P: Vincent Sanders <vince@simtec.co.uk>
7234M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235W: http://www.simtec.co.uk/products/EB2410ITX/
7236S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007237F: arch/arm/mach-s3c2410/mach-bast.c
7238F: arch/arm/mach-s3c2410/bast-ide.c
7239F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007241TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007242M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007243M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307244L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307245T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007246Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007247S: Supported
7248F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007249F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007250
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007251TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007252M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007253L: linux-media@vger.kernel.org
7254L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7255W: http://linuxtv.org/
7256Q: http://patchwork.linuxtv.org/project/linux-media/list/
7257T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007258S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007259F: drivers/media/platform/davinci/
7260F: include/media/davinci/
7261
Francois Romieu92aab3c2005-07-30 13:11:18 +02007262SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007263M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007264L: netdev@vger.kernel.org
7265S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007266F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007267
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007269M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007271L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007273F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274
7275SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007276M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007279F: Documentation/fb/sisfb.txt
7280F: drivers/video/sis/
7281F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282
7283SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007284M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285W: http://www.winischhofer.at/linuxsisusbvga.shtml
7286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007287F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
Christoph Lameter415ad262007-07-26 10:40:56 -07007289SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007291M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007292M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007293L: linux-mm@kvack.org
7294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007295F: include/linux/sl?b*.h
7296F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007297
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007298SLEEPABLE READ-COPY UPDATE (SRCU)
7299M: Lai Jiangshan <laijs@cn.fujitsu.com>
7300M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7301W: http://www.rdrop.com/users/paulmck/RCU/
7302S: Supported
7303T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7304F: include/linux/srcu*
7305F: kernel/srcu*
7306
Casey Schaufler66372842012-05-23 18:34:52 -07007307SMACK SECURITY MODULE
7308M: Casey Schaufler <casey@schaufler-ca.com>
7309L: linux-security-module@vger.kernel.org
7310W: http://schaufler-ca.com
7311T: git git://git.gitorious.org/smack-next/kernel.git
7312S: Maintained
7313F: Documentation/security/Smack.txt
7314F: security/smack/
7315
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007317M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007318S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007319F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
Sakari Ailuse8e31622012-11-12 18:14:39 -03007321SMIA AND SMIA++ IMAGE SENSOR DRIVER
7322M: Sakari Ailus <sakari.ailus@iki.fi>
7323L: linux-media@vger.kernel.org
7324S: Maintained
7325F: drivers/media/i2c/smiapp
7326F: include/media/smiapp.h
7327F: drivers/media/i2c/smiapp-pll.c
7328F: drivers/media/i2c/smiapp-pll.h
7329
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007330SMM665 HARDWARE MONITOR DRIVER
7331M: Guenter Roeck <linux@roeck-us.net>
7332L: lm-sensors@lm-sensors.org
7333S: Maintained
7334F: Documentation/hwmon/smm665
7335F: drivers/hwmon/smm665.c
7336
Steve Glendinning9df73052010-08-14 21:08:54 +02007337SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007338M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007339L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007340S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007341F: Documentation/hwmon/emc2103
7342F: drivers/hwmon/emc2103.c
7343
Hans de Goedea98d5062011-03-21 17:59:36 +01007344SMSC SCH5627 HARDWARE MONITOR DRIVER
7345M: Hans de Goede <hdegoede@redhat.com>
7346L: lm-sensors@lm-sensors.org
7347S: Supported
7348F: Documentation/hwmon/sch5627
7349F: drivers/hwmon/sch5627.c
7350
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007351SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007352M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007353L: lm-sensors@lm-sensors.org
7354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007355F: Documentation/hwmon/smsc47b397
7356F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007357
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007358SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007359M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007360L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007362F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007363F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007364
Steve Glendinning2cb37722008-12-11 20:54:30 -08007365SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007366M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007367L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007368S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007369F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007370
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007371SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007372M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007373L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007374S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007375F: drivers/video/smscufx.c
7376
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007377SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007378M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007379L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007380T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007381S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007382F: include/media/soc*
7383F: drivers/media/i2c/soc_camera/
7384F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007385
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007386SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007390
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007392M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007395F: drivers/md/
7396F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007397F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007400M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007401L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007403F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404
Michael Buesch61e115a2007-09-18 15:12:50 -04007405SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007406M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007407L: netdev@vger.kernel.org
7408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007409F: drivers/ssb/
7410F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007411
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007413M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007414L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007415W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007417F: Documentation/laptops/sony-laptop.txt
7418F: drivers/char/sonypi.c
7419F: drivers/platform/x86/sony-laptop.c
7420F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421
Alex Dubovbaf85322008-02-09 10:20:54 -08007422SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007423M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007424W: http://tifmxx.berlios.de/
7425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007426F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007427
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007429M: Jaroslav Kysela <perex@perex.cz>
7430M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007431L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007432W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007433T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007434T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007436F: Documentation/sound/
7437F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007438F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007439F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440
Mark Brownbd903bd2008-11-19 19:16:05 +00007441SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007442M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007443M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007444T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007445L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007446W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007448F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007449F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007450
Sam Ravnborg473321f2009-01-04 15:47:49 -08007451SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007452M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007454Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007455T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7456T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007458F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007459F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460
David S. Miller6404fcc2010-03-16 01:00:17 -07007461SPARC SERIAL DRIVERS
7462M: "David S. Miller" <davem@davemloft.net>
7463L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007464T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7465T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007466S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007467F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007468F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007469F: drivers/tty/serial/sunhv.c
7470F: drivers/tty/serial/sunsab.c
7471F: drivers/tty/serial/sunsab.h
7472F: drivers/tty/serial/sunsu.c
7473F: drivers/tty/serial/sunzilog.c
7474F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007475
Christopher Li389325b2012-04-05 14:25:14 -07007476SPARSE CHECKER
7477M: "Christopher Li" <sparse@chrisli.org>
7478L: linux-sparse@vger.kernel.org
7479W: https://sparse.wiki.kernel.org/
7480T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7481T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7482S: Maintained
7483F: include/linux/compiler.h
7484
viresh kumarfc0c1952010-04-01 12:31:21 +01007485SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007486M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307487M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007488L: spear-devel@list.st.com
7489L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007490W: http://www.st.com/spear
7491S: Maintained
7492F: arch/arm/plat-spear/
7493
Viresh Kumar71e09a92012-04-20 22:39:48 +05307494SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007495M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307496M: Shiraz Hashim <shiraz.hashim@st.com>
7497L: spear-devel@list.st.com
7498L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7499W: http://www.st.com/spear
7500S: Maintained
7501F: arch/arm/mach-spear13xx/
7502
viresh kumarfc0c1952010-04-01 12:31:21 +01007503SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007504M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307505M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007506L: spear-devel@list.st.com
7507L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007508W: http://www.st.com/spear
7509S: Maintained
7510F: arch/arm/mach-spear3xx/
7511
7512SPEAR6XX MACHINE SUPPORT
7513M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307514M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007515M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007516L: spear-devel@list.st.com
7517L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007518W: http://www.st.com/spear
7519S: Maintained
7520F: arch/arm/mach-spear6xx/
7521
7522SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007523M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007524L: spear-devel@list.st.com
7525L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007526W: http://www.st.com/spear
7527S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307528F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007529
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007530SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007531M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownb02e48f2013-04-12 11:39:57 +01007532M: Mark Brown <broonie@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007533L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007534Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007535T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007537F: Documentation/spi/
7538F: drivers/spi/
7539F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007540F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007541
Jim Lewis2752e402006-09-29 02:01:19 -07007542SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007543M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7544M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007545L: netdev@vger.kernel.org
7546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007547F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007548F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007550SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007551M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007552L: linuxppc-dev@lists.ozlabs.org
7553L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007554W: http://www.ibm.com/developerworks/power/cell/
7555S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007556F: Documentation/filesystems/spufs.txt
7557F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007558
Phillip Lougherfc555842009-01-05 08:46:29 +00007559SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007560M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007561L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7562W: http://squashfs.org.uk
7563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007564F: Documentation/filesystems/squashfs.txt
7565F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007566
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007568M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007570F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
Linus Torvalds26e9a392008-10-17 09:50:12 -07007572STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007573M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007574L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007575S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007576
Linus Torvalds26e9a392008-10-17 09:50:12 -07007577STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007578M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007579T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007580L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007582F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007583
Joe Perchesc8c8b102011-07-05 09:42:12 -07007584STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7585M: Henk de Groot <pe1dnn@amsat.org>
7586S: Odd Fixes
7587F: drivers/staging/wlags49_h2/
7588F: drivers/staging/wlags49_h25/
7589
Joe Perchesc9555152011-07-05 09:42:01 -07007590STAGING - ASUS OLED
7591M: Jakub Schmidtke <sjakub@gmail.com>
7592S: Odd Fixes
7593F: drivers/staging/asus_oled/
7594
Joe Perchesebd3d012011-07-05 09:42:02 -07007595STAGING - COMEDI
7596M: Ian Abbott <abbotti@mev.co.uk>
7597M: Mori Hess <fmhess@users.sourceforge.net>
7598S: Odd Fixes
7599F: drivers/staging/comedi/
7600
Joe Perches8ca572c2011-07-05 09:42:03 -07007601STAGING - CRYSTAL HD VIDEO DECODER
7602M: Naren Sankar <nsankar@broadcom.com>
7603M: Jarod Wilson <jarod@wilsonet.com>
7604M: Scott Davilla <davilla@4pi.com>
7605M: Manu Abraham <abraham.manu@gmail.com>
7606S: Odd Fixes
7607F: drivers/staging/crystalhd/
7608
Joe Perches0f16ffc2011-07-05 09:42:04 -07007609STAGING - ECHO CANCELLER
7610M: Steve Underwood <steveu@coppice.org>
7611M: David Rowe <david@rowetel.com>
7612S: Odd Fixes
7613F: drivers/staging/echo/
7614
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007615STAGING - ET131X NETWORK DRIVER
7616M: Mark Einon <mark.einon@gmail.com>
7617S: Odd Fixes
7618F: drivers/staging/et131x/
7619
Joe Perchesa0138162011-07-05 15:21:34 -07007620STAGING - FLARION FT1000 DRIVERS
7621M: Marek Belisko <marek.belisko@gmail.com>
7622S: Odd Fixes
7623F: drivers/staging/ft1000/
7624
Joe Perchesec3fab92011-07-05 09:42:05 -07007625STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7626M: David Täht <d@teklibre.com>
7627S: Odd Fixes
7628F: drivers/staging/frontier/
7629
Hans Verkuil98ded592013-03-09 12:59:44 -03007630STAGING - GO7007 MPEG CODEC
7631M: Hans Verkuil <hans.verkuil@cisco.com>
7632S: Maintained
7633F: drivers/staging/media/go7007/
7634
Joe Perches6c1bb422011-07-05 09:42:07 -07007635STAGING - INDUSTRIAL IO
7636M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007637L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007638S: Odd Fixes
7639F: drivers/staging/iio/
7640
Joe Perchesa0138162011-07-05 15:21:34 -07007641STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7642M: Jarod Wilson <jarod@wilsonet.com>
7643W: http://www.lirc.org/
7644S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007645F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007646
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007647STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007648M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007649M: Marc Dietrich <marvin24@gmx.de>
7650L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007651L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007652S: Maintained
7653F: drivers/staging/nvec/
7654
Joe Perchesa0138162011-07-05 15:21:34 -07007655STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7656M: Andres Salomon <dilinger@queued.net>
7657M: Chris Ball <cjb@laptop.org>
7658M: Jon Nettleton <jon.nettleton@gmail.com>
7659W: http://wiki.laptop.org/go/DCON
7660S: Odd Fixes
7661F: drivers/staging/olpc_dcon/
7662
Chris Kelly94cfdd12012-03-14 10:55:42 +00007663STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007664M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007665S: Maintained
7666F: drivers/staging/ozwpan/
7667
Joe Perchesa0138162011-07-05 15:21:34 -07007668STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007669M: Willy Tarreau <willy@meta-x.org>
7670S: Odd Fixes
7671F: drivers/staging/panel/
7672
Joe Perchesa0138162011-07-05 15:21:34 -07007673STAGING - REALTEK RTL8712U DRIVERS
7674M: Larry Finger <Larry.Finger@lwfinger.net>
7675M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7676S: Odd Fixes
7677F: drivers/staging/rtl8712/
7678
Joe Perches9629fa82011-07-05 09:42:09 -07007679STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7680M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7681S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007682F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007683
Joe Perchesa0138162011-07-05 15:21:34 -07007684STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007685M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7686S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007687F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007688
7689STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7690M: William Hubbs <w.d.hubbs@gmail.com>
7691M: Chris Brannon <chris@the-brannons.com>
7692M: Kirk Reiser <kirk@braille.uwo.ca>
7693M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7694L: speakup@braille.uwo.ca
7695W: http://www.linux-speakup.org/
7696S: Odd Fixes
7697F: drivers/staging/speakup/
7698
7699STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007700M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007701S: Odd Fixes
7702F: drivers/staging/tidspbridge/
7703
Joe Perchesa0138162011-07-05 15:21:34 -07007704STAGING - USB ENE SM/MS CARD READER DRIVER
7705M: Al Cho <acho@novell.com>
7706S: Odd Fixes
7707F: drivers/staging/keucr/
7708
Joe Perchesb3e871c2011-07-05 09:42:10 -07007709STAGING - VIA VT665X DRIVERS
7710M: Forest Bond <forest@alittletooquiet.net>
7711S: Odd Fixes
7712F: drivers/staging/vt665?/
7713
Joe Perches81a9a522011-07-05 09:42:11 -07007714STAGING - WINBOND IS89C35 WLAN USB DRIVER
7715M: Pavel Machek <pavel@ucw.cz>
7716S: Odd Fixes
7717F: drivers/staging/winbond/
7718
Joe Perches709bcb02011-07-05 09:42:13 -07007719STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007720M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007721S: Odd Fixes
7722F: drivers/staging/xgifb/
7723
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007725M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007726S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007727F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007729SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007730M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007731W: http://sammy.net/sun3/
7732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007733F: arch/m68k/kernel/*sun3*
7734F: arch/m68k/sun3*/
7735F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007736F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007737
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007738SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007739M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007740L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007742Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007743T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007744S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007745F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007746F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007747F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007749SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007750M: Len Brown <len.brown@intel.com>
7751M: Pavel Machek <pavel@ucw.cz>
7752M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007753L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007754S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007755F: Documentation/power/
7756F: arch/x86/kernel/acpi/
7757F: drivers/base/power/
7758F: kernel/power/
7759F: include/linux/suspend.h
7760F: include/linux/freezer.h
7761F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762
7763SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765L: linux-video@atrey.karlin.mff.cuni.cz
7766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007767F: Documentation/svga.txt
7768F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007770SWIOTLB SUBSYSTEM
7771M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7772L: linux-kernel@vger.kernel.org
7773S: Supported
7774F: lib/swiotlb.c
7775F: arch/*/kernel/pci-swiotlb.c
7776F: include/linux/swiotlb.h
7777
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307778SYNOPSYS ARC ARCHITECTURE
7779M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307780S: Supported
7781F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307782F: Documentation/devicetree/bindings/arc/
7783F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307784
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007788F: Documentation/filesystems/sysv-fs.txt
7789F: fs/sysv/
7790F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007792TARGET SUBSYSTEM
7793M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7794L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007795L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007796L: http://groups.google.com/group/linux-iscsi-target-dev
7797W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007798T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007799S: Supported
7800F: drivers/target/
7801F: include/target/
7802F: Documentation/target/
7803
Alan Cox4e688522008-04-30 00:52:11 -07007804TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007805M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007807F: Documentation/accounting/taskstats*
7808F: include/linux/taskstats*
7809F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007810
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007811TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007812M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007813L: netdev@vger.kernel.org
7814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007815F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007816F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007817F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007818
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007819TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007820M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7821M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007822W: http://tcp-lp-mod.sourceforge.net/
7823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007824F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007825
Antti Palosaari91952bc2012-10-01 12:28:46 -03007826TDA10071 MEDIA DRIVER
7827M: Antti Palosaari <crope@iki.fi>
7828L: linux-media@vger.kernel.org
7829W: http://linuxtv.org/
7830W: http://palosaari.fi/linux/
7831Q: http://patchwork.linuxtv.org/project/linux-media/list/
7832T: git git://linuxtv.org/anttip/media_tree.git
7833S: Maintained
7834F: drivers/media/dvb-frontends/tda10071*
7835
7836TDA18212 MEDIA DRIVER
7837M: Antti Palosaari <crope@iki.fi>
7838L: linux-media@vger.kernel.org
7839W: http://linuxtv.org/
7840W: http://palosaari.fi/linux/
7841Q: http://patchwork.linuxtv.org/project/linux-media/list/
7842T: git git://linuxtv.org/anttip/media_tree.git
7843S: Maintained
7844F: drivers/media/tuners/tda18212*
7845
7846TDA18218 MEDIA DRIVER
7847M: Antti Palosaari <crope@iki.fi>
7848L: linux-media@vger.kernel.org
7849W: http://linuxtv.org/
7850W: http://palosaari.fi/linux/
7851Q: http://patchwork.linuxtv.org/project/linux-media/list/
7852T: git git://linuxtv.org/anttip/media_tree.git
7853S: Maintained
7854F: drivers/media/tuners/tda18218*
7855
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007856TDA18271 MEDIA DRIVER
7857M: Michael Krufky <mkrufky@linuxtv.org>
7858L: linux-media@vger.kernel.org
7859W: http://linuxtv.org/
7860W: http://github.com/mkrufky
7861Q: http://patchwork.linuxtv.org/project/linux-media/list/
7862T: git git://linuxtv.org/mkrufky/tuners.git
7863S: Maintained
7864F: drivers/media/tuners/tda18271*
7865
Michael Krufkye48307a2012-10-02 00:56:33 -03007866TDA827x MEDIA DRIVER
7867M: Michael Krufky <mkrufky@linuxtv.org>
7868L: linux-media@vger.kernel.org
7869W: http://linuxtv.org/
7870W: http://github.com/mkrufky
7871Q: http://patchwork.linuxtv.org/project/linux-media/list/
7872T: git git://linuxtv.org/mkrufky/tuners.git
7873S: Maintained
7874F: drivers/media/tuners/tda8290.*
7875
Michael Krufky66cf9212012-10-02 00:56:28 -03007876TDA8290 MEDIA DRIVER
7877M: Michael Krufky <mkrufky@linuxtv.org>
7878L: linux-media@vger.kernel.org
7879W: http://linuxtv.org/
7880W: http://github.com/mkrufky
7881Q: http://patchwork.linuxtv.org/project/linux-media/list/
7882T: git git://linuxtv.org/mkrufky/tuners.git
7883S: Maintained
7884F: drivers/media/tuners/tda8290.*
7885
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007886TDA9840 MEDIA DRIVER
7887M: Hans Verkuil <hverkuil@xs4all.nl>
7888L: linux-media@vger.kernel.org
7889T: git git://linuxtv.org/media_tree.git
7890W: http://linuxtv.org
7891S: Maintained
7892F: drivers/media/i2c/tda9840*
7893
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007894TEA5761 TUNER DRIVER
7895M: Mauro Carvalho Chehab <mchehab@redhat.com>
7896L: linux-media@vger.kernel.org
7897W: http://linuxtv.org
7898T: git git://linuxtv.org/media_tree.git
7899S: Odd fixes
7900F: drivers/media/tuners/tea5761.*
7901
7902TEA5767 TUNER DRIVER
7903M: Mauro Carvalho Chehab <mchehab@redhat.com>
7904L: linux-media@vger.kernel.org
7905W: http://linuxtv.org
7906T: git git://linuxtv.org/media_tree.git
7907S: Maintained
7908F: drivers/media/tuners/tea5767.*
7909
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007910TEA6415C MEDIA DRIVER
7911M: Hans Verkuil <hverkuil@xs4all.nl>
7912L: linux-media@vger.kernel.org
7913T: git git://linuxtv.org/media_tree.git
7914W: http://linuxtv.org
7915S: Maintained
7916F: drivers/media/i2c/tea6415c*
7917
7918TEA6420 MEDIA DRIVER
7919M: Hans Verkuil <hverkuil@xs4all.nl>
7920L: linux-media@vger.kernel.org
7921T: git git://linuxtv.org/media_tree.git
7922W: http://linuxtv.org
7923S: Maintained
7924F: drivers/media/i2c/tea6420*
7925
Jiri Pirko3d249d42011-11-11 22:16:48 +00007926TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007927M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007928L: netdev@vger.kernel.org
7929S: Supported
7930F: drivers/net/team/
7931F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007932F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007933
Vivien Didelot7d029122013-01-04 16:18:14 -05007934TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7935M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7936S: Maintained
7937F: arch/x86/platform/ts5500/
7938
Sean Young40ad4a32012-11-19 10:32:53 -03007939TECHNOTREND USB IR RECEIVER
7940M: Sean Young <sean@mess.org>
7941L: linux-media@vger.kernel.org
7942S: Maintained
7943F: drivers/media/rc/ttusbir.c
7944
Erik Gilling84b94142010-06-09 15:35:53 -07007945TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007946M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007947L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007948Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7949T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007950S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007951K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007952
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007953TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007954M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007955L: netdev@vger.kernel.org
7956S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007957F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007958
Alan Cox4e688522008-04-30 00:52:11 -07007959Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007960M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007962F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007963
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007964TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007965M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007966M: Max Filippov <jcmvbkbc@gmail.com>
7967L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007970
Zhang Ruid3fb6952012-11-15 08:58:27 +08007971THERMAL
7972M: Zhang Rui <rui.zhang@intel.com>
7973L: linux-pm@vger.kernel.org
7974T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7975S: Supported
7976F: drivers/thermal/
7977F: include/linux/thermal.h
7978
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007979THINGM BLINK(1) USB RGB LED DRIVER
7980M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7981S: Maintained
7982F: drivers/hid/hid-thingm.c
7983
Alan Cox4e688522008-04-30 00:52:11 -07007984THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007986L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007987L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007988W: http://ibm-acpi.sourceforge.net
7989W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007990T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007993
Alex Dubov4020f2d2006-10-04 02:15:37 -07007994TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007995M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007997F: drivers/misc/tifm*
7998F: drivers/mmc/host/tifm_sd.c
7999F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008000
M R Swami Reddy152ad442012-04-02 20:02:31 +05308001TI LM49xxx FAMILY ASoC CODEC DRIVERS
8002M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308003M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308004L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8005S: Maintained
8006F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308007F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308008
Kim, Milo0edd8072012-12-17 16:01:17 -08008009TI LP855x BACKLIGHT DRIVER
8010M: Milo Kim <milo.kim@ti.com>
8011S: Maintained
8012F: Documentation/backlight/lp855x-driver.txt
8013F: drivers/video/backlight/lp855x_bl.c
8014F: include/linux/platform_data/lp855x.h
8015
Kim, Milofaf13f62012-12-10 05:27:03 +00008016TI LP8727 CHARGER DRIVER
8017M: Milo Kim <milo.kim@ti.com>
8018S: Maintained
8019F: drivers/power/lp8727_charger.c
8020F: include/linux/platform_data/lp8727.h
8021
Kim, Milo22f12292012-12-10 05:27:55 +00008022TI LP8788 MFD DRIVER
8023M: Milo Kim <milo.kim@ti.com>
8024S: Maintained
8025F: drivers/iio/adc/lp8788_adc.c
8026F: drivers/leds/leds-lp8788.c
8027F: drivers/mfd/lp8788*.c
8028F: drivers/power/lp8788-charger.c
8029F: drivers/regulator/lp8788-*.c
8030F: include/linux/mfd/lp8788*.h
8031
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008032TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008033M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008034L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8035S: Maintained
8036F: sound/soc/codecs/twl4030*
8037
Luciano Coelho90921012011-11-20 21:40:41 +02008038TI WILINK WIRELESS DRIVERS
8039M: Luciano Coelho <coelho@ti.com>
8040L: linux-wireless@vger.kernel.org
8041W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8042W: http://wireless.kernel.org/en/users/Drivers/wl1251
8043T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8044S: Maintained
8045F: drivers/net/wireless/ti/
8046F: include/linux/wl12xx.h
8047
Per Lidene86eaa32006-01-12 16:45:18 +01008048TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008049M: Jon Maloy <jon.maloy@ericsson.com>
8050M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008051L: netdev@vger.kernel.org (core kernel code)
8052L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008053W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008054S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008055F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008056F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008057
Chris Metcalf867e3592010-05-28 23:09:12 -04008058TILE ARCHITECTURE
8059M: Chris Metcalf <cmetcalf@tilera.com>
8060W: http://www.tilera.com/scm/
8061S: Supported
8062F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008063F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008064F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008065F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008066
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008068M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008069L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070W: http://sourceforge.net/projects/tlan/
8071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008072F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008073F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008075TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008076M: Kentaro Takeda <takedakn@nttdata.co.jp>
8077M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008078L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8079L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008080L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8081L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8082W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008083T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008085F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008086
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008087TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008088M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008089L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008090S: Maintained
8091F: drivers/platform/x86/topstar-laptop.c
8092
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008094L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008095S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008096F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097
8098TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008099M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008100L: tlinux-users@tce.toshiba-dme.co.jp
8101W: http://www.buzzard.org.uk/toshiba/
8102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008103F: drivers/char/toshiba.c
8104F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008105F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008106
Pierre Ossmand719f902009-03-24 21:06:09 +01008107TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008108M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008109M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008110L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008111S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008112F: drivers/mmc/host/tmio_mmc*
8113F: drivers/mmc/host/sh_mobile_sdhi.c
8114F: include/linux/mmc/tmio.h
8115F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008116
Hugh Dickins98f32602009-05-21 20:33:58 +01008117TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008118M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008119L: linux-mm@kvack.org
8120S: Maintained
8121F: include/linux/shmem_fs.h
8122F: mm/shmem.c
8123
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008124TM6000 VIDEO4LINUX DRIVER
8125M: Mauro Carvalho Chehab <mchehab@redhat.com>
8126L: linux-media@vger.kernel.org
8127W: http://linuxtv.org
8128T: git git://linuxtv.org/media_tree.git
8129S: Odd fixes
8130F: drivers/media/usb/tm6000/
8131
Alan Cox4e688522008-04-30 00:52:11 -07008132TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008133M: Kent Yoder <key@linux.vnet.ibm.com>
8134M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008135W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008136M: Marcel Selhorst <tpmdd@selhorst.net>
8137M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008138W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008139L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008141F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008142
Joe Perchesd6f005a2009-10-26 16:49:40 -07008143TRACING
8144M: Steven Rostedt <rostedt@goodmis.org>
8145M: Frederic Weisbecker <fweisbec@gmail.com>
8146M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008147T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008148S: Maintained
8149F: Documentation/trace/ftrace.txt
8150F: arch/*/*/*/ftrace.h
8151F: arch/*/kernel/ftrace.c
8152F: include/*/ftrace.h
8153F: include/linux/trace*.h
8154F: include/trace/
8155F: kernel/trace/
8156
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008158M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008159T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008161K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008162
Alan Cox4e688522008-04-30 00:52:11 -07008163TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008164M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008165M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008166S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008167T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008168F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008169F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008170F: include/linux/serial_core.h
8171F: include/linux/serial.h
8172F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008173F: include/uapi/linux/serial_core.h
8174F: include/uapi/linux/serial.h
8175F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008176
Antti Palosaari91952bc2012-10-01 12:28:46 -03008177TUA9001 MEDIA DRIVER
8178M: Antti Palosaari <crope@iki.fi>
8179L: linux-media@vger.kernel.org
8180W: http://linuxtv.org/
8181W: http://palosaari.fi/linux/
8182Q: http://patchwork.linuxtv.org/project/linux-media/list/
8183T: git git://linuxtv.org/anttip/media_tree.git
8184S: Maintained
8185F: drivers/media/tuners/tua9001*
8186
Grant Grundler740db6d2008-02-17 11:53:49 -07008187TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008188M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008189L: netdev@vger.kernel.org
8190S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008191F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192
8193TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008194M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195W: http://vtun.sourceforge.net/tun
8196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008197F: Documentation/networking/tuntap.txt
8198F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008200TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008201M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008203F: drivers/tc/
8204F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008205
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008207M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208L: linux-scsi@vger.kernel.org
8209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008212UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008213M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008214M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008215L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008216T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008217W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008219F: Documentation/filesystems/ubifs.txt
8220F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008221
Alan Coxcc2020e2008-05-19 14:21:51 +01008222UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008223M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008224W: http://www.uclinux.org/
8225L: uclinux-dev@uclinux.org (subscribers-only)
8226S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008227F: arch/m68k/*/*_no.*
8228F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008229
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008230UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008231M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008232W: http://uclinux-h8.sourceforge.jp/
8233S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008234F: arch/h8300/
8235F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008236F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008237
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008239M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008241F: Documentation/filesystems/udf.txt
8242F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008243
Alan Coxcc2020e2008-05-19 14:21:51 +01008244UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008245M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008247F: Documentation/filesystems/ufs.txt
8248F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008249
David Herrmann0a09d3a2012-06-10 15:16:28 +02008250UHID USERSPACE HID IO DRIVER:
8251M: David Herrmann <dh.herrmann@googlemail.com>
8252L: linux-input@vger.kernel.org
8253S: Maintained
8254F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008255F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008256
David Vrabel18332a82008-09-17 16:34:44 +01008257ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008258L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008259S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008260F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008261F: include/linux/uwb.h
8262F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008263
GuanXuetaob31d8272011-01-16 00:35:49 +08008264UNICORE32 ARCHITECTURE:
8265M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8266W: http://mprc.pku.edu.cn/~guanxuetao/linux
8267S: Maintained
8268T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8269F: arch/unicore32/
8270
Tony Finchd8379ab2009-11-27 15:50:30 +00008271UNIFDEF
8272M: Tony Finch <dot@dotat.at>
8273W: http://dotat.at/prog/unifdef
8274S: Maintained
8275F: scripts/unifdef.c
8276
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008278M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279W: http://www.kernel.dk
8280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008281F: Documentation/cdrom/
8282F: drivers/cdrom/cdrom.c
8283F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008284F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308286UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8287M: Vinayak Holikatti <vinholikatti@gmail.com>
8288M: Santosh Y <santoshsy@gmail.com>
8289L: linux-scsi@vger.kernel.org
8290S: Supported
8291F: Documentation/scsi/ufs.txt
8292F: drivers/scsi/ufs/
8293
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008294UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008295M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008296W: http://www.linux-mtd.infradead.org/
8297L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008298T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008299S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008300F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008301F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008302F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008303
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008304UNSORTED BLOCK IMAGES (UBI) Fastmap
8305M: Richard Weinberger <richard@nod.at>
8306L: linux-mtd@lists.infradead.org
8307S: Maintained
8308F: drivers/mtd/ubi/fastmap.c
8309
Linus Torvalds1da177e2005-04-16 15:20:36 -07008310USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008311M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008312L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008314F: Documentation/usb/acm.txt
8315F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008317USB AR5523 WIRELESS DRIVER
8318M: Pontus Fuchs <pontus.fuchs@gmail.com>
8319L: linux-wireless@vger.kernel.org
8320S: Maintained
8321F: drivers/net/wireless/ath/ar5523/
8322
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008323USB ATTACHED SCSI
8324M: Matthew Wilcox <willy@linux.intel.com>
8325M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008326M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008327L: linux-usb@vger.kernel.org
8328L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008329S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008330F: drivers/usb/storage/uas.c
8331
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008333M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008334L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008336F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008337F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008339USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008340M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008341L: linux-usb@vger.kernel.org
8342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008343F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008344
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008345USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008346M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008347L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008348W: http://www.linux-usb.org/usbnet
8349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008350F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008351
Alan Coxcc2020e2008-05-19 14:21:51 +01008352USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008353M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008354L: rio500-users@lists.sourceforge.net
8355W: http://rio500.sourceforge.net
8356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008357F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008358
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008360M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008361L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008363F: Documentation/usb/ehci.txt
8364F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365
David Brownell69ae9e32006-11-14 02:03:31 -08008366USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008367M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008368L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008369W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008370T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008372F: drivers/usb/gadget/
8373F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008374
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008375USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008376M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008377L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008378T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008380F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008381F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382
matt mooney857aab32011-06-17 15:50:46 -07008383USB/IP DRIVERS
8384M: Matt Mooney <mfm@muteddisk.com>
8385L: linux-usb@vger.kernel.org
8386S: Maintained
8387F: drivers/staging/usbip/
8388
Olav Kongas959eea22005-11-03 17:38:14 +02008389USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008391L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008393F: drivers/usb/host/isp116x*
8394F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008395
Linus Torvalds1da177e2005-04-16 15:20:36 -07008396USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008397M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008398L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008400F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401
8402USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008403M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008404L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008405L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406S: Maintained
8407W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008408F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008409
Clemens Ladischaf399172011-01-10 16:32:54 +01008410USB MIDI DRIVER
8411M: Clemens Ladisch <clemens@ladisch.de>
8412L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8413T: git git://git.alsa-project.org/alsa-kernel.git
8414S: Maintained
8415F: sound/usb/midi.*
8416
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008418M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008419L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008421F: Documentation/usb/ohci.txt
8422F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423
Matthias Urlichsba460e42005-07-14 00:33:47 -07008424USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008425M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008426L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008431M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008432L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008433L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434W: http://pegasus2.sourceforge.net/
8435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008436F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437
Felipe Balbid3ad5582012-05-21 16:24:49 +03008438USB PHY LAYER
8439M: Felipe Balbi <balbi@ti.com>
8440L: linux-usb@vger.kernel.org
8441T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8442S: Maintained
8443F: drivers/usb/phy/
8444F: drivers/usb/otg/
8445
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008446USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008447M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008448L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008450F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008451
8452USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008453M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008454L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008455L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008456W: http://pegasus2.sourceforge.net/
8457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008458F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008459
Alan Cox4e688522008-04-30 00:52:11 -07008460USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008461M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008462L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008464F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008465
8466USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008467M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008468L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008469S: Maintained
8470W: http://geocities.com/i0xox0i
8471W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008472F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008473
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008475M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008478F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479
8480USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008481M: Peter Berger <pberger@brimson.com>
8482M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008483L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008485F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486
8487USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008488M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008489L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008491F: Documentation/usb/usb-serial.txt
8492F: drivers/usb/serial/generic.c
8493F: drivers/usb/serial/usb-serial.c
8494F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008495
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008497M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008498L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008500F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501
8502USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008503M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008504L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008506F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507
8508USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008509M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008510L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511W: http://www.connecttech.com
8512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008513F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008515USB SMSC75XX ETHERNET DRIVER
8516M: Steve Glendinning <steve.glendinning@shawell.net>
8517L: netdev@vger.kernel.org
8518S: Maintained
8519F: drivers/net/usb/smsc75xx.*
8520
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008521USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008522M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008523L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008525F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008526
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008527USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008528M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008529L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008530L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008531T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532W: http://www.linux-projects.org
8533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008534F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008535F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008536
8537USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008538M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008539L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008541T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008543F: Documentation/usb/
8544F: drivers/net/usb/
8545F: drivers/usb/
8546F: include/linux/usb.h
8547F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548
8549USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008550M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008551L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008553F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008554
David Brownell69ae9e32006-11-14 02:03:31 -08008555USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008556M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008557L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008558W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008560F: drivers/net/usb/usbnet.c
8561F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008563USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008564M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008565L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008566L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008567T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008568W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008569S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008570F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008571F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008572
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008573USB VISION DRIVER
8574M: Hans Verkuil <hverkuil@xs4all.nl>
8575L: linux-media@vger.kernel.org
8576T: git git://linuxtv.org/media_tree.git
8577W: http://linuxtv.org
8578S: Odd Fixes
8579F: drivers/media/usb/usbvision/
8580
Laurent Pinchart8282da42012-10-04 02:32:42 +02008581USB WEBCAM GADGET
8582M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8583L: linux-usb@vger.kernel.org
8584S: Maintained
8585F: drivers/usb/gadget/*uvc*.c
8586F: drivers/usb/gadget/webcam.c
8587
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008588USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008589M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008590L: linux-wireless@vger.kernel.org
8591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008592F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008593
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008594USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008595M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008596L: linux-usb@vger.kernel.org
8597S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008598F: drivers/usb/host/xhci*
8599F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008600
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008602L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008604S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008605F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008607USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008608M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008609L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008610L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008611T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008612W: http://royale.zerezo.com/zr364xx/
8613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008614F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008615F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008616
Randy Dunlape7839f22008-10-12 16:11:45 -07008617USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008618M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008619M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620L: user-mode-linux-devel@lists.sourceforge.net
8621L: user-mode-linux-user@lists.sourceforge.net
8622W: http://user-mode-linux.sourceforge.net
8623S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008624F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008625F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008626F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008627F: fs/hostfs/
8628F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008629
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008630USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008631M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008632M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008634F: Documentation/DocBook/uio-howto.tmpl
8635F: drivers/uio/
8636F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008637
Karel Zak256cccb2012-06-01 10:13:09 +02008638UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008639M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008640L: util-linux@vger.kernel.org
8641W: http://en.wikipedia.org/wiki/Util-linux
8642T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008643S: Maintained
8644
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008645UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008646M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008647L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008648W: http://dev.gentoo.org/~spock/projects/uvesafb/
8649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008650F: Documentation/fb/uvesafb.txt
8651F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008652
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008653VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008654M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008656F: Documentation/filesystems/vfat.txt
8657F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008658
Alex Williamsoncba33452012-07-31 08:16:22 -06008659VFIO DRIVER
8660M: Alex Williamson <alex.williamson@redhat.com>
8661L: kvm@vger.kernel.org
8662S: Maintained
8663F: Documentation/vfio.txt
8664F: drivers/vfio/
8665F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008666F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008667
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008668VIDEOBUF2 FRAMEWORK
8669M: Pawel Osciak <pawel@osciak.com>
8670M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008671M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008672L: linux-media@vger.kernel.org
8673S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008674F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008675F: include/media/videobuf2-*
8676
Amit Shah9a824462010-03-23 18:23:09 +05308677VIRTIO CONSOLE DRIVER
8678M: Amit Shah <amit.shah@redhat.com>
8679L: virtualization@lists.linux-foundation.org
8680S: Maintained
8681F: drivers/char/virtio_console.c
8682F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008683F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308684
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308685VIRTIO CORE, NET AND BLOCK DRIVERS
8686M: Rusty Russell <rusty@rustcorp.com.au>
8687M: "Michael S. Tsirkin" <mst@redhat.com>
8688L: virtualization@lists.linux-foundation.org
8689S: Maintained
8690F: drivers/virtio/
8691F: drivers/net/virtio_net.c
8692F: drivers/block/virtio_blk.c
8693F: include/linux/virtio_*.h
8694
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008695VIRTIO HOST (VHOST)
8696M: "Michael S. Tsirkin" <mst@redhat.com>
8697L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008698L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008699L: netdev@vger.kernel.org
8700S: Maintained
8701F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008702F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008703
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008705M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008707F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708
Harald Weltef0bf7f62009-06-17 20:22:39 +02008709VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008710M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008711M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008712S: Maintained
8713F: drivers/mmc/host/via-sdmmc.c
8714
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008715VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008716M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008717L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008718S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008719F: include/linux/via-core.h
8720F: include/linux/via-gpio.h
8721F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008722F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008723
Francois Romieu01f20732007-01-26 00:57:17 -08008724VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008725M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008726L: netdev@vger.kernel.org
8727S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008728F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008729
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008730VIVI VIRTUAL VIDEO DRIVER
8731M: Hans Verkuil <hverkuil@xs4all.nl>
8732L: linux-media@vger.kernel.org
8733T: git git://linuxtv.org/media_tree.git
8734W: http://linuxtv.org
8735S: Maintained
8736F: drivers/media/platform/vivi*
8737
Patrick McHardybe7f8272007-10-23 20:26:36 -07008738VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008739M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008740L: netdev@vger.kernel.org
8741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008742F: drivers/net/macvlan.c
8743F: include/linux/if_*vlan.h
8744F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008745
Florian Fainelli55e331c2009-06-16 15:33:53 -07008746VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008747M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008748L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008749S: Maintained
8750F: drivers/vlynq/vlynq.c
8751F: include/linux/vlynq.h
8752
Martyn Welch390beae2012-05-03 17:52:36 +01008753VME SUBSYSTEM
8754M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008755M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008756M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8757L: devel@driverdev.osuosl.org
8758S: Maintained
8759T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8760F: Documentation/vme_api.txt
8761F: drivers/staging/vme/
8762F: drivers/vme/
8763F: include/linux/vme*
8764
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008765VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008766M: Shreyas Bhatewara <sbhatewara@vmware.com>
8767M: "VMware, Inc." <pv-drivers@vmware.com>
8768L: netdev@vger.kernel.org
8769S: Maintained
8770F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008771
Alok Kataria851b1642009-10-13 14:51:05 -07008772VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008773M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008774M: VMware PV-Drivers <pv-drivers@vmware.com>
8775L: linux-scsi@vger.kernel.org
8776S: Maintained
8777F: drivers/scsi/vmw_pvscsi.c
8778F: drivers/scsi/vmw_pvscsi.h
8779
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008780VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008781M: Liam Girdwood <lrg@ti.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008782M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008783W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008784W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008785T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008787F: drivers/regulator/
8788F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008789
Juerg Haefligerab413192006-09-24 20:54:04 +02008790VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008791M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008792L: lm-sensors@lm-sensors.org
8793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008794F: Documentation/hwmon/vt1211
8795F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008796
Roger Lucas1de9e372005-11-26 20:20:05 +01008797VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008798M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008799L: lm-sensors@lm-sensors.org
8800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008801F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008802
Tony Olech88095e72011-05-14 16:48:13 -04008803VUB300 USB to SDIO/SD/MMC bridge chip
8804M: Tony Olech <tony.olech@elandigitalsystems.com>
8805L: linux-mmc@vger.kernel.org
8806L: linux-usb@vger.kernel.org
8807S: Supported
8808F: drivers/mmc/host/vub300.c
8809
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008811M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008813F: Documentation/w1/
8814F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008815
Charles Spirakis13927072006-07-05 18:05:15 +02008816W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008817M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008818L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008820F: Documentation/hwmon/w83791d
8821F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008822
Rudolf Marek61db0112006-12-12 18:18:30 +01008823W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008824M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008825L: lm-sensors@lm-sensors.org
8826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008827F: Documentation/hwmon/w83793
8828F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008829
Jean Delvaree3760b42010-10-28 20:31:49 +02008830W83795 HARDWARE MONITORING DRIVER
8831M: Jean Delvare <khali@linux-fr.org>
8832L: lm-sensors@lm-sensors.org
8833S: Maintained
8834F: drivers/hwmon/w83795.c
8835
Linus Torvalds1da177e2005-04-16 15:20:36 -07008836W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008837M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008839F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008840
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008841WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008842M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008843L: linux-watchdog@vger.kernel.org
8844W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008845T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008847F: Documentation/watchdog/
8848F: drivers/watchdog/
8849F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008850F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008851
Linus Torvalds1da177e2005-04-16 15:20:36 -07008852WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008853M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008854L: linux-scsi@vger.kernel.org
8855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008856F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008857
David Herrmannb22e00f2011-09-06 13:50:40 +02008858WIIMOTE HID DRIVER
8859M: David Herrmann <dh.herrmann@googlemail.com>
8860L: linux-input@vger.kernel.org
8861S: Maintained
8862F: drivers/hid/hid-wiimote*
8863
David Härdemane258b802009-09-21 17:04:53 -07008864WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008865M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008866S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008867F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008868
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008869WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008870M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008871M: linux-wimax@intel.com
8872L: wimax@linuxwimax.org
8873S: Supported
8874W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008875F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008876F: include/linux/wimax/debug.h
8877F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008878F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008879F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008880
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008881WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008882M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008884F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008885
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008887M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008888L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008889W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008891F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008892
Mark Brownfebf1df2008-04-02 00:51:09 -04008893WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008894M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8895M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008896L: linux-input@vger.kernel.org
8897T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8898W: http://opensource.wolfsonmicro.com/node/7
8899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008900F: drivers/input/touchscreen/*wm97*
8901F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008902
Mark Brown055bcbc2010-08-13 14:18:12 +01008903WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008904M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008905L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008906T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008907T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008908W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008909S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008910F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008911F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008912F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008913F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008914F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008915F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008916F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008917F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008918F: drivers/input/misc/wm831x-on.c
8919F: drivers/input/touchscreen/wm831x-ts.c
8920F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008921F: drivers/mfd/arizona*
8922F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008923F: drivers/power/wm83*.c
8924F: drivers/rtc/rtc-wm83*.c
8925F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008926F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008927F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008928F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008929F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008930F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008931F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008932F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008933F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008934F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008935F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008936
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008937WORKQUEUE
8938M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008939T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8940S: Maintained
8941F: include/linux/workqueue.h
8942F: kernel/workqueue.c
8943F: Documentation/workqueue.txt
8944
Linus Torvalds1da177e2005-04-16 15:20:36 -07008945X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008946M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008947L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008948S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008949F: Documentation/networking/x25*
8950F: include/net/x25*
8951F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008953X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008954M: Thomas Gleixner <tglx@linutronix.de>
8955M: Ingo Molnar <mingo@redhat.com>
8956M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008957M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008958T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008960F: Documentation/x86/
8961F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008962
Matthew Garrettd0944852010-02-11 10:40:13 -05008963X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008964M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008965L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008966T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008967S: Maintained
8968F: drivers/platform/x86
8969
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008970X86 MCE INFRASTRUCTURE
8971M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008972M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008973L: linux-edac@vger.kernel.org
8974S: Maintained
8975F: arch/x86/kernel/cpu/mcheck/*
8976
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008977XC2028/3028 TUNER DRIVER
8978M: Mauro Carvalho Chehab <mchehab@redhat.com>
8979L: linux-media@vger.kernel.org
8980W: http://linuxtv.org
8981T: git git://linuxtv.org/media_tree.git
8982S: Maintained
8983F: drivers/media/tuners/tuner-xc2028.*
8984
Ian Campbellc4468082011-04-27 15:26:46 -07008985XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008986M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008987M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008988L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8989L: virtualization@lists.linux-foundation.org
8990S: Supported
8991F: arch/x86/xen/
8992F: drivers/*/xen-*front.c
8993F: drivers/xen/
8994F: arch/x86/include/asm/xen/
8995F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008996F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008997
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008998XEN HYPERVISOR ARM
8999M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9000L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9001S: Supported
9002F: arch/arm/xen/
9003F: arch/arm/include/asm/xen/
9004
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009005XEN NETWORK BACKEND DRIVER
9006M: Ian Campbell <ian.campbell@citrix.com>
9007L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9008L: netdev@vger.kernel.org
9009S: Supported
9010F: drivers/net/xen-netback/*
9011
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009012XEN PCI SUBSYSTEM
9013M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009014L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009015S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009016F: arch/x86/pci/*xen*
9017F: drivers/pci/*xen*
9018
9019XEN SWIOTLB SUBSYSTEM
9020M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009021L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009022S: Supported
9023F: arch/x86/xen/*swiotlb*
9024F: drivers/xen/*swiotlb*
9025
Linus Torvalds1da177e2005-04-16 15:20:36 -07009026XFS FILESYSTEM
9027P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009028M: Ben Myers <bpm@sgi.com>
9029M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009030M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009031L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009032W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009033T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009035F: Documentation/filesystems/xfs.txt
9036F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009037
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009038XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009039M: Anirudha Sarangi <anirudh@xilinx.com>
9040M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009041S: Maintained
9042F: drivers/net/ethernet/xilinx/xilinx_axienet*
9043
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009044XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009045M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009046W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009048F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009049
Peter Korsgaard238b8722006-12-06 20:35:17 -08009050XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009051M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009052L: linux-serial@vger.kernel.org
9053S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009054F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009055
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009057M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009058L: linux-hams@vger.kernel.org
9059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009060F: drivers/net/hamradio/yam*
9061F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062
Henkaf64a5e2005-10-12 15:02:56 +02009063YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009064M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009065L: usbb2k-api-dev@nongnu.org
9066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009067F: Documentation/input/yealink.txt
9068F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009069
Linus Torvalds1da177e2005-04-16 15:20:36 -07009070Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009071M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009072W: http://yaina.de/jreuter/
9073W: http://www.qsl.net/dl1bke/
9074L: linux-hams@vger.kernel.org
9075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009076F: Documentation/networking/z8530drv.txt
9077F: drivers/net/hamradio/*scc.c
9078F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009080ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009081M: Daniel Drake <dsd@gentoo.org>
9082M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009083W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009084L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009085L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009087F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009088
Linus Torvalds1da177e2005-04-16 15:20:36 -07009089ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009090L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009091L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009092W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009093T: Mercurial http://linuxtv.org/hg/v4l-dvb
9094S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009095F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009096
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009097ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009098M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009099S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009100F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009101
Linus Torvalds1da177e2005-04-16 15:20:36 -07009102THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009103M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009104L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009105Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009106T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009107S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009108F: *
9109F: */