blob: 74e58a4d035b953fe2aa28f86b1cab87249a3223 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
Stephen Warreneb90d082013-02-27 17:02:53 -0800100 patch or file, or an affected filename. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700101 K: of_get_profile
Stephen Warreneb90d082013-02-27 17:02:53 -0800102 matches patch or file content, or filenames, that contain
103 "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: \b(printk|pr_(info|err))\b
Stephen Warreneb90d082013-02-27 17:02:53 -0800105 matches patch or file content, or filenames, that contain one or
106 more of the words printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700107 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109Note: For the hard of thinking, this list is meant to remain in alphabetical
110order. If you could add yourselves to it in alphabetical order that would be
111so much easier [Ed]
112
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700113Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700116
Steffen Klasserta6d89912007-08-10 14:05:27 -07001173C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700118M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700119L: netdev@vger.kernel.org
120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700121F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700122F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700125M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700126L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700128F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
adam radfordc4de0ce2010-03-08 12:40:36 -08001303WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
131M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800133W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800135F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
13753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700138M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139L: linux-scsi@vger.kernel.org
140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700141F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
1436PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700144M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145L: linux-hams@vger.kernel.org
146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700147F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700150M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700151M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700152L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700154F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
1568250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800157M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158L: linux-serial@vger.kernel.org
159W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700160S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700161T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800162F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700163F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700166L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000167S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700168F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001709P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700171M: Eric Van Hensbergen <ericvh@gmail.com>
172M: Ron Minnich <rminnich@sandia.gov>
173M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100174L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500175W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800176Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800177T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: Documentation/filesystems/9p.txt
180F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800181
Antti Palosaari91952bc2012-10-01 12:28:46 -0300182A8293 MEDIA DRIVER
183M: Antti Palosaari <crope@iki.fi>
184L: linux-media@vger.kernel.org
185W: http://linuxtv.org/
186W: http://palosaari.fi/linux/
187Q: http://patchwork.linuxtv.org/project/linux-media/list/
188T: git git://linuxtv.org/anttip/media_tree.git
189S: Maintained
190F: drivers/media/dvb-frontends/a8293*
191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700192AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194L: linux-scsi@vger.kernel.org
195W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700197F: Documentation/scsi/aacraid.txt
198F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100201M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202L: lm-sensors@lm-sensors.org
203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700204F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700207M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700213M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214L: linux-acenic@sunsite.dk
215S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700216F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Feuerere86435e2009-06-21 18:53:03 +0200218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700219M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500220L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700221W: http://piie.net/?section=acerhdf
222S: Maintained
223F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800226M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700229F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700232M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200233M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500234L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400235W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800236Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400237T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/acpi/
240F: drivers/pnp/pnpacpi/
241F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700242F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500243
Len Brown8b59a452007-01-08 19:03:28 -0500244ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500246L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300247W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700249F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown8b59a452007-01-08 19:03:28 -0500251ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700252M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500253L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300254W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700256F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700257
Len Brown359acec2007-02-10 01:59:24 -0500258ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700259M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500260L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300261W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500262S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700263F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500264
Carlos Corbachobff431e2008-02-05 02:17:04 +0000265ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500266L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100267S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000269
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100270AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700271M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200272W: http://wiki.parisc-linux.org/AD1889
273L: linux-parisc@vger.kernel.org
274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700275F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100276
Michael Hennerich527a1a82010-10-28 11:31:28 +0000277AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
278M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100279L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700280W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000281S: Supported
282F: drivers/misc/ad525x_dpot.c
283
284AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
285M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100286L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700287W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000288S: Supported
289F: drivers/regulator/ad5398.c
290
291AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
292M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100293L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700294W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000295S: Supported
296F: drivers/input/misc/ad714x.c
297
298AD7877 TOUCHSCREEN DRIVER
299M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100300L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700301W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000302S: Supported
303F: drivers/input/touchscreen/ad7877.c
304
305AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
306M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100307L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700308W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000309S: Supported
310F: drivers/input/touchscreen/ad7879.c
311
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700312ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
313M: Jiri Kosina <jkosina@suse.cz>
314S: Maintained
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700317M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200318L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700320F: Documentation/hwmon/adm1025
321F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Corentin Labbecae2caa2007-02-14 21:15:04 +0100323ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325L: lm-sensors@lm-sensors.org
326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328
Michael Wucc0b88c2007-08-31 01:15:25 -0400329ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400330L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200331W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700333F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400334
Sakari Ailuse8e31622012-11-12 18:14:39 -0300335ADP1653 FLASH CONTROLLER DRIVER
336M: Sakari Ailus <sakari.ailus@iki.fi>
337L: linux-media@vger.kernel.org
338S: Maintained
339F: drivers/media/i2c/adp1653.c
340F: include/media/adp1653.h
341
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100344L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700345W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000346S: Supported
347F: drivers/mfd/adp5520.c
348F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700349F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800350F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351F: drivers/input/keyboard/adp5520-keys.c
352
353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100355L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700356W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000357S: Supported
358F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800359F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100363L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700364W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365S: Supported
366F: drivers/video/backlight/adp8860_bl.c
367
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100368ADS1015 HARDWARE MONITOR DRIVER
369M: Dirk Eibach <eibach@gdsys.de>
370L: lm-sensors@lm-sensors.org
371S: Maintained
372F: Documentation/hwmon/ads1015
373F: drivers/hwmon/ads1015.c
374F: include/linux/i2c/ads1015.h
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700377M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700379F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Jean Delvareb058b852009-12-09 20:36:08 +0100381ADT7475 HARDWARE MONITOR DRIVER
382M: Jean Delvare <khali@linux-fr.org>
383L: lm-sensors@lm-sensors.org
384S: Maintained
385F: Documentation/hwmon/adt7475
386F: drivers/hwmon/adt7475.c
387
Michael Hennerich527a1a82010-10-28 11:31:28 +0000388ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
389M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100390L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700391W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000392S: Supported
393F: drivers/input/misc/adxl34x.c
394
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: Documentation/scsi/advansys.txt
400F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700403M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700405F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Antti Palosaari91952bc2012-10-01 12:28:46 -0300407AF9013 MEDIA DRIVER
408M: Antti Palosaari <crope@iki.fi>
409L: linux-media@vger.kernel.org
410W: http://linuxtv.org/
411W: http://palosaari.fi/linux/
412Q: http://patchwork.linuxtv.org/project/linux-media/list/
413T: git git://linuxtv.org/anttip/media_tree.git
414S: Maintained
415F: drivers/media/dvb-frontends/af9013*
416
417AF9033 MEDIA DRIVER
418M: Antti Palosaari <crope@iki.fi>
419L: linux-media@vger.kernel.org
420W: http://linuxtv.org/
421W: http://palosaari.fi/linux/
422Q: http://patchwork.linuxtv.org/project/linux-media/list/
423T: git git://linuxtv.org/anttip/media_tree.git
424S: Maintained
425F: drivers/media/dvb-frontends/af9033*
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200428L: linux-fsdevel@vger.kernel.org
429S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700430F: Documentation/filesystems/affs.txt
431F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700434M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700435L: linux-afs@lists.infradead.org
436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700437F: fs/afs/
438F: include/net/af_rxrpc.h
439F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700443T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700445F: drivers/char/agp/
446F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800447F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451L: linux-scsi@vger.kernel.org
452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700453F: drivers/scsi/aha152x*
454F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Hannes Reinecke64624d42007-10-19 10:32:29 +0200456AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700457M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200458L: linux-scsi@vger.kernel.org
459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700460F: drivers/scsi/aic7xxx/
461F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462
Hans Verkuil450500a2012-11-23 07:11:33 -0300463AIMSLAB FM RADIO RECEIVER DRIVER
464M: Hans Verkuil <hverkuil@xs4all.nl>
465L: linux-media@vger.kernel.org
466T: git git://linuxtv.org/media_tree.git
467W: http://linuxtv.org
468S: Maintained
469F: drivers/media/radio/radio-aimslab*
470
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700471AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700472M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473L: linux-aio@kvack.org
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: fs/aio.c
476F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700479M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700480L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481W: http://www.linux-usb.org/SpeedTouch/
482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/usb/atm/speedtch.c
484F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Pierre Ossman272f1332007-05-14 21:25:26 +0200486ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700487M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700489F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200490
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000491ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100493L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: Documentation/i2c/busses/i2c-ali1563
496F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700500M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500501M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700502S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700503L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700504F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Tobias Klauseradf92512011-02-09 10:58:29 +0100506ALTERA UART/JTAG UART SERIAL DRIVERS
507M: Tobias Klauser <tklauser@distanz.ch>
508L: linux-serial@vger.kernel.org
509L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
510S: Maintained
511F: drivers/tty/serial/altera_uart.c
512F: drivers/tty/serial/altera_jtaguart.c
513F: include/linux/altera_uart.h
514F: include/linux/altera_jtaguart.h
515
Andreas Herrmann512d1022011-05-25 20:43:31 +0200516AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100517M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200518L: lm-sensors@lm-sensors.org
519S: Maintained
520F: Documentation/hwmon/fam15h_power
521F: drivers/hwmon/fam15h_power.c
522
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700523AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700524M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700525L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700527F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528
Jordan Crousef90b8112006-01-06 00:12:14 -0800529AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800530P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700531L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800532W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700534F: drivers/char/hw_random/geode-rng.c
535F: drivers/crypto/geode*
536F: drivers/video/geode/
537F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800538
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200539AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200540M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200541L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100542T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200543S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800544F: drivers/iommu/amd_iommu*.[ch]
545F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200546
Peter Orubae7f5b302008-07-28 18:44:11 +0200547AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100548M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700549L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200552
Stelian Pop284f42b2006-12-12 18:18:31 +0100553AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700554M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100555S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200556F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100557
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Tom Tucker <tom@opengridcomputing.com>
560M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700561L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700564
Hans Verkuil531fca12012-11-23 06:53:24 -0300565ANALOG DEVICES INC AD9389B DRIVER
566M: Hans Verkuil <hans.verkuil@cisco.com>
567L: linux-media@vger.kernel.org
568S: Maintained
569F: drivers/media/i2c/ad9389b*
570
571ANALOG DEVICES INC ADV7604 DRIVER
572M: Hans Verkuil <hans.verkuil@cisco.com>
573L: linux-media@vger.kernel.org
574S: Maintained
575F: drivers/media/i2c/adv7604*
576
Michael Hennerich527a1a82010-10-28 11:31:28 +0000577ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200578M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100579L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000580L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700581W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100583F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200584F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000585F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000586F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100587F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000588
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400589ANALOG DEVICES INC ASOC DRIVERS
590L: uclinux-dist-devel@blackfin.uclinux.org
591L: alsa-devel@alsa-project.org (moderated for non-subscribers)
592W: http://blackfin.uclinux.org/
593S: Supported
594F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400595
Johannes Berg42269062006-07-25 16:15:50 +0200596AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000598L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700599L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700601F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200604M: Jiri Kosina <jkosina@suse.cz>
605S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700606F: arch/x86/kernel/apm_32.c
607F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800608F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200609F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700611APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700612M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700613L: linux-input@vger.kernel.org
614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700617APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200618M: Henrik Rydberg <rydberg@euromail.se>
619L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700626F: drivers/net/appletalk/
627F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Viresh Kumara4801672011-02-22 15:46:07 +0530629ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700630M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530631L: linux-ide@vger.kernel.org
632S: Maintained
633F: include/linux/pata_arasan_cf_data.h
634F: drivers/ata/pata_arasan_cf.c
635
Jaya Kumar1154ea72005-06-21 17:17:04 -0700636ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700637M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700639F: drivers/video/arcfb.c
640F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700645F: arch/arm/lib/floppydma.S
646F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Will Deacon6f965212011-07-01 14:38:53 +0100648ARM PMU PROFILING AND DEBUGGING
649M: Will Deacon <will.deacon@arm.com>
650S: Maintained
651F: arch/arm/kernel/perf_event*
652F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100653F: arch/arm/include/asm/pmu.h
654F: arch/arm/kernel/hw_breakpoint.c
655F: arch/arm/include/asm/hw_breakpoint.h
656
Russell Kingd4275352009-04-16 14:05:27 +0100657ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700658M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700659L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100660W: http://www.arm.linux.org.uk/
661S: Maintained
662F: arch/arm/
663
Stephen Boydd323c2432012-10-24 11:00:29 -0700664ARM SUB-ARCHITECTURES
665L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800666S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700667F: arch/arm/mach-*/
668F: arch/arm/plat-*/
669T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
670
Russell Kingcefbf4e2009-11-22 17:40:28 +0000671ARM PRIMECELL AACI PL041 DRIVER
672M: Russell King <linux@arm.linux.org.uk>
673S: Maintained
674F: sound/arm/aaci.*
675
676ARM PRIMECELL CLCD PL110 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/video/amba-clcd.*
680
681ARM PRIMECELL KMI PL050 DRIVER
682M: Russell King <linux@arm.linux.org.uk>
683S: Maintained
684F: drivers/input/serio/ambakmi.*
685F: include/linux/amba/kmi.h
686
Russell King2761f5c2007-05-24 06:56:08 +0200687ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000688M: Russell King <linux@arm.linux.org.uk>
689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700690F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000691F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200692
Russell King1b4304e2013-02-11 15:26:27 +0000693ARM PRIMECELL UART PL010 AND PL011 DRIVERS
694M: Russell King <linux@arm.linux.org.uk>
695S: Maintained
696F: drivers/tty/serial/amba-pl01*.c
697F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800698
Russell Kingcefbf4e2009-11-22 17:40:28 +0000699ARM PRIMECELL BUS SUPPORT
700M: Russell King <linux@arm.linux.org.uk>
701S: Maintained
702F: drivers/amba/
703F: include/linux/amba/bus.h
704
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708S: Maintained
709
Sergey Lapin9c784f92008-08-03 02:29:48 +0100710ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100713S: Maintained
714
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800715ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718S: Maintained
719
Maxime Ripard1b106692012-11-15 21:51:26 +0100720ARM/Allwinner A1X SoC support
721M: Maxime Ripard <maxime.ripard@free-electrons.com>
722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
723S: Maintained
724F: arch/arm/mach-sunxi/
725
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800726ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700727M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800728M: Nicolas Ferre <nicolas.ferre@atmel.com>
729M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700730L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200731W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800732W: http://www.linux4sam.org
733S: Supported
734F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100735
Rob Herring986cf2e2011-06-22 11:28:53 -0500736ARM/CALXEDA HIGHBANK ARCHITECTURE
737M: Rob Herring <rob.herring@calxeda.com>
738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S: Maintained
740F: arch/arm/mach-highbank/
741
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300742ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
743M: Anton Vorontsov <avorontsov@mvista.com>
744S: Maintained
745F: arch/arm/mach-cns3xxx/
746T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
747
Alexander Shiyan386ab512012-11-17 17:57:24 +0400748ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
749M: Alexander Shiyan <shc_work@mail.ru>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Odd Fixes
752F: arch/arm/mach-clps711x/
753
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800754ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100755M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000756M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700757L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100759F: arch/arm/mach-ep93xx/
760F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761
762ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700763M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800765S: Maintained
766
Russell Kingd4275352009-04-16 14:05:27 +0100767ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700770S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100771F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700772F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100773
Mike Rapoportd48134e2008-08-20 09:03:26 +0100774ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100777S: Maintained
778
Hubert Feurstein94150092009-10-07 08:36:07 +0100779ARM/CONTEC MICRO9 MACHINE SUPPORT
780M: Hubert Feurstein <hubert.feurstein@contec.at>
781S: Maintained
782F: arch/arm/mach-ep93xx/micro9.c
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700785M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786S: Maintained
787
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200788ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100789M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100791T: git git://git.berlios.de/gemini-board
792S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300793F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200794
Barry Songa990cbd2011-07-12 21:44:10 +0800795ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
796M: Barry Song <baohua.song@csr.com>
797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S: Maintained
799F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800800F: drivers/dma/sirf-dma.c
801F: drivers/i2c/busses/i2c-sirf.c
802F: drivers/pinctrl/pinctrl-sirf.c
803F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700811F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100812
Russell Kinga9da4f72008-07-12 21:42:04 +0100813ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Daniel Ribeiro <drwyrm@gmail.com>
815M: Stefan Schmidt <stefan@openezx.org>
816M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200817L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100818W: http://www.openezx.org/
819S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200820T: topgit git://git.openezx.org/openezx.git
821F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100822
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200823ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100824M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300828F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200829
Russell Kingd4275352009-04-16 14:05:27 +0100830ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700831M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100833W: http://www.arm.linux.org.uk/
834S: Maintained
835F: arch/arm/include/asm/hardware/dec21285.h
836F: arch/arm/mach-footbridge/
837
Sascha Hauer86183a52008-07-24 23:50:35 +0200838ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700839M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200841S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700842T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100843F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700844F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200845
Shawn Guo8bcb9762011-10-07 22:24:18 +0800846ARM/FREESCALE IMX6
847M: Shawn Guo <shawn.guo@linaro.org>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S: Maintained
850T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
851F: arch/arm/mach-imx/*imx6*
852
Shawn Guoa9866a092011-10-21 11:53:34 +0800853ARM/FREESCALE MXS ARM ARCHITECTURE
854M: Shawn Guo <shawn.guo@linaro.org>
855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
856S: Maintained
857T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
858F: arch/arm/mach-mxs/
859
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800863S: Maintained
864
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100865ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100868S: Maintained
869
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200870ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100872M: Paul Parsons <lost.distance@yahoo.com>
873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200874S: Maintained
875F: arch/arm/mach-pxa/hx4700.c
876F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100877F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200878
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100879ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200881W: www.jlime.com
882S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700883T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
884F: arch/arm/mach-sa1100/jornada720.c
885F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100886
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200887ARM/IGEP MACHINE SUPPORT
888M: Enric Balletbo i Serra <eballetbo@gmail.com>
889M: Javier Martinez Canillas <javier@dowhile0.org>
890L: linux-omap@vger.kernel.org
891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892S: Maintained
893F: arch/arm/mach-omap2/board-igep0020.c
894
Marek Vasut403d2972010-05-22 00:29:39 +0200895ARM/INCOME PXA270 SUPPORT
896M: Marek Vasut <marek.vasut@gmail.com>
897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
898S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700899F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700903M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700904L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700905S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100906
907ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700908M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700910S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911
912ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700914M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700916S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800917
918ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200929ARM/INTEL IXP4XX ARM ARCHITECTURE
930M: Imre Kaloz <kaloz@openwrt.org>
931M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200933S: Maintained
934F: arch/arm/mach-ixp4xx/
935
Joe Perches838553c2010-10-26 14:22:59 -0700936ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100937M: Jonathan Cameron <jic23@cam.ac.uk>
938L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939S: Maintained
940F: arch/arm/mach-pxa/stargate2.c
941F: drivers/pcmcia/pxa2xx_stargate2.c
942
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700945M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700947S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948
949ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700950M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800952S: Maintained
953
954ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700955M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700956L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957S: Maintained
958
Philipp Zabel3b8861712008-07-09 21:27:15 +0100959ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700960M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100961S: Maintained
962
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200963ARM/Marvell Armada 370 and Armada XP SOC support
964M: Jason Cooper <jason@lakedaemon.net>
965M: Andrew Lunn <andrew@lunn.ch>
966M: Gregory Clement <gregory.clement@free-electrons.com>
967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968S: Maintained
969F: arch/arm/mach-mvebu/
970
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400971ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
972M: Jason Cooper <jason@lakedaemon.net>
973M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400975S: Maintained
976F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400977F: arch/arm/mach-kirkwood/
978F: arch/arm/mach-mv78xx0/
979F: arch/arm/mach-orion5x/
980F: arch/arm/plat-orion/
981
Alexander Clouterd69ac132011-04-14 15:22:02 -0700982ARM/Orion SoC/Technologic Systems TS-78xx platform support
983M: Alexander Clouter <alex@digriz.org.uk>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985W: http://www.digriz.org.uk/ts78xx/kernel
986S: Maintained
987F: arch/arm/mach-orion5x/ts78xx-*
988
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000989ARM/MICREL KS8695 ARCHITECTURE
990M: Greg Ungerer <gerg@uclinux.org>
991L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992F: arch/arm/mach-ks8695
993S: Odd Fixes
994
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200995ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700996M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700997L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200998F: arch/arm/mach-pxa/mioa701.c
999S: Maintained
1000
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001001ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001003S: Maintained
1004
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001005ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001006M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001007M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001008M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1009L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010S: Maintained
1011F: arch/arm/mach-nomadik/
1012F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001013F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001014T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001015
Andy Green9d762952009-05-19 06:41:42 -03001016ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001018L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1019W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1020S: Supported
1021
Daniel Walker0c19d212009-12-07 16:53:51 -08001022ARM/QUALCOMM MSM MACHINE SUPPORT
1023M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001024M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001025M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001026L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001027F: arch/arm/mach-msm/
1028F: drivers/video/msm/
1029F: drivers/mmc/host/msm_sdcc.c
1030F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001031F: drivers/tty/serial/msm_serial.h
1032F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001033F: drivers/*/pm8???-*
1034F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001035T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001036S: Maintained
1037
Dirk Opfer8459c152005-11-06 14:27:52 +00001038ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1040M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001041S: Maintained
1042
Marek Vasut5d783a22009-07-16 13:26:48 +02001043ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001044M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001045L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001046W: http://hackndev.com
1047S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001048F: arch/arm/mach-pxa/include/mach/palmtx.h
1049F: arch/arm/mach-pxa/palmtx.c
1050F: arch/arm/mach-pxa/include/mach/palmt5.h
1051F: arch/arm/mach-pxa/palmt5.c
1052F: arch/arm/mach-pxa/include/mach/palmld.h
1053F: arch/arm/mach-pxa/palmld.c
1054F: arch/arm/mach-pxa/include/mach/palmte2.h
1055F: arch/arm/mach-pxa/palmte2.c
1056F: arch/arm/mach-pxa/include/mach/palmtc.h
1057F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001058
Joe Perchesb57fe922009-12-14 18:00:52 -08001059ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001061L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001062W: http://hackndev.com
1063S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001064F: arch/arm/mach-pxa/include/mach/palmtreo.h
1065F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001066
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001067ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001069L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001070W: http://hackndev.com
1071S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001072F: arch/arm/mach-pxa/include/mach/palmz72.h
1073F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001076M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1078S: Maintained
1079
1080ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001082L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083W: http://www.arm.linux.org.uk/
1084S: Maintained
1085
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001086ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001087M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001088L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001089S: Maintained
1090
Russell Kingd4275352009-04-16 14:05:27 +01001091ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001093L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001094W: http://www.arm.linux.org.uk/
1095S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001096F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1097F: arch/arm/include/asm/hardware/ioc.h
1098F: arch/arm/include/asm/hardware/iomd.h
1099F: arch/arm/include/asm/hardware/memc.h
1100F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001101F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001102F: drivers/net/ethernet/i825xx/ether1*
1103F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001104F: drivers/scsi/arm/
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108W: http://www.shark-linux.de/shark.html
1109S: Maintained
1110
Ben Dooksb21477f2009-06-13 10:46:34 +01001111ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001112M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001116W: http://www.fluff.org/ben/linux/
1117S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001118F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001119F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001120F: arch/arm/mach-s3c24*/
1121F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001122F: drivers/*/*s3c2410*
1123F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001124F: drivers/spi/spi-s3c*
1125F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001127ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001128M: Kukjin Kim <kgene.kim@samsung.com>
1129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1131S: Maintained
1132F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001133F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001134
Kyungmin Park10ffa962011-03-04 17:36:26 -08001135ARM/SAMSUNG MOBILE MACHINE SUPPORT
1136M: Kyungmin Park <kyungmin.park@samsung.com>
1137L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S: Maintained
1139F: arch/arm/mach-s5pv210/mach-aquila.c
1140F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001141F: arch/arm/mach-exynos/mach-universal_c210.c
1142F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001143
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001144ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1145M: Kyungmin Park <kyungmin.park@samsung.com>
1146M: Kamil Debski <k.debski@samsung.com>
1147L: linux-arm-kernel@lists.infradead.org
1148L: linux-media@vger.kernel.org
1149S: Maintained
1150F: drivers/media/platform/s5p-g2d/
1151
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001152ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1153M: Kyungmin Park <kyungmin.park@samsung.com>
1154M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1155L: linux-arm-kernel@lists.infradead.org
1156L: linux-media@vger.kernel.org
1157S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001158F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001159F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001160
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001161ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1162M: Kyungmin Park <kyungmin.park@samsung.com>
1163M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001164M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001165L: linux-arm-kernel@lists.infradead.org
1166L: linux-media@vger.kernel.org
1167S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001168F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001169F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001170
1171ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1172M: Kyungmin Park <kyungmin.park@samsung.com>
1173M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1174L: linux-arm-kernel@lists.infradead.org
1175L: linux-media@vger.kernel.org
1176S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001177F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001178
Paul Mundtd48d38e2010-02-08 12:50:24 +09001179ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001180M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001181M: Magnus Damm <magnus.damm@gmail.com>
1182L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001184Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001185T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186S: Supported
1187F: arch/arm/mach-shmobile/
1188F: drivers/sh/
1189
Dinh Nguyen66314222012-07-18 16:07:18 -06001190ARM/SOCFPGA ARCHITECTURE
1191M: Dinh Nguyen <dinguyen@altera.com>
1192S: Maintained
1193F: arch/arm/mach-socfpga/
1194
1195ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1196M: Dinh Nguyen <dinguyen@altera.com>
1197S: Maintained
1198F: drivers/clk/socfpga/
1199
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001200ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001201M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001203S: Maintained
1204
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001205ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001206M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208S: Maintained
1209
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001211M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001213S: Maintained
1214
wanzongshun98ad6e32009-02-13 06:04:32 +01001215ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001216M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001218W: http://www.mcuos.com
1219S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001220F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001221F: drivers/input/keyboard/w90p910_keypad.c
1222F: drivers/input/touchscreen/w90p910_ts.c
1223F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001224F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001225F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001226F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001227F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001228F: drivers/usb/host/ehci-w90x900.c
1229F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001230
Linus Walleij54274d72010-04-04 10:58:03 +01001231ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001232M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S: Supported
1235F: arch/arm/mach-u300/
1236F: drivers/i2c/busses/i2c-stu300.c
1237F: drivers/rtc/rtc-coh901331.c
1238F: drivers/watchdog/coh901327_wdt.c
1239F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001240F: drivers/mfd/ab3100*
1241F: drivers/rtc/rtc-ab3100.c
1242F: drivers/rtc/rtc-coh901331.c
1243T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001244
Linus Walleij87572882010-12-22 09:18:29 +01001245ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001246M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001247M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001251F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001252F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001253F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001254F: drivers/mfd/abx500*
1255F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/mfd/dbx500*
1257F: drivers/mfd/db8500*
1258F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001259F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001260F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001261T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001262
Russell Kingd4275352009-04-16 14:05:27 +01001263ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001264M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001265L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001266W: http://www.arm.linux.org.uk/
1267S: Maintained
1268F: arch/arm/vfp/
1269
Marek Vasute66b6d82010-03-26 06:51:32 +01001270ARM/VOIPAC PXA270 SUPPORT
1271M: Marek Vasut <marek.vasut@gmail.com>
1272L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273S: Maintained
1274F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001275F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001276
Tony Prisk04529fe2012-07-24 04:19:37 +12001277ARM/VT8500 ARM ARCHITECTURE
1278M: Tony Prisk <linux@prisktech.co.nz>
1279L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280S: Maintained
1281F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001282F: drivers/clocksource/vt8500_timer.c
1283F: drivers/gpio/gpio-vt8500.c
1284F: drivers/mmc/host/wmt-sdmmc.c
1285F: drivers/pwm/pwm-vt8500.c
1286F: drivers/rtc/rtc-vt8500.c
1287F: drivers/tty/serial/vt8500_serial.c
1288F: drivers/usb/host/ehci-vt8500.c
1289F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001290F: drivers/video/vt8500lcdfb.*
1291F: drivers/video/wm8505fb*
1292F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001293
Marek Vasute66b6d82010-03-26 06:51:32 +01001294ARM/ZIPIT Z2 SUPPORT
1295M: Marek Vasut <marek.vasut@gmail.com>
1296L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297S: Maintained
1298F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001299F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001300
Michal Simek51f29d42013-01-21 17:41:46 +01001301ARM/ZYNQ ARCHITECTURE
1302M: Michal Simek <michal.simek@xilinx.com>
1303L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304W: http://wiki.xilinx.com
1305T: git git://git.xilinx.com/linux-xlnx.git
1306S: Supported
1307F: arch/arm/mach-zynq/
1308
Catalin Marinas38074222012-03-05 11:49:34 +00001309ARM64 PORT (AARCH64 ARCHITECTURE)
1310M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001311M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001312L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313S: Maintained
1314F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001315F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001316
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001317AS3645A LED FLASH CONTROLLER DRIVER
1318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1319L: linux-media@vger.kernel.org
1320T: git git://linuxtv.org/media_tree.git
1321S: Maintained
1322F: drivers/media/i2c/as3645a.c
1323F: include/media/as3645a.h
1324
George Josephd58de032010-03-05 22:17:25 +01001325ASC7621 HARDWARE MONITOR DRIVER
1326M: George Joseph <george.joseph@fairview5.com>
1327L: lm-sensors@lm-sensors.org
1328S: Maintained
1329F: Documentation/hwmon/asc7621
1330F: drivers/hwmon/asc7621.c
1331
Corentin Charyb229ece2011-02-26 10:20:40 +01001332ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001333M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001335L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001336W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001338F: drivers/platform/x86/asus*.c
1339F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Andrew Morton953a6472008-11-06 12:53:28 -08001341ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001342M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001343W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001345F: Documentation/crypto/async-tx-api.txt
1346F: crypto/async_tx/
1347F: drivers/dma/
1348F: include/linux/dmaengine.h
1349F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001350
Wolfram Sanga1867d32009-09-18 22:45:51 +02001351AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001352M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001353L: linux-i2c@vger.kernel.org
1354S: Maintained
1355F: drivers/misc/eeprom/at24.c
1356F: include/linux/i2c/at24.h
1357
Randy Dunlape7839f22008-10-12 16:11:45 -07001358ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001360W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: Documentation/aoe/
1363F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Joe Perches9a10a872010-12-01 09:37:55 -08001365ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001366M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001367L: linux-wireless@vger.kernel.org
1368S: Supported
1369F: drivers/net/wireless/ath/*
1370
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001371ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Jiri Slaby <jirislaby@gmail.com>
1373M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001374M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001375L: linux-wireless@vger.kernel.org
1376L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001377W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001378S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001379F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001380
Kalle Valo12e62d62011-09-13 10:21:25 +03001381ATHEROS ATH6KL WIRELESS DRIVER
1382M: Kalle Valo <kvalo@qca.qualcomm.com>
1383L: linux-wireless@vger.kernel.org
1384W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1385T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1386S: Supported
1387F: drivers/net/wireless/ath/ath6kl/
1388
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001390M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1391M: Jouni Malinen <jouni@qca.qualcomm.com>
1392M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1393M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394L: linux-wireless@vger.kernel.org
1395L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001396W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001398F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001400WILOCITY WIL6210 WIRELESS DRIVER
1401M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1402L: linux-wireless@vger.kernel.org
1403L: wil6210@qca.qualcomm.com
1404S: Supported
1405W: http://wireless.kernel.org/en/users/Drivers/wil6210
1406F: drivers/net/wireless/ath/wil6210/
1407
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001408CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1409M: Christian Lamparter <chunkeey@googlemail.com>
1410L: linux-wireless@vger.kernel.org
1411W: http://wireless.kernel.org/en/users/Drivers/carl9170
1412S: Maintained
1413F: drivers/net/wireless/ath/carl9170/
1414
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001415ATK0110 HWMON DRIVER
1416M: Luca Tettamanti <kronos.it@gmail.com>
1417L: lm-sensors@lm-sensors.org
1418S: Maintained
1419F: drivers/hwmon/asus_atk0110.c
1420
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001421ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001422M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001425
Chris Snook7ae115b2008-09-09 03:26:57 -04001426ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001428M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001429L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001430W: http://sourceforge.net/projects/atl1
1431W: http://atl1.sourceforge.net
1432S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001433F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001436M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001437L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001438L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439W: http://linux-atm.sourceforge.net
1440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/atm/
1442F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001443F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001445ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001446M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001447S: Maintained
1448F: drivers/mmc/host/atmel-mci.c
1449F: drivers/mmc/host/atmel-mci-regs.h
1450
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001451ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001452M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001453S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001454F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001455
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001456ATMEL DMA DRIVER
1457M: Nicolas Ferre <nicolas.ferre@atmel.com>
1458L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459S: Supported
1460F: drivers/dma/at_hdmac.c
1461F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001462F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001463
Ludovic Desroches888f2802013-03-15 05:32:57 +00001464ATMEL I2C DRIVER
1465M: Ludovic Desroches <ludovic.desroches@atmel.com>
1466L: linux-i2c@vger.kernel.org
1467S: Supported
1468F: drivers/i2c/busses/i2c-at91.c
1469
Josh Wu15515542012-03-23 17:56:29 +08001470ATMEL ISI DRIVER
1471M: Josh Wu <josh.wu@atmel.com>
1472L: linux-media@vger.kernel.org
1473S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001474F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001475F: include/media/atmel-isi.h
1476
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001477ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001479L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/video/atmel_lcdfb.c
1482F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001483
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001484ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001485M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001486S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001487F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001488
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001489ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001490M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001491S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001492F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001493
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001494ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1495M: Nicolas Ferre <nicolas.ferre@atmel.com>
1496L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497S: Supported
1498F: drivers/misc/atmel_tclib.c
1499F: drivers/clocksource/tcb_clksrc.c
1500
Josh Wuff2675d2012-03-23 17:56:55 +08001501ATMEL TSADCC DRIVER
1502M: Josh Wu <josh.wu@atmel.com>
1503L: linux-input@vger.kernel.org
1504S: Supported
1505F: drivers/input/touchscreen/atmel_tsadcc.c
1506
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001507ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001508M: Nicolas Ferre <nicolas.ferre@atmel.com>
1509L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001514M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001515L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516W: http://www.thekelleys.org.uk/atmel
1517W: http://atmelwlandriver.sourceforge.net/
1518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Chris Wrighta92b7b82005-07-07 18:12:23 -07001521AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001522M: Al Viro <viro@zeniv.linux.org.uk>
1523M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001524L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001525W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001526T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001529F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001530F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001531
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001532AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001533M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001534W: http://miguelojeda.es/auxdisplay.htm
1535W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001537F: drivers/auxdisplay/
1538F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001539
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001540AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001541M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1542M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001543W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001544W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001545W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001547F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548
1549AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001550M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1551M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001553F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001556M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001558W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001560F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001561F: include/net/ax25.h
1562F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001564AZ6007 DVB DRIVER
1565M: Mauro Carvalho Chehab <mchehab@redhat.com>
1566L: linux-media@vger.kernel.org
1567W: http://linuxtv.org
1568T: git git://linuxtv.org/media_tree.git
1569S: Maintained
1570F: drivers/media/usb/dvb-usb-v2/az6007.c
1571
Hans Verkuil67773762012-11-23 07:09:23 -03001572AZTECH FM RADIO RECEIVER DRIVER
1573M: Hans Verkuil <hverkuil@xs4all.nl>
1574L: linux-media@vger.kernel.org
1575T: git git://linuxtv.org/media_tree.git
1576W: http://linuxtv.org
1577S: Maintained
1578F: drivers/media/radio/radio-aztech*
1579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001581M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001583L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001584W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587
1588B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Larry Finger <Larry.Finger@lwfinger.net>
1590M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001592L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001593W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001596
Richard Purdie300abeb2007-02-07 22:21:07 +00001597BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/video/backlight/
1601F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001602
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001603BATMAN ADVANCED
1604M: Marek Lindner <lindner_marek@yahoo.de>
1605M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001606M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001607L: b.a.t.m.a.n@lists.open-mesh.org
1608W: http://www.open-mesh.org/
1609S: Maintained
1610F: net/batman-adv/
1611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001612BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614L: linux-hams@vger.kernel.org
1615W: http://www.baycom.org/~tom/ham/ham.html
1616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618
1619BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001620S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001621F: Documentation/filesystems/befs.txt
1622F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623
1624BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: Documentation/filesystems/bfs.txt
1628F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001629F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001630
Bryan Wu1394f032007-05-06 14:50:22 -07001631BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001633L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001634W: http://blackfin.uclinux.org
1635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001636F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001637
Bryan Wue190d6b2007-07-17 14:43:44 +08001638BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001639L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001640W: http://blackfin.uclinux.org
1641S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001642F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001643
Mike Frysinger566da5b2007-06-11 15:31:30 +08001644BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001646L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001647W: http://blackfin.uclinux.org
1648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001649F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001650
Mike Frysinger936ed492010-03-10 15:20:38 -08001651BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001652M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001653L: uclinux-dist-devel@blackfin.uclinux.org
1654W: http://blackfin.uclinux.org
1655S: Supported
1656F: drivers/mmc/host/bfin_sdh.c
1657
Bryan Wu1394f032007-05-06 14:50:22 -07001658BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001660L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001661W: http://blackfin.uclinux.org
1662S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001663F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001664
Bryan Wu1e6d3202007-07-15 02:50:02 +08001665BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001666M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001667L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001668W: http://blackfin.uclinux.org
1669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001670F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001671
Bryan Wud24ecfc2007-05-01 23:26:32 +02001672BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001674L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001675W: http://blackfin.uclinux.org/
1676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001677F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001678
Scott Jiang1e204372013-01-18 17:09:47 -03001679BLACKFIN MEDIA DRIVER
1680M: Scott Jiang <scott.jiang.linux@gmail.com>
1681L: uclinux-dist-devel@blackfin.uclinux.org
1682W: http://blackfin.uclinux.org/
1683S: Supported
1684F: drivers/media/platform/blackfin/
1685F: drivers/media/i2c/adv7183*
1686F: drivers/media/i2c/vs6624*
1687
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001688BLINKM RGB LED DRIVER
1689M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1690S: Maintained
1691F: drivers/leds/leds-blinkm.c
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001694M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001695T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001697F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Joern Engel2b54aae2008-02-06 01:38:02 -08001699BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001700M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001701L: linux-mtd@lists.infradead.org
1702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001703F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001704
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001705BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001707M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001708M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001709L: linux-bluetooth@vger.kernel.org
1710W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001711T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1712T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001718M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001719M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001720L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001721W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: net/bluetooth/
1726F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001729M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001730M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001731L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001732W: http://sourceforge.net/projects/bonding/
1733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001734F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001735F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Gary Zambrano39105892006-06-22 17:26:20 -07001737BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001738M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001739L: netdev@vger.kernel.org
1740S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001741F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001742
Michael Chan948c51e2006-06-04 02:51:39 -07001743BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001744M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001745L: netdev@vger.kernel.org
1746S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001747F: drivers/net/ethernet/broadcom/bnx2.*
1748F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001749
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001750BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001751M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001752L: netdev@vger.kernel.org
1753S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001754F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755
Stephen Warrenf680f252012-09-15 00:18:54 -06001756BROADCOM BCM2835 ARM ARCHICTURE
1757M: Stephen Warren <swarren@wwwdotorg.org>
1758L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1759T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1760S: Maintained
1761F: arch/arm/mach-bcm2835/
1762F: arch/arm/boot/dts/bcm2835*
1763F: arch/arm/configs/bcm2835_defconfig
1764F: drivers/*/*bcm2835*
1765
Michael Chan948c51e2006-06-04 02:51:39 -07001766BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Matt Carlson <mcarlson@broadcom.com>
1768M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001769L: netdev@vger.kernel.org
1770S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001771F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001772
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001773BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1774M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001775M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001776M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001777M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001778L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001779L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001780S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001781F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001782
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001783BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1784M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1785L: linux-scsi@vger.kernel.org
1786S: Supported
1787F: drivers/scsi/bnx2fc/
1788
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001789BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1790M: Rafał Miłecki <zajec5@gmail.com>
1791L: linux-wireless@vger.kernel.org
1792S: Maintained
1793F: drivers/bcma/
1794F: include/linux/bcma/
1795
Jing Huang7725ccf2009-09-23 17:46:15 -07001796BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001797M: Anil Gurumurthy <agurumur@brocade.com>
1798M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001799L: linux-scsi@vger.kernel.org
1800S: Supported
1801F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001802
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001803BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1804M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001805L: netdev@vger.kernel.org
1806S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001807F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001809BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001810M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001811L: linux-scsi@vger.kernel.org
1812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001813F: block/bsg.c
1814F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001815F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001816
Clemens Ladischaf399172011-01-10 16:32:54 +01001817BT87X AUDIO DRIVER
1818M: Clemens Ladisch <clemens@ladisch.de>
1819L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1820T: git git://git.alsa-project.org/alsa-kernel.git
1821S: Maintained
1822F: Documentation/sound/alsa/Bt87x.txt
1823F: sound/pci/bt87x.c
1824
Michael Bueschff1d5c22008-07-25 01:46:10 -07001825BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001826M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001827W: http://bu3sch.de/btgpio.php
1828S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001829F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830
Joe Percheseb1eb042009-01-21 10:49:16 -05001831BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001832M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001833L: linux-btrfs@vger.kernel.org
1834W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001835Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001836T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/filesystems/btrfs.txt
1839F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001842M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001843L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001844W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001845T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001846S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001848F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Clemens Ladischaf399172011-01-10 16:32:54 +01001850C-MEDIA CMI8788 DRIVER
1851M: Clemens Ladisch <clemens@ladisch.de>
1852L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1853T: git git://git.alsa-project.org/alsa-kernel.git
1854S: Maintained
1855F: sound/pci/oxygen/
1856
Mark Salter21413552011-10-04 11:21:42 -04001857C6X ARCHITECTURE
1858M: Mark Salter <msalter@redhat.com>
1859M: Aurelien Jacquiot <a-jacquiot@ti.com>
1860L: linux-c6x-dev@linux-c6x.org
1861W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1862S: Maintained
1863F: arch/c6x/
1864
David Howellsa5432f52009-04-20 15:46:45 +01001865CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001866M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001867L: linux-cachefs@redhat.com
1868S: Supported
1869F: Documentation/filesystems/caching/cachefiles.txt
1870F: fs/cachefiles/
1871
Hans Verkuilc815ca32012-11-23 07:05:54 -03001872CADET FM/AM RADIO RECEIVER DRIVER
1873M: Hans Verkuil <hverkuil@xs4all.nl>
1874L: linux-media@vger.kernel.org
1875T: git git://linuxtv.org/media_tree.git
1876W: http://linuxtv.org
1877S: Maintained
1878F: drivers/media/radio/radio-cadet*
1879
Jonathan Corbet77d51402007-03-22 19:44:17 -03001880CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001882L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001883T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001885F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001886F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001887
Joe Perches201b6ba2010-09-07 20:33:24 +00001888CAIF NETWORK LAYER
1889M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1890L: netdev@vger.kernel.org
1891S: Supported
1892F: Documentation/networking/caif/
1893F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001894F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001895F: include/net/caif/
1896F: net/caif/
1897
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001898CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001899M: Muli Ben-Yehuda <muli@il.ibm.com>
1900M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001901L: discuss@x86-64.org
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: arch/x86/kernel/pci-calgary_64.c
1904F: arch/x86/kernel/tce_64.c
1905F: arch/x86/include/asm/calgary.h
1906F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001907
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001908CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001909M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001910L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001911W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001912T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001913S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001914F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001915F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001916F: include/uapi/linux/can.h
1917F: include/uapi/linux/can/bcm.h
1918F: include/uapi/linux/can/raw.h
1919F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001920
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001921CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001923M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001924L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001925W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001926T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001927S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001928F: drivers/net/can/
1929F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001930F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001931F: include/uapi/linux/can/error.h
1932F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001933
James Morris95d16c72012-03-16 12:05:48 +11001934CAPABILITIES
1935M: Serge Hallyn <serge.hallyn@canonical.com>
1936L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001937S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001938F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001939F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001940F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001941F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001942F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001943
Arnd Bergmannb8154542008-05-16 11:10:59 +02001944CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001946L: linuxppc-dev@lists.ozlabs.org
1947L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001948W: http://www.ibm.com/developerworks/power/cell/
1949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001950F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001951F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001952F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001953F: arch/powerpc/oprofile/*cell*
1954F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001955
Sage Weil9030aaf2009-10-06 11:31:15 -07001956CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001957M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001958L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001959W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001960T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001961S: Supported
1962F: Documentation/filesystems/ceph.txt
1963F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001964F: net/ceph
1965F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001966F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001967
David Vrabel18332a82008-09-17 16:34:44 +01001968CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001969L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001970S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001971F: Documentation/usb/WUSB-Design-overview.txt
1972F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001973F: drivers/usb/host/hwa-hc.c
1974F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001975F: drivers/usb/wusbcore/
1976F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001977
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001978CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001980W: http://miguelojeda.es/auxdisplay.htm
1981W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/auxdisplay/cfag12864b.c
1984F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001985
1986CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001987M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001988W: http://miguelojeda.es/auxdisplay.htm
1989W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001991F: drivers/auxdisplay/cfag12864bfb.c
1992F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001993
Johannes Berg704232c2007-04-23 12:20:05 -07001994CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001995M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001996L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001997W: http://wireless.kernel.org/
1998T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1999T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002000S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002001F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002002F: include/net/cfg80211.h
2003F: net/wireless/*
2004X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002005
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002006CHAR and MISC DRIVERS
2007M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002008M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002009T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002010S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002011F: drivers/char/*
2012F: drivers/misc/*
2013
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002014CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002016M: Joe Perches <joe@perches.com>
2017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002019
Harry Weif8407f262011-02-25 14:44:15 -08002020CHINESE DOCUMENTATION
2021M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002022L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002023L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2024S: Maintained
2025F: Documentation/zh_CN/
2026
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002027CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2028M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2029L: linux-usb@vger.kernel.org
2030S: Maintained
2031F: drivers/usb/chipidea/
2032
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002033CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002034M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002035M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002036M: Neel Patel <neepatel@cisco.com>
2037M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002038S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002039F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002040
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002041CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002042M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002043L: netdev@vger.kernel.org
2044S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002045F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002047CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002049L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052
Timur Tabid9e9d822008-04-24 08:45:26 +10002053CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002054M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002055L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002056S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002057F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002058
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002059CLEANCACHE API
2060M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2061L: linux-kernel@vger.kernel.org
2062S: Maintained
2063F: mm/cleancache.c
2064F: include/linux/cleancache.h
2065
Russell Kingd4275352009-04-16 14:05:27 +01002066CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002067M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002068S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002069F: include/linux/clk.h
2070
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002071CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002072M: Hiral Patel <hiralpat@cisco.com>
2073M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002074M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002075L: linux-scsi@vger.kernel.org
2076S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002077F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002078
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002079CMPC ACPI DRIVER
2080M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2081M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002082L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002083S: Supported
2084F: drivers/platform/x86/classmate-laptop.c
2085
Nicolas Palix74425ee2010-06-06 17:15:01 +02002086COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002087M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002088M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002089M: Nicolas Palix <nicolas.palix@imag.fr>
2090L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091W: http://coccinelle.lip6.fr/
2092S: Supported
2093F: scripts/coccinelle/
2094F: scripts/coccicheck
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002097M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098M: coda@cs.cmu.edu
2099L: codalist@coda.cs.cmu.edu
2100W: http://www.coda.cs.cmu.edu/
2101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: Documentation/filesystems/coda.txt
2103F: fs/coda/
2104F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002105F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Mike Turquette7704add2012-05-02 18:37:45 -07002107COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002108M: Mike Turquette <mturquette@linaro.org>
2109L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2110T: git git://git.linaro.org/people/mturquette/linux.git
2111S: Maintained
2112F: drivers/clk/clk.c
2113F: drivers/clk/clk-*
2114F: include/linux/clk-pr*
2115
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002116COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002118L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002119L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002120W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002121Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002122T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002124F: Documentation/filesystems/cifs.txt
2125F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002129L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002134M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002135L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002141L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002143F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002145COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002147L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002150
Simon Arlott949be0f2007-03-06 02:47:46 -08002151CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002152M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002153L: accessrunner-general@lists.sourceforge.net
2154W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002158CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002159M: Joel Becker <jlbec@evilplan.org>
2160T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002162F: fs/configfs/
2163F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002165CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002166M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002167L: netdev@vger.kernel.org
2168S: Maintained
2169F: drivers/connector/
2170
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002171CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002172M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002173M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002174L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002175L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002176T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: include/linux/cgroup*
2179F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002180F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002181
Rudolf Marekbebe4672007-05-08 17:22:02 +02002182CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002183M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002184L: lm-sensors@lm-sensors.org
2185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/hwmon/coretemp
2187F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002190M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191W: http://www.fi.muni.cz/~kas/cosa/
2192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002193F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Florian Fainelli4371ee32009-06-01 02:43:17 -07002195CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002196M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002197L: netdev@vger.kernel.org
2198S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002199F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002202M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002203L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002204L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/cpufreq/
2207F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: arch/x86/kernel/cpuid.c
2213F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002215CPU POWER MONITORING SUBSYSTEM
2216M: Dominik Brodowski <linux@dominikbrodowski.net>
2217M: Thomas Renninger <trenn@suse.de>
2218S: Maintained
2219F: tools/power/cpupower
2220
Paul Jacksoned90fb42005-09-27 21:45:37 -07002221CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002222M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002223W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002224W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: Documentation/cgroups/cpusets.txt
2227F: include/linux/cpuset.h
2228F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002231W: http://sourceforge.net/projects/cramfs/
2232S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002233F: Documentation/filesystems/cramfs.txt
2234F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Mikael Starvik <starvik@axis.com>
2238M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002239L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://developer.axis.com
2241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002243F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Herbert Xu <herbert@gondor.apana.org.au>
2247M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002249T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: Documentation/crypto/
2252F: arch/*/crypto/
2253F: crypto/
2254F: drivers/crypto/
2255F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Neil Horman5b07bd52009-02-05 16:03:04 +11002257CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002258M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002259L: linux-crypto@vger.kernel.org
2260S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002261F: crypto/ansi_cprng.c
2262F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002263
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002264CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002268
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002269CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002270M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002271L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002272L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002273T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002274W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002275W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002278F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002279F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002280
Hans Verkuil3f101d92012-11-23 07:00:02 -03002281CX2341X MPEG ENCODER HELPER MODULE
2282M: Hans Verkuil <hverkuil@xs4all.nl>
2283L: linux-media@vger.kernel.org
2284T: git git://linuxtv.org/media_tree.git
2285W: http://linuxtv.org
2286S: Maintained
2287F: drivers/media/i2c/cx2341x*
2288F: include/media/cx2341x*
2289
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002290CX88 VIDEO4LINUX DRIVER
2291M: Mauro Carvalho Chehab <mchehab@redhat.com>
2292L: linux-media@vger.kernel.org
2293W: http://linuxtv.org
2294T: git git://linuxtv.org/media_tree.git
2295S: Odd fixes
2296F: Documentation/video4linux/cx88/
2297F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002298
Antti Palosaari91952bc2012-10-01 12:28:46 -03002299CXD2820R MEDIA DRIVER
2300M: Antti Palosaari <crope@iki.fi>
2301L: linux-media@vger.kernel.org
2302W: http://linuxtv.org/
2303W: http://palosaari.fi/linux/
2304Q: http://patchwork.linuxtv.org/project/linux-media/list/
2305T: git git://linuxtv.org/anttip/media_tree.git
2306S: Maintained
2307F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002308
Steve Wisee5ec3782008-05-20 14:06:33 -07002309CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002310M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002311L: netdev@vger.kernel.org
2312W: http://www.chelsio.com
2313S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002314F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002315
2316CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002318L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002319W: http://www.openfabrics.org
2320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002322
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002323CXGB4 ETHERNET DRIVER (CXGB4)
2324M: Dimitris Michailidis <dm@chelsio.com>
2325L: netdev@vger.kernel.org
2326W: http://www.chelsio.com
2327S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002328F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002329
2330CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2331M: Steve Wise <swise@chelsio.com>
2332L: linux-rdma@vger.kernel.org
2333W: http://www.openfabrics.org
2334S: Supported
2335F: drivers/infiniband/hw/cxgb4/
2336
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002337CXGB4VF ETHERNET DRIVER (CXGB4VF)
2338M: Casey Leedom <leedom@chelsio.com>
2339L: netdev@vger.kernel.org
2340W: http://www.chelsio.com
2341S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002342F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002343
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002344STMMAC ETHERNET DRIVER
2345M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2346L: netdev@vger.kernel.org
2347W: http://www.stlinux.com
2348S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002349F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002353L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354W: http://www.arm.linux.org.uk/
2355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002360S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002361F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002362F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002363F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002368F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002370CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002371M: Javier Martinez Canillas <javier@dowhile0.org>
2372L: linux-input@vger.kernel.org
2373S: Maintained
2374F: drivers/input/touchscreen/cyttsp*
2375F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://yaina.de/jreuter/
2380W: http://www.qsl.net/dl1bke/
2381L: linux-hams@vger.kernel.org
2382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: net/ax25/af_ax25.c
2384F: net/ax25/ax25_dev.c
2385F: net/ax25/ax25_ds_*
2386F: net/ax25/ax25_in.c
2387F: net/ax25/ax25_out.c
2388F: net/ax25/ax25_timer.c
2389F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002391DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002392L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002393S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002394F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002395F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002396
2397DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002398M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002399W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002400M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002402F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002405M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Ali Akcaagac <aliakc@web.de>
2407M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002409L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410L: http://lists.twibble.org/mailman/listinfo/dc395x/
2411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: Documentation/scsi/dc395x.txt
2413F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002415DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002416M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002417L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002418W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002420F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002421F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002422F: include/linux/tfrc.h
2423F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426W: http://linux-decnet.sourceforge.net
2427L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002428S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/networking/decnet.txt
2430F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002433M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002435F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002437DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002438M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002439L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002441F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445W: http://www.debian.org/~dz/i8k/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002448F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Doug Warzecha90563ec2005-09-06 15:17:15 -07002450DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002451M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002453F: Documentation/dcdbas.txt
2454F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002455
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002456DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002457M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002458S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002459F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002460
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002461DESIGNWARE USB3 DRD IP DRIVER
2462M: Felipe Balbi <balbi@ti.com>
2463L: linux-usb@vger.kernel.org
2464L: linux-omap@vger.kernel.org
2465T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2466S: Maintained
2467F: drivers/usb/dwc3/
2468
Kyungmin Park89d07762012-01-10 15:09:09 -08002469DEVICE FREQUENCY (DEVFREQ)
2470M: MyungJoo Ham <myungjoo.ham@samsung.com>
2471M: Kyungmin Park <kyungmin.park@samsung.com>
2472L: linux-kernel@vger.kernel.org
2473S: Maintained
2474F: drivers/devfreq/
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002477M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479S: Maintained
2480
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002481DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002482M: Alasdair Kergon <agk@redhat.com>
2483M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002484L: dm-devel@redhat.com
2485W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002486Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002487T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002489F: Documentation/device-mapper/
2490F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002491F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002492F: include/linux/device-mapper.h
2493F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494
Guenter Roeck335d7c52011-01-26 11:45:49 -08002495DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002496M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002497L: linux-i2c@vger.kernel.org
2498S: Maintained
2499F: drivers/i2c/busses/i2c-diolan-u2c.c
2500
Randy Dunlape7839f22008-10-12 16:11:45 -07002501DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002502M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: Documentation/filesystems/dnotify.txt
2505F: fs/notify/dnotify/
2506F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002509M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2511W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2512W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2513S: Maintained
2514
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002515DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002518F: Documentation/filesystems/quota.txt
2519F: fs/quota/
2520F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002521F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Bernie Thompson702686a2012-03-01 13:52:13 -08002523DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2524M: Bernie Thompson <bernie@plugable.com>
2525L: linux-fbdev@vger.kernel.org
2526S: Maintained
2527W: http://plugable.com/category/projects/udlfb/
2528F: drivers/video/udlfb.c
2529F: include/video/udlfb.h
2530F: Documentation/fb/udlfb.txt
2531
Randy Dunlape7839f22008-10-12 16:11:45 -07002532DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Christine Caulfield <ccaulfie@redhat.com>
2534M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002535L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002536W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002537T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002539F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002540
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302541DMA BUFFER SHARING FRAMEWORK
2542M: Sumit Semwal <sumit.semwal@linaro.org>
2543S: Maintained
2544L: linux-media@vger.kernel.org
2545L: dri-devel@lists.freedesktop.org
2546L: linaro-mm-sig@lists.linaro.org
2547F: drivers/base/dma-buf*
2548F: include/linux/dma-buf*
2549F: Documentation/dma-buf-sharing.txt
2550T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2551
Dan Williamsb3e5f262007-08-07 10:26:35 -07002552DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002553M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002554M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002555S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/dma/
2557F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302558T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2559T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002560
Juerg Haefligerb8250372007-06-09 10:11:16 -04002561DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002562M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002563L: lm-sensors@lm-sensors.org
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/hwmon/dme1737
2566F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002567
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002568DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002569M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002570L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002572F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002573
Joe Perches7d2c86b2009-04-07 20:59:01 -07002574DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002575M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002576L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002577T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002579F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002582M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583L: blinux-list@redhat.com
2584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002585F: drivers/char/dtlk.c
2586F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002588DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002589M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002590L: linux-scsi@vger.kernel.org
2591W: http://www.adaptec.com/
2592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002593F: drivers/scsi/dpt*
2594F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002595
Philipp Reisnerb411b362009-09-25 16:07:19 -07002596DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002597P: Philipp Reisner
2598P: Lars Ellenberg
2599M: drbd-dev@lists.linbit.com
2600L: drbd-user@lists.linbit.com
2601W: http://www.drbd.org
2602T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2603T: git git://git.drbd.org/drbd-8.3.git
2604S: Supported
2605F: drivers/block/drbd/
2606F: lib/lru_cache.c
2607F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002608
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002609DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002610M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002611T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002613F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002614F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002615F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002616F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002617F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002618F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002619F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002622M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002623L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002624T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002626F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002627F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002628F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Chris Wilson8daf7472010-09-28 14:07:26 +01002630INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002631M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002632L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002633L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002634T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002635S: Supported
2636F: drivers/gpu/drm/i915
2637F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002638F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002639
Kyungmin Park398a6d42011-11-02 11:33:16 +09002640DRM DRIVERS FOR EXYNOS
2641M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002642M: Joonyoung Shim <jy0922.shim@samsung.com>
2643M: Seung-Woo Kim <sw0312.kim@samsung.com>
2644M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002645L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002646T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002647S: Supported
2648F: drivers/gpu/drm/exynos
2649F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002650F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002651
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002652DRM DRIVERS FOR NVIDIA TEGRA
2653M: Thierry Reding <thierry.reding@avionic-design.de>
2654L: dri-devel@lists.freedesktop.org
2655L: linux-tegra@vger.kernel.org
2656T: git git://gitorious.org/thierryreding/linux.git
2657S: Maintained
2658F: drivers/gpu/drm/tegra/
2659F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2660
Alexey Klimov598df1a2012-11-28 17:16:32 -03002661DSBR100 USB FM RADIO DRIVER
2662M: Alexey Klimov <klimov.linux@gmail.com>
2663L: linux-media@vger.kernel.org
2664T: git git://linuxtv.org/media_tree.git
2665S: Maintained
2666F: drivers/media/radio/dsbr100.c
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002669M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002670L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002672F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Antti Palosaari91952bc2012-10-01 12:28:46 -03002674DVB_USB_AF9015 MEDIA DRIVER
2675M: Antti Palosaari <crope@iki.fi>
2676L: linux-media@vger.kernel.org
2677W: http://linuxtv.org/
2678W: http://palosaari.fi/linux/
2679Q: http://patchwork.linuxtv.org/project/linux-media/list/
2680T: git git://linuxtv.org/anttip/media_tree.git
2681S: Maintained
2682F: drivers/media/usb/dvb-usb-v2/af9015*
2683
2684DVB_USB_AF9035 MEDIA DRIVER
2685M: Antti Palosaari <crope@iki.fi>
2686L: linux-media@vger.kernel.org
2687W: http://linuxtv.org/
2688W: http://palosaari.fi/linux/
2689Q: http://patchwork.linuxtv.org/project/linux-media/list/
2690T: git git://linuxtv.org/anttip/media_tree.git
2691S: Maintained
2692F: drivers/media/usb/dvb-usb-v2/af9035*
2693
2694DVB_USB_ANYSEE MEDIA DRIVER
2695M: Antti Palosaari <crope@iki.fi>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://palosaari.fi/linux/
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/anttip/media_tree.git
2701S: Maintained
2702F: drivers/media/usb/dvb-usb-v2/anysee*
2703
2704DVB_USB_AU6610 MEDIA DRIVER
2705M: Antti Palosaari <crope@iki.fi>
2706L: linux-media@vger.kernel.org
2707W: http://linuxtv.org/
2708W: http://palosaari.fi/linux/
2709Q: http://patchwork.linuxtv.org/project/linux-media/list/
2710T: git git://linuxtv.org/anttip/media_tree.git
2711S: Maintained
2712F: drivers/media/usb/dvb-usb-v2/au6610*
2713
2714DVB_USB_CE6230 MEDIA DRIVER
2715M: Antti Palosaari <crope@iki.fi>
2716L: linux-media@vger.kernel.org
2717W: http://linuxtv.org/
2718W: http://palosaari.fi/linux/
2719Q: http://patchwork.linuxtv.org/project/linux-media/list/
2720T: git git://linuxtv.org/anttip/media_tree.git
2721S: Maintained
2722F: drivers/media/usb/dvb-usb-v2/ce6230*
2723
Michael Krufkyd099dea2012-10-02 00:56:20 -03002724DVB_USB_CXUSB MEDIA DRIVER
2725M: Michael Krufky <mkrufky@linuxtv.org>
2726L: linux-media@vger.kernel.org
2727W: http://linuxtv.org/
2728W: http://github.com/mkrufky
2729Q: http://patchwork.linuxtv.org/project/linux-media/list/
2730T: git git://linuxtv.org/media_tree.git
2731S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002732F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002733
Antti Palosaari91952bc2012-10-01 12:28:46 -03002734DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2735M: Antti Palosaari <crope@iki.fi>
2736L: linux-media@vger.kernel.org
2737W: http://linuxtv.org/
2738W: http://palosaari.fi/linux/
2739Q: http://patchwork.linuxtv.org/project/linux-media/list/
2740T: git git://linuxtv.org/anttip/media_tree.git
2741S: Maintained
2742F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2743
2744DVB_USB_EC168 MEDIA DRIVER
2745M: Antti Palosaari <crope@iki.fi>
2746L: linux-media@vger.kernel.org
2747W: http://linuxtv.org/
2748W: http://palosaari.fi/linux/
2749Q: http://patchwork.linuxtv.org/project/linux-media/list/
2750T: git git://linuxtv.org/anttip/media_tree.git
2751S: Maintained
2752F: drivers/media/usb/dvb-usb-v2/ec168*
2753
Michael Krufky8856f5f2012-10-02 00:55:50 -03002754DVB_USB_MXL111SF MEDIA DRIVER
2755M: Michael Krufky <mkrufky@linuxtv.org>
2756L: linux-media@vger.kernel.org
2757W: http://linuxtv.org/
2758W: http://github.com/mkrufky
2759Q: http://patchwork.linuxtv.org/project/linux-media/list/
2760T: git git://linuxtv.org/mkrufky/mxl111sf.git
2761S: Maintained
2762F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2763
Antti Palosaari91952bc2012-10-01 12:28:46 -03002764DVB_USB_RTL28XXU MEDIA DRIVER
2765M: Antti Palosaari <crope@iki.fi>
2766L: linux-media@vger.kernel.org
2767W: http://linuxtv.org/
2768W: http://palosaari.fi/linux/
2769Q: http://patchwork.linuxtv.org/project/linux-media/list/
2770T: git git://linuxtv.org/anttip/media_tree.git
2771S: Maintained
2772F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2773
2774DVB_USB_V2 MEDIA DRIVER
2775M: Antti Palosaari <crope@iki.fi>
2776L: linux-media@vger.kernel.org
2777W: http://linuxtv.org/
2778W: http://palosaari.fi/linux/
2779Q: http://patchwork.linuxtv.org/project/linux-media/list/
2780T: git git://linuxtv.org/anttip/media_tree.git
2781S: Maintained
2782F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2783F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2784
Jason Baronac0ac382011-08-11 14:36:43 -04002785DYNAMIC DEBUG
2786M: Jason Baron <jbaron@redhat.com>
2787S: Maintained
2788F: lib/dynamic_debug.c
2789F: include/linux/dynamic_debug.h
2790
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002791DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002793S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002794F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002795
Antti Palosaari91952bc2012-10-01 12:28:46 -03002796E4000 MEDIA DRIVER
2797M: Antti Palosaari <crope@iki.fi>
2798L: linux-media@vger.kernel.org
2799W: http://linuxtv.org/
2800W: http://palosaari.fi/linux/
2801Q: http://patchwork.linuxtv.org/project/linux-media/list/
2802T: git git://linuxtv.org/anttip/media_tree.git
2803S: Maintained
2804F: drivers/media/tuners/e4000*
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002807M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002808L: linux-eata@i-connect.net
2809L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002814M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815L: linux-scsi@vger.kernel.org
2816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002817F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002821L: linux-eata@i-connect.net
2822L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002827M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002828L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829W: http://ebtables.sourceforge.net/
2830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002831F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002832F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002833F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Antti Palosaari91952bc2012-10-01 12:28:46 -03002835EC100 MEDIA DRIVER
2836M: Antti Palosaari <crope@iki.fi>
2837L: linux-media@vger.kernel.org
2838W: http://linuxtv.org/
2839W: http://palosaari.fi/linux/
2840Q: http://patchwork.linuxtv.org/project/linux-media/list/
2841T: git git://linuxtv.org/anttip/media_tree.git
2842S: Maintained
2843F: drivers/media/dvb-frontends/ec100*
2844
Michael Halcrow237fead2006-10-04 02:16:22 -07002845ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002846M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002847M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002848L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002849W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002851F: Documentation/filesystems/ecryptfs.txt
2852F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002853
Alan Coxda9bb1d2006-01-18 17:44:13 -08002854EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002856L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002857W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002859F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002860F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002861F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002862
Borislav Petkovc476c232009-05-20 20:31:58 +02002863EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002865M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002866L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002867W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002868S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002869F: drivers/edac/amd64_edac*
2870
Ralf Baechlef65aad42012-10-17 00:39:09 +02002871EDAC-CAVIUM
2872M: Ralf Baechle <ralf@linux-mips.org>
2873M: David Daney <david.daney@cavium.com>
2874L: linux-edac@vger.kernel.org
2875L: linux-mips@linux-mips.org
2876W: bluesmoke.sourceforge.net
2877S: Supported
2878F: drivers/edac/octeon_edac*
2879
Dave Peterson0e438e32006-03-26 01:38:55 -08002880EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Mark Gross <mark.gross@intel.com>
2882M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002883L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002884W: bluesmoke.sourceforge.net
2885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002887
2888EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002889M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002890L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002891W: bluesmoke.sourceforge.net
2892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002893F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002894
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002895EDAC-GHES
2896M: Mauro Carvalho Chehab <mchehab@redhat.com>
2897L: linux-edac@vger.kernel.org
2898W: bluesmoke.sourceforge.net
2899S: Maintained
2900F: drivers/edac/ghes-edac.c
2901
Douglas Thompson6bc78402007-07-19 01:50:12 -07002902EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002903M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002904L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002905W: bluesmoke.sourceforge.net
2906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002907F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002908
2909EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002911L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002912W: bluesmoke.sourceforge.net
2913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002915
2916EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002917M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002918L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002919W: bluesmoke.sourceforge.net
2920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002922
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002923EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002925L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002926W: bluesmoke.sourceforge.net
2927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002929
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002930EDAC-I7300
2931M: Mauro Carvalho Chehab <mchehab@redhat.com>
2932L: linux-edac@vger.kernel.org
2933W: bluesmoke.sourceforge.net
2934S: Maintained
2935F: drivers/edac/i7300_edac.c
2936
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002937EDAC-I7CORE
2938M: Mauro Carvalho Chehab <mchehab@redhat.com>
2939L: linux-edac@vger.kernel.org
2940W: bluesmoke.sourceforge.net
2941S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002942F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002943
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002944EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002945M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302946M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002947L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002948W: bluesmoke.sourceforge.net
2949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002950F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002951
2952EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002953M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002954L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002955W: bluesmoke.sourceforge.net
2956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002958
Dave Peterson0e438e32006-03-26 01:38:55 -08002959EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002961L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002962W: bluesmoke.sourceforge.net
2963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002964F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002965
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002966EDAC-SBRIDGE
2967M: Mauro Carvalho Chehab <mchehab@redhat.com>
2968L: linux-edac@vger.kernel.org
2969W: bluesmoke.sourceforge.net
2970S: Maintained
2971F: drivers/edac/sb_edac.c
2972
Clemens Ladischaf399172011-01-10 16:32:54 +01002973EDIROL UA-101/UA-1000 DRIVER
2974M: Clemens Ladisch <clemens@ladisch.de>
2975L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2976T: git git://git.alsa-project.org/alsa-kernel.git
2977S: Maintained
2978F: sound/usb/misc/ua101.c
2979
Matt Fleming1f7df952012-10-03 10:04:02 +01002980EXTENSIBLE FIRMWARE INTERFACE (EFI)
2981M: Matt Fleming <matt.fleming@intel.com>
2982L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002983T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002984S: Maintained
2985F: Documentation/x86/efi-stub.txt
2986F: arch/ia64/kernel/efi.c
2987F: arch/x86/boot/compressed/eboot.[ch]
2988F: arch/x86/include/asm/efi.h
2989F: arch/x86/platform/efi/*
2990F: drivers/firmware/efivars.c
2991F: include/linux/efi*.h
2992
Peter Jones85a00d92010-09-22 13:05:04 -07002993EFIFB FRAMEBUFFER DRIVER
2994L: linux-fbdev@vger.kernel.org
2995M: Peter Jones <pjones@redhat.com>
2996S: Maintained
2997F: drivers/video/efifb.c
2998
Josh Triplett0bee8d22006-07-30 03:03:58 -07002999EFS FILESYSTEM
3000W: http://aeschi.ch.eu.org/efs/
3001S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003002F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003003
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003004EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003005M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3006M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003007L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003010
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003011EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003012M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003013L: netdev@vger.kernel.org
3014S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003015F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003016
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003017EM28XX VIDEO4LINUX DRIVER
3018M: Mauro Carvalho Chehab <mchehab@redhat.com>
3019L: linux-media@vger.kernel.org
3020W: http://linuxtv.org
3021T: git git://linuxtv.org/media_tree.git
3022S: Maintained
3023F: drivers/media/usb/em28xx/
3024
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003025EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Paul Gortmaker <paul.gortmaker@windriver.com>
3027M: Matt Mackall <mpm@selenic.com>
3028M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003029L: linux-embedded@vger.kernel.org
3030S: Maintained
3031
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003032EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003034L: linux-scsi@vger.kernel.org
3035W: http://sourceforge.net/projects/lpfcxxxx
3036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003037F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003038
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003039ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003040M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003041S: Maintained
3042F: drivers/misc/cb710/
3043F: drivers/mmc/host/cb710-mmc.*
3044F: include/linux/cb710.h
3045
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003046ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3047M: Maxim Levitsky <maximlevitsky@gmail.com>
3048S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003049F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003050
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003051EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003053S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003054T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/video/s1d13xxxfb.c
3056F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003059M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003060L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003061L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003062W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: include/linux/netfilter_bridge/
3065F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003068M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003069L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003071F: Documentation/filesystems/ext2.txt
3072F: fs/ext2/
3073F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003076M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003077M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003078M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003079L: linux-ext4@vger.kernel.org
3080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: Documentation/filesystems/ext3.txt
3082F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003083
3084EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003086M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003087L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003088W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003089Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: Documentation/filesystems/ext4.txt
3092F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Mimi Zoharc5532b02011-08-17 18:52:24 -04003094Extended Verification Module (EVM)
3095M: Mimi Zohar <zohar@us.ibm.com>
3096S: Supported
3097F: security/integrity/evm/
3098
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003099EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3100M: MyungJoo Ham <myungjoo.ham@samsung.com>
3101M: Chanwoo Choi <cw00.choi@samsung.com>
3102L: linux-kernel@vger.kernel.org
3103S: Maintained
3104F: drivers/extcon/
3105F: Documentation/extcon/
3106
Jingoo Han0a799512012-02-06 11:30:39 +09003107EXYNOS DP DRIVER
3108M: Jingoo Han <jg1.han@samsung.com>
3109L: linux-fbdev@vger.kernel.org
3110S: Maintained
3111F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003112F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003113
Donghwa Lee33ad3912012-03-06 11:44:58 +09003114EXYNOS MIPI DISPLAY DRIVERS
3115M: Inki Dae <inki.dae@samsung.com>
3116M: Donghwa Lee <dh09.lee@samsung.com>
3117M: Kyungmin Park <kyungmin.park@samsung.com>
3118L: linux-fbdev@vger.kernel.org
3119S: Maintained
3120F: drivers/video/exynos/exynos_mipi*
3121F: include/video/exynos_mipi*
3122
Jean Delvaree53004e2006-01-09 23:26:14 +01003123F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003125L: lm-sensors@lm-sensors.org
3126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003127F: Documentation/hwmon/f71805f
3128F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003129
Michael Büscheea977e2012-04-02 12:14:32 -03003130FC0011 TUNER DRIVER
3131M: Michael Buesch <m@bues.ch>
3132L: linux-media@vger.kernel.org
3133S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003134F: drivers/media/tuners/fc0011.h
3135F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003136
Antti Palosaari91952bc2012-10-01 12:28:46 -03003137FC2580 MEDIA DRIVER
3138M: Antti Palosaari <crope@iki.fi>
3139L: linux-media@vger.kernel.org
3140W: http://linuxtv.org/
3141W: http://palosaari.fi/linux/
3142Q: http://patchwork.linuxtv.org/project/linux-media/list/
3143T: git git://linuxtv.org/anttip/media_tree.git
3144S: Maintained
3145F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Eric Paris88b2dbd2010-08-18 12:25:50 -04003147FANOTIFY
3148M: Eric Paris <eparis@redhat.com>
3149S: Maintained
3150F: fs/notify/fanotify/
3151F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003152F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003155M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156W: http://www.farsite.co.uk/
3157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003158F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Akinobu Mitac5408b82007-04-23 14:41:20 -07003160FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003163F: Documentation/fault-injection/
3164F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003165
Robert Lovecae727d2010-02-16 12:16:00 -08003166FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3167M: Robert Love <robert.w.love@intel.com>
3168L: devel@open-fcoe.org
3169W: www.Open-FCoE.org
3170S: Supported
3171F: drivers/scsi/libfc/
3172F: drivers/scsi/fcoe/
3173F: include/scsi/fc/
3174F: include/scsi/libfc.h
3175F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003176F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003178FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003180L: linux-fsdevel@vger.kernel.org
3181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: include/linux/fcntl.h
3183F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003184F: include/uapi/linux/fcntl.h
3185F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003186F: fs/fcntl.c
3187F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003188
3189FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003190M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003191L: linux-fsdevel@vger.kernel.org
3192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003195FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003196M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003197L: lm-sensors@lm-sensors.org
3198S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003199F: drivers/hwmon/f75375s.c
3200F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003201
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003202FIREWIRE AUDIO DRIVERS
3203M: Clemens Ladisch <clemens@ladisch.de>
3204L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3205T: git git://git.alsa-project.org/alsa-kernel.git
3206S: Maintained
3207F: sound/firewire/
3208
Stefan Richtereb86ec52012-11-03 09:25:20 +01003209FIREWIRE MEDIA DRIVERS (firedtv)
3210M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3211L: linux-media@vger.kernel.org
3212L: linux1394-devel@lists.sourceforge.net
3213T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3214S: Maintained
3215F: drivers/media/firewire/
3216
Chris Boota511ce32012-04-14 17:50:35 -07003217FIREWIRE SBP-2 TARGET
3218M: Chris Boot <bootc@bootc.net>
3219L: linux-scsi@vger.kernel.org
3220L: target-devel@vger.kernel.org
3221L: linux1394-devel@lists.sourceforge.net
3222T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3223S: Maintained
3224F: drivers/target/sbp/
3225
Joe Perches7d2c86b2009-04-07 20:59:01 -07003226FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003228L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003229W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003230T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003232F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003233F: include/linux/firewire.h
3234F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003235F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236
3237FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003238M: Ming Lei <ming.lei@canonical.com>
3239L: linux-kernel@vger.kernel.org
3240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: Documentation/firmware_class/
3242F: drivers/base/firmware*.c
3243F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003244
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003245FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3246M: Joshua Morris <josh.h.morris@us.ibm.com>
3247M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3248S: Maintained
3249F: drivers/block/rsxx/
3250
Jiri Kosina8206f662012-05-18 13:52:29 +02003251FLOPPY DRIVER
3252M: Jiri Kosina <jkosina@suse.cz>
3253T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3254S: Odd fixes
3255F: drivers/block/floppy.c
3256
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003257FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003258M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003259W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003261F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003262
3263FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003264L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003265S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003266F: drivers/net/wan/dlci.c
3267F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003268
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003270M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003271L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003273Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003274T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003276F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003277F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003278F: drivers/video/
3279F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003280F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003281F: include/uapi/video/
3282F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Timur Tabia57c1882012-10-16 17:33:42 -05003284FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003285M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003286L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003287S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003288F: drivers/video/fsl-diu-fb.*
3289
Zhang Wei173acc72008-03-01 07:42:48 -07003290FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Li Yang <leoli@freescale.com>
3292M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003293L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003295F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003296
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003297FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003298M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003299L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003300L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003303
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003304FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003306L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003308S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003309F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003310F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003311
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003312FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003313M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3314M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003315L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003316L: netdev@vger.kernel.org
3317S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003318F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003319F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003320
Timur Tabid9e9d822008-04-24 08:45:26 +10003321FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003322L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003323S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003324F: arch/powerpc/sysdev/qe_lib/
3325F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003326
Joe Perchesb55ef9292009-10-26 16:49:46 -07003327FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003328M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003329L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003330L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003331S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003332F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003333
Li Yangbeaf53b2007-05-25 13:54:02 +08003334FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003336L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003337L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003338S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003339F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003340
Timur Tabid9e9d822008-04-24 08:45:26 +10003341FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003342M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003343L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003344S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003345F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003346
3347FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003348M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003349L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003350L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003351S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003352F: sound/soc/fsl/fsl*
3353F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Pavel Machek71038f52009-01-15 13:51:02 -08003361FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003362M: Pavel Machek <pavel@ucw.cz>
3363M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003364L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003366F: Documentation/power/freezing-of-tasks.txt
3367F: include/linux/freezer.h
3368F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003369
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003370FRONTSWAP API
3371M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3372L: linux-kernel@vger.kernel.org
3373S: Maintained
3374F: mm/frontswap.c
3375F: include/linux/frontswap.h
3376
David Howellsa5432f52009-04-20 15:46:45 +01003377FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003378M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003379L: linux-cachefs@redhat.com
3380S: Supported
3381F: Documentation/filesystems/caching/
3382F: fs/fscache/
3383F: include/linux/fscache*.h
3384
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003385F2FS FILE SYSTEM
3386M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3387L: linux-f2fs-devel@lists.sourceforge.net
3388W: http://en.wikipedia.org/wiki/F2FS
3389T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3390S: Maintained
3391F: Documentation/filesystems/f2fs.txt
3392F: fs/f2fs/
3393F: include/linux/f2fs_fs.h
3394
David Howells5ab7ffe2007-04-10 15:10:45 +01003395FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003396M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003398F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Jonathan Woithe20b93732008-06-11 10:14:56 +09303400FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303401M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003402L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003404F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303405
Heungjun Kim4da621b2011-11-11 08:05:33 -03003406FUJITSU M-5MO LS CAMERA ISP DRIVER
3407M: Kyungmin Park <kyungmin.park@samsung.com>
3408M: Heungjun Kim <riverful.kim@samsung.com>
3409L: linux-media@vger.kernel.org
3410S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003411F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003412F: include/media/m5mols.h
3413
Robert Gerlach2d24c492012-01-18 14:26:22 +01003414FUJITSU TABLET EXTRAS
3415M: Robert Gerlach <khnz@gmx.de>
3416L: platform-driver-x86@vger.kernel.org
3417S: Maintained
3418F: drivers/platform/x86/fujitsu-tablet.c
3419
Miklos Szeredi04578f12005-09-09 13:10:22 -07003420FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003421M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003422L: fuse-devel@lists.sourceforge.net
3423W: http://fuse.sourceforge.net/
3424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003425F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003426F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003431S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003432F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003435M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436L: linux-scsi@vger.kernel.org
3437W: http://www.icp-vortex.com/
3438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003439F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003441GEMTEK FM RADIO RECEIVER DRIVER
3442M: Hans Verkuil <hverkuil@xs4all.nl>
3443L: linux-media@vger.kernel.org
3444T: git git://linuxtv.org/media_tree.git
3445W: http://linuxtv.org
3446S: Maintained
3447F: drivers/media/radio/radio-gemtek*
3448
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003449GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003450M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003452F: drivers/i2c/busses/i2c-gpio.c
3453F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003454
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003455GENERIC GPIO I2C MULTIPLEXER DRIVER
3456M: Peter Korsgaard <peter.korsgaard@barco.com>
3457L: linux-i2c@vger.kernel.org
3458S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003459F: drivers/i2c/muxes/i2c-mux-gpio.c
3460F: include/linux/i2c-mux-gpio.h
3461F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003462
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003463GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003464M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003467F: drivers/net/wan/c101.c
3468F: drivers/net/wan/hd6457*
3469F: drivers/net/wan/hdlc*
3470F: drivers/net/wan/n2.c
3471F: drivers/net/wan/pc300too.c
3472F: drivers/net/wan/pci200syn.c
3473F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003475GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003477L: linux-arch@vger.kernel.org
3478T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3479S: Maintained
3480F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003481F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003482
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003483GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003484M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003485L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003486S: Supported
3487F: drivers/uio/uio_pci_generic.c
3488
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003489GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003490M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003491L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003492W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003493T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3494T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/filesystems/gfs2*.txt
3497F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003498F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003499
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003500GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003501M: Hansjoerg Lipp <hjlipp@web.de>
3502M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003503L: gigaset307x-common@lists.sourceforge.net
3504W: http://gigaset307x.sourceforge.net/
3505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003506F: Documentation/isdn/README.gigaset
3507F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003508F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003509
Grant Likelya0dc00b2011-02-12 01:48:14 -07003510GPIO SUBSYSTEM
3511M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003512M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003513S: Maintained
3514T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003515F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003516F: drivers/gpio/
3517F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003518F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003519
Harry Wei71a6d0a2011-05-11 15:13:33 -07003520GRE DEMULTIPLEXER DRIVER
3521M: Dmitry Kozlov <xeb@mail.ru>
3522L: netdev@vger.kernel.org
3523S: Maintained
3524F: net/ipv4/gre.c
3525F: include/net/gre.h
3526
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003527GRETH 10/100/1G Ethernet MAC device driver
3528M: Kristoffer Glembo <kristoffer@gaisler.com>
3529L: netdev@vger.kernel.org
3530S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003531F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003532
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003533GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003535L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003536T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003537S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003538F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003539
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003540GSPCA GL860 SUBDRIVER
3541M: Olivier Lorin <o.lorin@laposte.net>
3542L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003543T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003544S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003545F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003546
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003547GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003549L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003550T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003551S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003552F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003553
3554GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003555M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003556L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003557T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003558S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003559F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003560
Brian Johnson261982f2009-07-19 15:58:56 -03003561GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003562M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003563L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003564T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003565S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003566F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003567
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003568GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003570L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003571T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003572S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003573F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003574
3575GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003576M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003577L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003578T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003579S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003580F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003581
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003582STK1160 USB VIDEO CAPTURE DRIVER
3583M: Ezequiel Garcia <elezegarcia@gmail.com>
3584L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003585T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003586S: Maintained
3587F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003588
Harry Wei71a6d0a2011-05-11 15:13:33 -07003589HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3590M: Frank Seidel <frank@f-seidel.de>
3591L: platform-driver-x86@vger.kernel.org
3592W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3593S: Maintained
3594F: drivers/platform/x86/hdaps.c
3595
3596HWPOISON MEMORY FAILURE HANDLING
3597M: Andi Kleen <andi@firstfloor.org>
3598L: linux-mm@kvack.org
3599T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3600S: Maintained
3601F: mm/memory-failure.c
3602F: mm/hwpoison-inject.c
3603
3604HYPERVISOR VIRTUAL CONSOLE DRIVER
3605L: linuxppc-dev@lists.ozlabs.org
3606S: Odd Fixes
3607F: drivers/tty/hvc/
3608
Michael Buesch844dd052006-06-26 00:24:59 -07003609HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003610M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003611M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003612L: lm-sensors@lm-sensors.org
3613W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003614T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003615T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003616S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003617F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003618F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003619F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003620
3621HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003622M: Matt Mackall <mpm@selenic.com>
3623M: Herbert Xu <herbert@gondor.apana.org.au>
3624S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/hw_random.txt
3626F: drivers/char/hw_random/
3627F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003628
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003629HARDWARE SPINLOCK CORE
3630M: Ohad Ben-Cohen <ohad@wizery.com>
3631S: Maintained
3632F: Documentation/hwspinlock.txt
3633F: drivers/hwspinlock/hwspinlock_*
3634F: include/linux/hwspinlock.h
3635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003637L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003639F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Antti Palosaari91952bc2012-10-01 12:28:46 -03003641HD29L2 MEDIA DRIVER
3642M: Antti Palosaari <crope@iki.fi>
3643L: linux-media@vger.kernel.org
3644W: http://linuxtv.org/
3645W: http://palosaari.fi/linux/
3646Q: http://patchwork.linuxtv.org/project/linux-media/list/
3647T: git git://linuxtv.org/anttip/media_tree.git
3648S: Maintained
3649F: drivers/media/dvb-frontends/hd29l2*
3650
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003651HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003653L: iss_storagedev@hp.com
3654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: Documentation/blockdev/cpqarray.txt
3656F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003657
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003658HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003659M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003660L: iss_storagedev@hp.com
3661S: Supported
3662F: Documentation/scsi/hpsa.txt
3663F: drivers/scsi/hpsa*.[ch]
3664F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003665F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003667HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669L: iss_storagedev@hp.com
3670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003671F: Documentation/blockdev/cciss.txt
3672F: drivers/block/cciss*
3673F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003674F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003677L: linux-fsdevel@vger.kernel.org
3678S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003679F: Documentation/filesystems/hfs.txt
3680F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684L: linux-nvidia@lists.surfsouth.com
3685W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003687F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003689HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003690M: Pavel Machek <pavel@ucw.cz>
3691M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003692L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003694F: arch/x86/power/
3695F: drivers/base/power/
3696F: kernel/power/
3697F: include/linux/suspend.h
3698F: include/linux/freezer.h
3699F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003700F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003701
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003702HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003704L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003705T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003707F: drivers/hid/
3708F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003709F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003710
Ingo Molnar38bed542007-02-22 09:09:34 +01003711HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003712M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003713T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003715F: Documentation/timers/
3716F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003717F: kernel/time/clockevents.c
3718F: kernel/time/tick*.*
3719F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003720F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003721F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003725S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/net/hamradio/dmascc.c
3727F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003729HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003730M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003731W: http://www.highpoint-tech.com
3732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003733F: Documentation/scsi/hptiop.txt
3734F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003737M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738L: linux-hippi@sunsite.dk
3739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003741F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003742F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003743F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Jouni Malinenff1d2762005-05-12 22:54:16 -04003745HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003747L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003748L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003749W: http://hostap.epitest.fi/
3750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003751F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003752
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003753HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003754L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003755S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003757
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003758HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003759M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003760S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003761F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003762
Joe Perches7d2c86b2009-04-07 20:59:01 -07003763HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003766F: Documentation/timers/hpet.txt
3767F: drivers/char/hpet.c
3768F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003769F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003770
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003771HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003772M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003774F: arch/x86/kernel/hpet.c
3775F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Joe Perches7d2c86b2009-04-07 20:59:01 -07003783HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003784M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003785W: http://www.pharscape.org
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003788
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003789HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003791L: linux-input@vger.kernel.org
3792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003793F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003794
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003796M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003800Hyper-V CORE AND DRIVERS
3801M: K. Y. Srinivasan <kys@microsoft.com>
3802M: Haiyang Zhang <haiyangz@microsoft.com>
3803L: devel@linuxdriverproject.org
3804S: Maintained
3805F: drivers/hv/
3806F: drivers/hid/hid-hyperv.c
3807F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003808
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003809I2C OVER PARALLEL PORT
3810M: Jean Delvare <khali@linux-fr.org>
3811L: linux-i2c@vger.kernel.org
3812S: Maintained
3813F: Documentation/i2c/busses/i2c-parport
3814F: Documentation/i2c/busses/i2c-parport-light
3815F: drivers/i2c/busses/i2c-parport.c
3816F: drivers/i2c/busses/i2c-parport-light.c
3817
3818I2C/SMBUS CONTROLLER DRIVERS FOR PC
3819M: Jean Delvare <khali@linux-fr.org>
3820L: linux-i2c@vger.kernel.org
3821S: Maintained
3822F: Documentation/i2c/busses/i2c-ali1535
3823F: Documentation/i2c/busses/i2c-ali1563
3824F: Documentation/i2c/busses/i2c-ali15x3
3825F: Documentation/i2c/busses/i2c-amd756
3826F: Documentation/i2c/busses/i2c-amd8111
3827F: Documentation/i2c/busses/i2c-i801
3828F: Documentation/i2c/busses/i2c-nforce2
3829F: Documentation/i2c/busses/i2c-piix4
3830F: Documentation/i2c/busses/i2c-sis5595
3831F: Documentation/i2c/busses/i2c-sis630
3832F: Documentation/i2c/busses/i2c-sis96x
3833F: Documentation/i2c/busses/i2c-via
3834F: Documentation/i2c/busses/i2c-viapro
3835F: drivers/i2c/busses/i2c-ali1535.c
3836F: drivers/i2c/busses/i2c-ali1563.c
3837F: drivers/i2c/busses/i2c-ali15x3.c
3838F: drivers/i2c/busses/i2c-amd756.c
3839F: drivers/i2c/busses/i2c-amd756-s4882.c
3840F: drivers/i2c/busses/i2c-amd8111.c
3841F: drivers/i2c/busses/i2c-i801.c
3842F: drivers/i2c/busses/i2c-isch.c
3843F: drivers/i2c/busses/i2c-nforce2.c
3844F: drivers/i2c/busses/i2c-nforce2-s4985.c
3845F: drivers/i2c/busses/i2c-piix4.c
3846F: drivers/i2c/busses/i2c-sis5595.c
3847F: drivers/i2c/busses/i2c-sis630.c
3848F: drivers/i2c/busses/i2c-sis96x.c
3849F: drivers/i2c/busses/i2c-via.c
3850F: drivers/i2c/busses/i2c-viapro.c
3851
Neil Hormancb7f07a2013-02-10 11:59:03 -05003852I2C/SMBUS ISMT DRIVER
3853M: Seth Heasley <seth.heasley@intel.com>
3854M: Neil Horman <nhorman@tuxdriver.com>
3855L: linux-i2c@vger.kernel.org
3856F: drivers/i2c/busses/i2c-ismt.c
3857F: Documentation/i2c/busses/i2c-ismt
3858
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003859I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003860M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003861L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003862S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003863F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003864
Jean Delvare5b543962005-08-15 19:51:02 +02003865I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003866M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003867M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003868L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003869W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003870T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: Documentation/i2c/
3873F: drivers/i2c/
3874F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003875F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003876F: include/uapi/linux/i2c.h
3877F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003879I2C-TAOS-EVM DRIVER
3880M: Jean Delvare <khali@linux-fr.org>
3881L: linux-i2c@vger.kernel.org
3882S: Maintained
3883F: Documentation/i2c/busses/i2c-taos-evm
3884F: drivers/i2c/busses/i2c-taos-evm.c
3885
Till Harbaume8c76ee2007-05-01 23:26:35 +02003886I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003887M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003888L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003889W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003891F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003892
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
3898i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003900T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901S: Maintained
3902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Tony Luck <tony.luck@intel.com>
3905M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003907T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Kent Yoder956c2032012-09-07 04:17:01 +08003911IBM Power in-Nest Crypto Acceleration
3912M: Kent Yoder <key@linux.vnet.ibm.com>
3913L: linux-crypto@vger.kernel.org
3914S: Supported
3915F: drivers/crypto/nx/
3916
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003917IBM Power 842 compression accelerator
3918M: Robert Jennings <rcj@linux.vnet.ibm.com>
3919S: Supported
3920F: drivers/crypto/nx/nx-842.c
3921F: include/linux/nx842.h
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Santiago Leon9d348af2010-09-03 18:29:53 +00003928IBM Power Virtual Ethernet Device Driver
3929M: Santiago Leon <santil@linux.vnet.ibm.com>
3930L: netdev@vger.kernel.org
3931S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003932F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003933
Robert Jennings4b7652c2012-07-31 12:34:36 -05003934IBM Power Virtual SCSI/FC Device Drivers
3935M: Robert Jennings <rcj@linux.vnet.ibm.com>
3936L: linux-scsi@vger.kernel.org
3937S: Supported
3938F: drivers/scsi/ibmvscsi/
3939X: drivers/scsi/ibmvscsi/ibmvstgt.c
3940
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941IBM ServeRAID RAID DRIVER
3942P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003946F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003948ICH LPC AND GPIO DRIVER
3949M: Peter Tyser <ptyser@xes-inc.com>
3950S: Maintained
3951F: drivers/mfd/lpc_ich.c
3952F: drivers/gpio/gpio-ich.c
3953
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003954IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003957Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003958T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003960F: Documentation/ide/
3961F: drivers/ide/
3962F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Ike Panhc6cb8c132011-08-25 22:28:45 +08003964IDEAPAD LAPTOP EXTRAS DRIVER
3965M: Ike Panhc <ike.pan@canonical.com>
3966L: platform-driver-x86@vger.kernel.org
3967W: http://launchpad.net/ideapad-laptop
3968S: Maintained
3969F: drivers/platform/x86/ideapad-laptop.c
3970
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003971IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003972M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003973L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: Documentation/cdrom/ide-cd
3976F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Andy Henroid27471fd2008-10-09 11:45:22 -07003978IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003980L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003982F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003983
Sergey Lapin02cf2282009-06-08 12:18:50 +00003984IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003985M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003986M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003987L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003988W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003989T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003990S: Maintained
3991F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003992F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003993F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003994
Sean Young40ad4a32012-11-19 10:32:53 -03003995IGUANAWORKS USB IR TRANSCEIVER
3996M: Sean Young <sean@mess.org>
3997L: linux-media@vger.kernel.org
3998S: Maintained
3999F: drivers/media/rc/iguanair.c
4000
Ameya Palande9545f862012-01-10 09:00:58 -08004001IIO SUBSYSTEM AND DRIVERS
4002M: Jonathan Cameron <jic23@cam.ac.uk>
4003L: linux-iio@vger.kernel.org
4004S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004005F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004006F: drivers/staging/iio/
4007
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004008IKANOS/ADI EAGLE ADSL USB DRIVER
4009M: Matthieu Castet <castet.matthieu@free.fr>
4010M: Stanislaw Gruszka <stf_xl@wp.pl>
4011S: Maintained
4012F: drivers/usb/atm/ueagle-atm.c
4013
Guenter Roecke89ab512013-03-08 08:13:09 -08004014INA209 HARDWARE MONITOR DRIVER
4015M: Guenter Roeck <linux@roeck-us.net>
4016L: lm-sensors@lm-sensors.org
4017S: Maintained
4018F: Documentation/hwmon/ina209
4019F: Documentation/devicetree/bindings/i2c/ina209.txt
4020F: drivers/hwmon/ina209.c
4021
4022INA2XX HARDWARE MONITOR DRIVER
4023M: Guenter Roeck <linux@roeck-us.net>
4024L: lm-sensors@lm-sensors.org
4025S: Maintained
4026F: Documentation/hwmon/ina2xx
4027F: drivers/hwmon/ina2xx.c
4028F: include/linux/platform_data/ina2xx.h
4029
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004030INDUSTRY PACK SUBSYSTEM (IPACK)
4031M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4032M: Jens Taprogge <jens.taprogge@taprogge.org>
4033M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4034L: industrypack-devel@lists.sourceforge.net
4035W: http://industrypack.sourceforge.net
4036S: Maintained
4037F: drivers/ipack/
4038
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004039INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004042F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004045L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004046S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004047F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
4049INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004050M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004051M: Sean Hefty <sean.hefty@intel.com>
4052M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004053L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004054W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004055Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004056T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004058F: Documentation/infiniband/
4059F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004060F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Robert Lovec9f04f52005-07-15 12:21:07 -04004062INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004063M: John McCutchan <john@johnmccutchan.com>
4064M: Robert Love <rlove@rlove.org>
4065M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: Documentation/filesystems/inotify.txt
4068F: fs/notify/inotify/
4069F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004070F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004071
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004072INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004073M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4074M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004075L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004076Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004077T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004080F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004081F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004082F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004083
Henrik Rydberg3267a872010-06-24 19:10:40 -07004084INPUT MULTITOUCH (MT) PROTOCOL
4085M: Henrik Rydberg <rydberg@euromail.se>
4086L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004087T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004088S: Maintained
4089F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004090F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004091K: \b(ABS|SYN)_MT_
4092
Dave Jiang4ac13e12011-07-29 17:16:55 -07004093INTEL C600 SERIES SAS CONTROLLER DRIVER
4094M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004095M: Lukasz Dorau <lukasz.dorau@intel.com>
4096M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004097M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004098L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004099T: git git://git.code.sf.net/p/intel-sas/isci
4100S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004101F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004102
Len Brown26717172010-03-08 14:07:30 -05004103INTEL IDLE DRIVER
4104M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004105L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004106T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004107S: Supported
4108F: drivers/idle/intel_idle.c
4109
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004110INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004111M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004112L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004114F: Documentation/fb/intelfb.txt
4115F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004116
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004119L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004121F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304123INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004124M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004125L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304126W: http://www.lesswatts.org/projects/acpi/
4127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004128F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304129
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: arch/x86/kernel/microcode_core.c
4134F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004136INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004137M: Dan Williams <djbw@fb.com>
4138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004139F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004140
David Woodhouse6c8909b2008-10-18 16:12:17 +01004141INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004143L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004144T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004145S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004146F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004147F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004148
Dan Williamsb3e5f262007-08-07 10:26:35 -07004149INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004150M: Dan Williams <djbw@fb.com>
4151S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004152F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004153
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004154INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004157F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4158F: arch/arm/mach-ixp4xx/include/mach/npe.h
4159F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4160F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004161F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004162F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004163
Michael Buesch844dd052006-06-26 00:24:59 -07004164INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004167F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004168
Jeff Kirsher0d164402010-10-05 01:15:17 +00004169INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004170M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4171M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4172M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004173M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4174M: Don Skidmore <donald.c.skidmore@intel.com>
4175M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004176M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004177M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004179M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004180L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004181W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004182W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004183T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4184T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004186F: Documentation/networking/e100.txt
4187F: Documentation/networking/e1000.txt
4188F: Documentation/networking/e1000e.txt
4189F: Documentation/networking/igb.txt
4190F: Documentation/networking/igbvf.txt
4191F: Documentation/networking/ixgb.txt
4192F: Documentation/networking/ixgbe.txt
4193F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004194F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004196INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4197M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004198L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004202F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004203
Shane Wang4bd96a72010-03-10 14:36:10 +08004204INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004205M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4206M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004207M: Shane Wang <shane.wang@intel.com>
4208L: tboot-devel@lists.sourceforge.net
4209W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004210T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004211S: Supported
4212F: Documentation/intel_txt.txt
4213F: include/linux/tboot.h
4214F: arch/x86/kernel/tboot.c
4215
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004216INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004217M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004218M: linux-wimax@intel.com
4219L: wimax@linuxwimax.org
4220S: Supported
4221W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004222F: Documentation/wimax/README.i2400m
4223F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004224F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004225
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004226INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4227M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004228L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004229S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004230F: drivers/net/wireless/iwlegacy/
4231
Zhu Yib481de92007-09-25 17:54:57 -07004232INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004233M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004234M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004235M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004236L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004237W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004238T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004240F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004241
Tomas Winklerde8fe022012-05-09 16:39:02 +03004242INTEL MANAGEMENT ENGINE (mei)
4243M: Tomas Winkler <tomas.winkler@intel.com>
4244L: linux-kernel@vger.kernel.org
4245S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004246F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004247F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004248F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004249
Ralf Baechlecb109a02007-08-30 23:56:30 -07004250IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252L: linux-mips@linux-mips.org
4253S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004254F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Ralf Baechlecb109a02007-08-30 23:56:30 -07004256IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004258L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004259S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004260F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004261
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004262IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Francois Romieu1202d6f2007-09-17 17:13:55 -07004267IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Francois Romieu <romieu@fr.zoreil.com>
4269M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004270L: netdev@vger.kernel.org
4271S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004272F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004273
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004274IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004275M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004276L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004279
Corey Minyard4409ebe2006-04-20 02:43:12 -07004280IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004281M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004282L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004283W: http://openipmi.sourceforge.net/
4284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004285F: Documentation/IPMI.txt
4286F: drivers/char/ipmi/
4287F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004288F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004289
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004290IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004291M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004292L: linux-scsi@vger.kernel.org
4293W: http://www.adaptec.com/
4294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296
4297IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004298M: Wensong Zhang <wensong@linux-vs.org>
4299M: Simon Horman <horms@verge.net.au>
4300M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004301L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004305F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004306F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004307F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Randy Dunlape7839f22008-10-12 16:11:45 -07004309IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Jiri Kosina <jkosina@suse.cz>
4311M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004312S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004313F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004314
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004315IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004316M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004317L: netdev@vger.kernel.org
4318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004320F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004321F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004324M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004325L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004326L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004328S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004329T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004330F: Documentation/networking/irda.txt
4331F: drivers/net/irda/
4332F: include/net/irda/
4333F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004335IRQ SUBSYSTEM
4336M: Thomas Gleixner <tglx@linutronix.de>
4337S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004338T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004339F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004340F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004341
Grant Likely7ab3a832012-02-14 14:06:47 -07004342IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4343M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4344M: Grant Likely <grant.likely@secretlab.ca>
4345T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4346S: Maintained
4347F: Documentation/IRQ-domain.txt
4348F: include/linux/irqdomain.h
4349F: kernel/irq/irqdomain.c
4350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004351ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004354F: Documentation/isapnp.txt
4355F: drivers/pnp/isapnp/
4356F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004357
Hans Verkuild39b8422012-11-23 07:07:02 -03004358ISA RADIO MODULE
4359M: Hans Verkuil <hverkuil@xs4all.nl>
4360L: linux-media@vger.kernel.org
4361T: git git://linuxtv.org/media_tree.git
4362W: http://linuxtv.org
4363S: Maintained
4364F: drivers/media/radio/radio-isa*
4365
Harry Wei71a6d0a2011-05-11 15:13:33 -07004366iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4367M: Peter Jones <pjones@redhat.com>
4368M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4369S: Maintained
4370F: drivers/firmware/iscsi_ibft*
4371
Mike Christie14816b1e2007-11-28 16:22:06 -08004372ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004373M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004374L: open-iscsi@googlegroups.com
4375W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004376T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: drivers/scsi/*iscsi*
4379F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004380
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004383L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004386T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004388F: Documentation/isdn/
4389F: drivers/isdn/
4390F: include/linux/isdn.h
4391F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004392F: include/uapi/linux/isdn.h
4393F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
4395ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004396M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004397L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398W: http://www.melware.de
4399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004400F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Jean Delvared6248702010-03-05 22:17:20 +01004402IT87 HARDWARE MONITORING DRIVER
4403M: Jean Delvare <khali@linux-fr.org>
4404L: lm-sensors@lm-sensors.org
4405S: Maintained
4406F: Documentation/hwmon/it87
4407F: drivers/hwmon/it87.c
4408
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004409IT913X MEDIA DRIVER
4410M: Malcolm Priestley <tvboxspy@gmail.com>
4411L: linux-media@vger.kernel.org
4412W: http://linuxtv.org/
4413Q: http://patchwork.linuxtv.org/project/linux-media/list/
4414S: Maintained
4415F: drivers/media/usb/dvb-usb-v2/it913x*
4416
4417IT913X FE MEDIA DRIVER
4418M: Malcolm Priestley <tvboxspy@gmail.com>
4419L: linux-media@vger.kernel.org
4420W: http://linuxtv.org/
4421Q: http://patchwork.linuxtv.org/project/linux-media/list/
4422S: Maintained
4423F: drivers/media/dvb-frontends/it913x-fe*
4424
Hans Verkuil91821ff2007-12-02 09:35:33 -03004425IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004426M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004427L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004428L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004429T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004430W: http://www.ivtvdriver.org
4431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004432F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004433F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004434F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004435
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004436IX2505V MEDIA DRIVER
4437M: Malcolm Priestley <tvboxspy@gmail.com>
4438L: linux-media@vger.kernel.org
4439W: http://linuxtv.org/
4440Q: http://patchwork.linuxtv.org/project/linux-media/list/
4441S: Maintained
4442F: drivers/media/dvb-frontends/ix2505v*
4443
Guenter Roeck4453d732010-08-09 17:21:08 -07004444JC42.4 TEMPERATURE SENSOR DRIVER
4445M: Guenter Roeck <linux@roeck-us.net>
4446L: lm-sensors@lm-sensors.org
4447S: Maintained
4448F: drivers/hwmon/jc42.c
4449F: Documentation/hwmon/jc42
4450
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004451JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004452M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004453L: jfs-discussion@lists.sourceforge.net
4454W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004455T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004457F: Documentation/filesystems/jfs.txt
4458F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004459
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004460JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004462L: netdev@vger.kernel.org
4463S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004464F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004467M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004468L: linux-mtd@lists.infradead.org
4469W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004471F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004472F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Josh Triplettde456d32006-07-30 03:04:00 -07004474JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004475M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004476M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004477L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004478S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004479F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004480F: include/linux/jbd.h
4481
4482JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4483M: "Theodore Ts'o" <tytso@mit.edu>
4484L: linux-ext4@vger.kernel.org
4485S: Maintained
4486F: fs/jbd2/
4487F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004488
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004489JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004490M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004491L: linux-serial@vger.kernel.org
4492S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004493F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004494
Clemens Ladischaf399172011-01-10 16:32:54 +01004495K10TEMP HARDWARE MONITORING DRIVER
4496M: Clemens Ladisch <clemens@ladisch.de>
4497L: lm-sensors@lm-sensors.org
4498S: Maintained
4499F: Documentation/hwmon/k10temp
4500F: drivers/hwmon/k10temp.c
4501
Rudolf Marek4660cb32006-10-08 22:01:26 +02004502K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004503M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004504L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/hwmon/k8temp
4507F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
4509KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004510M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004511L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004512S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004513F: Documentation/kbuild/kconfig-language.txt
4514F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
Vivek Goyalea6c2082006-05-20 14:59:55 -07004516KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Vivek Goyal <vgoyal@redhat.com>
4518M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004519L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004520W: http://lse.sourceforge.net/kdump/
4521S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004522F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004523
Hans Verkuilf41bf022012-11-23 07:04:36 -03004524KEENE FM RADIO TRANSMITTER DRIVER
4525M: Hans Verkuil <hverkuil@xs4all.nl>
4526L: linux-media@vger.kernel.org
4527T: git git://linuxtv.org/media_tree.git
4528W: http://linuxtv.org
4529S: Maintained
4530F: drivers/media/radio/radio-keene*
4531
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004534L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Michal Marek70fb7ba2010-01-29 14:22:43 +01004538KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004539M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004540T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4541T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004542L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: Documentation/kbuild/
4545F: Makefile
4546F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004547F: scripts/basic/
4548F: scripts/mk*
4549F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004552L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004553W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004554S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004556KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004557M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004558L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004561F: fs/nfsd/
4562F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004563F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004564F: fs/lockd/
4565F: fs/nfs_common/
4566F: net/sunrpc/
4567F: include/linux/lockd/
4568F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004569F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Avi Kivity426d62e2006-12-13 00:34:03 -08004571KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004572M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004573M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004574L: kvm@vger.kernel.org
4575W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004577F: Documentation/*/kvm.txt
4578F: arch/*/kvm/
4579F: arch/*/include/asm/kvm*
4580F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004581F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004582F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004583
Joerg Roedelad8003d2008-09-10 20:01:07 +02004584KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004585M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004586L: kvm@vger.kernel.org
4587W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004589F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004590F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004591
Hollis Blanchard513014b2008-04-16 23:28:08 -05004592KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004593M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004594L: kvm-ppc@vger.kernel.org
4595W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004596T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004598F: arch/powerpc/include/asm/kvm*
4599F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004600
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004601KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004602M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004603L: kvm-ia64@vger.kernel.org
4604W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004605S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004606F: Documentation/ia64/kvm.txt
4607F: arch/ia64/include/asm/kvm*
4608F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004609
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004610KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004612M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004613M: linux390@de.ibm.com
4614L: linux-s390@vger.kernel.org
4615W: http://www.ibm.com/developerworks/linux/linux390/
4616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004617F: Documentation/s390/kvm.txt
4618F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004619F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004620F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004621
Christoffer Dalla7494742013-01-20 18:42:26 -05004622KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4623M: Christoffer Dall <cdall@cs.columbia.edu>
4624L: kvmarm@lists.cs.columbia.edu
4625W: http://systems.cs.columbia.edu/projects/kvm-arm
4626S: Maintained
4627F: arch/arm/include/uapi/asm/kvm*
4628F: arch/arm/include/asm/kvm*
4629F: arch/arm/kvm/
4630
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004631KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004633W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004634L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004636F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004637F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004638F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004639
David Howellse9714612010-03-29 23:42:09 +01004640KEYS/KEYRINGS:
4641M: David Howells <dhowells@redhat.com>
4642L: keyrings@linux-nfs.org
4643S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004644F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004645F: include/linux/key.h
4646F: include/linux/key-type.h
4647F: include/keys/
4648F: security/keys/
4649
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004650KEYS-TRUSTED
4651M: David Safford <safford@watson.ibm.com>
4652M: Mimi Zohar <zohar@us.ibm.com>
4653L: linux-security-module@vger.kernel.org
4654L: keyrings@linux-nfs.org
4655S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004656F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004657F: include/keys/trusted-type.h
4658F: security/keys/trusted.c
4659F: security/keys/trusted.h
4660
4661KEYS-ENCRYPTED
4662M: Mimi Zohar <zohar@us.ibm.com>
4663M: David Safford <safford@watson.ibm.com>
4664L: linux-security-module@vger.kernel.org
4665L: keyrings@linux-nfs.org
4666S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004667F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004668F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004669F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004670
Jason Wessel5b778da2010-05-20 21:04:28 -05004671KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004672M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004673W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004674L: kgdb-bugreport@lists.sourceforge.net
4675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004676F: Documentation/DocBook/kgdb.tmpl
4677F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004678F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004679F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004680F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004681F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004682
Pekka Enberg456db8c2008-04-28 22:47:29 +03004683KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004685M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004686S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004687F: Documentation/kmemcheck.txt
4688F: arch/x86/include/asm/kmemcheck.h
4689F: arch/x86/mm/kmemcheck/
4690F: include/linux/kmemcheck.h
4691F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004692
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004693KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004695S: Maintained
4696F: Documentation/kmemleak.txt
4697F: include/linux/kmemleak.h
4698F: mm/kmemleak.c
4699F: mm/kmemleak-test.c
4700
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004701KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4703M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4704M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004705M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/kprobes.txt
4708F: include/linux/kprobes.h
4709F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004710
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004711KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004713W: http://miguelojeda.es/auxdisplay.htm
4714W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: Documentation/auxdisplay/ks0108
4717F: drivers/auxdisplay/ks0108.c
4718F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004723F: Documentation/networking/lapb-module.txt
4724F: include/*/lapb.h
4725F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004728M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729L: linux-scsi@vger.kernel.org
4730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004731F: Documentation/scsi/53c700.txt
4732F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Richard Purdie263de9b2006-05-15 09:44:16 -07004734LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004735M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004737L: linux-leds@vger.kernel.org
4738T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: drivers/leds/
4741F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004742
Jean Delvareb0461a42011-06-15 15:08:46 -07004743LEGACY EEPROM DRIVER
4744M: Jean Delvare <khali@linux-fr.org>
4745S: Maintained
4746F: Documentation/misc-devices/eeprom
4747F: drivers/misc/eeprom/eeprom.c
4748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751L: legousb-devel@lists.sourceforge.net
4752W: http://legousb.sourceforge.net/
4753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Michael Krufky055616a2012-10-02 00:56:06 -03004756LG2160 MEDIA DRIVER
4757M: Michael Krufky <mkrufky@linuxtv.org>
4758L: linux-media@vger.kernel.org
4759W: http://linuxtv.org/
4760W: http://github.com/mkrufky
4761Q: http://patchwork.linuxtv.org/project/linux-media/list/
4762T: git git://linuxtv.org/mkrufky/tuners.git
4763S: Maintained
4764F: drivers/media/dvb-frontends/lg2160.*
4765
Michael Krufky6f0e7722012-10-02 00:56:00 -03004766LGDT3305 MEDIA DRIVER
4767M: Michael Krufky <mkrufky@linuxtv.org>
4768L: linux-media@vger.kernel.org
4769W: http://linuxtv.org/
4770W: http://github.com/mkrufky
4771Q: http://patchwork.linuxtv.org/project/linux-media/list/
4772T: git git://linuxtv.org/mkrufky/tuners.git
4773S: Maintained
4774F: drivers/media/dvb-frontends/lgdt3305.*
4775
Rusty Russell568a17f2007-10-25 14:12:24 +10004776LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004778L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004779W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004780S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004781F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004782F: arch/x86/lguest/
4783F: drivers/lguest/
4784F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004785F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789W: http://www.ibm.com/linux/ltc/projects/ppc
4790S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004791F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004793LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4795M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004797L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004798Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004799T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004801F: Documentation/powerpc/
4802F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
4804LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004807L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004809F: arch/powerpc/platforms/powermac/
4810F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Grant Likely77a76362008-07-12 12:11:43 -06004812LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004813M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004814L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004815T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004817F: arch/powerpc/platforms/512x/
4818F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004821M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004824L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004825T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004827F: arch/powerpc/platforms/40x/
4828F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
Grant Likely260c02a2007-10-02 12:15:34 +10004830LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004832W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004833L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004834T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004836F: arch/powerpc/*/*virtex*
4837F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
Tom Rinie93adf12005-07-26 12:49:53 -07004839LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Vitaly Bordug <vitb@kernel.crashing.org>
4841M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004842W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004843L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004844S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004845F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004846
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004849W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004850L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004851S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004852F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004853F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
Olof Johanssonab06ff32006-09-06 14:44:54 -05004855LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004857L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004858S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004859F: arch/powerpc/platforms/pasemi/
4860F: drivers/*/*pasemi*
4861F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004865L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866S: Supported
4867
Harry Weia23ce6d2011-02-11 16:52:20 +01004868LIS3LV02D ACCELEROMETER DRIVER
4869M: Eric Piel <eric.piel@tremplin-utc.net>
4870S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004871F: Documentation/misc-devices/lis3lv02d
4872F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004873F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004874
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004875LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004876M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004878F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004879F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004880F: include/net/llc*
4881F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004882
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004883LM73 HARDWARE MONITOR DRIVER
4884M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4885L: lm-sensors@lm-sensors.org
4886S: Maintained
4887F: drivers/hwmon/lm73.c
4888
Jean Delvare156e2d12011-07-25 21:46:11 +02004889LM78 HARDWARE MONITOR DRIVER
4890M: Jean Delvare <khali@linux-fr.org>
4891L: lm-sensors@lm-sensors.org
4892S: Maintained
4893F: Documentation/hwmon/lm78
4894F: drivers/hwmon/lm78.c
4895
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004897M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004898L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004900F: Documentation/hwmon/lm83
4901F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
4903LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004904M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004905L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004907F: Documentation/hwmon/lm90
4908F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004910LME2510 MEDIA DRIVER
4911M: Malcolm Priestley <tvboxspy@gmail.com>
4912L: linux-media@vger.kernel.org
4913W: http://linuxtv.org/
4914Q: http://patchwork.linuxtv.org/project/linux-media/list/
4915S: Maintained
4916F: drivers/media/usb/dvb-usb-v2/lmedm04*
4917
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004918LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004919M: Peter Zijlstra <peterz@infradead.org>
4920M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004921T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004923F: Documentation/lockdep*.txt
4924F: Documentation/lockstat.txt
4925F: include/linux/lockdep.h
4926F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004927
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004928LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004929M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004930L: linux-ntfs-dev@lists.sourceforge.net
4931W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004934F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
Joern Engelef6ada32009-11-20 22:17:12 +01004936LogFS
4937M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304938M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004939L: logfs@logfs.org
4940W: logfs.org
4941S: Maintained
4942F: fs/logfs/
4943
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004944LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304945M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4946M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004947M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004948L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004949L: linux-scsi@vger.kernel.org
4950W: http://www.lsilogic.com/support
4951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004952F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304953F: drivers/scsi/mpt2sas/
4954F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004957M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958L: linux-scsi@vger.kernel.org
4959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004960F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Guenter Roecke5f5c992010-06-25 11:59:54 -07004962LTC4261 HARDWARE MONITOR DRIVER
4963M: Guenter Roeck <linux@roeck-us.net>
4964L: lm-sensors@lm-sensors.org
4965S: Maintained
4966F: Documentation/hwmon/ltc4261
4967F: drivers/hwmon/ltc4261.c
4968
Mike Frysinger81365c32008-10-29 14:01:12 -07004969LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004970M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004971M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004972M: Cyril Hrubis <chrubis@suse.cz>
4973M: Caspar Zhang <caspar@casparzhang.com>
4974M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004975L: ltp-list@lists.sourceforge.net (subscribers-only)
4976W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004977T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004978T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004979S: Maintained
4980
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004981M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004983L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004984L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4985W: http://www.linux-m32r.org/
4986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004987F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004990M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991L: linux-m68k@lists.linux-m68k.org
4992W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004993T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004996F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
4998M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005001L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005003F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
5005M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005006M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007W: http://www.tazenda.demon.co.uk/phil/linux-hp
5008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005009F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005011M88RS2000 MEDIA DRIVER
5012M: Malcolm Priestley <tvboxspy@gmail.com>
5013L: linux-media@vger.kernel.org
5014W: http://linuxtv.org/
5015Q: http://patchwork.linuxtv.org/project/linux-media/list/
5016S: Maintained
5017F: drivers/media/dvb-frontends/m88rs2000*
5018
Alexey Klimov07a092f2012-11-12 02:57:32 -03005019MA901 MASTERKIT USB FM RADIO DRIVER
5020M: Alexey Klimov <klimov.linux@gmail.com>
5021L: linux-media@vger.kernel.org
5022T: git git://linuxtv.org/media_tree.git
5023S: Maintained
5024F: drivers/media/radio/radio-ma901.c
5025
Jiri Benc64a327a2007-05-05 11:47:08 -07005026MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005027M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005028L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005029W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005030T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5031T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005033F: Documentation/networking/mac80211-injection.txt
5034F: include/net/mac80211.h
5035F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005036
Stefano Brivio1036d862007-12-23 04:46:27 +01005037MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005038M: Stefano Brivio <stefano.brivio@polimi.it>
5039M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005040L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005041W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5043T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005046
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005047MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005048M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005049L: netdev@vger.kernel.org
5050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: drivers/net/macvlan.c
5052F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005053
Michael Kerriskfaf16682005-07-31 22:34:47 -07005054MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005055M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005056W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005057L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005058S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005059
stephen hemminger44c14c12012-04-02 12:59:47 +00005060MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5061M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005062M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005063L: netdev@vger.kernel.org
5064S: Maintained
5065F: drivers/net/ethernet/marvell/sk*
5066
Stefano Brivio74cda162007-11-19 20:27:46 +01005067MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005068M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01005069L: libertas-dev@lists.infradead.org
5070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005071F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005072
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005073MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005074M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005075L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005076S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005077F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005078F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005080MARVELL MVNETA ETHERNET DRIVER
5081M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5082L: netdev@vger.kernel.org
5083S: Maintained
5084F: drivers/net/ethernet/marvell/mvneta.*
5085
Bing Zhaofcad5842011-07-13 13:11:58 -07005086MARVELL MWIFIEX WIRELESS DRIVER
5087M: Bing Zhao <bzhao@marvell.com>
5088L: linux-wireless@vger.kernel.org
5089S: Maintained
5090F: drivers/net/wireless/mwifiex/
5091
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005092MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005093M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005094L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005095S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005096F: drivers/net/wireless/mwl8k.c
5097
Pierre Ossman2a695672009-03-16 19:52:26 +01005098MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005099M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005100S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005101F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005102
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005104L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005105S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005106F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005107F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
Guenter Roeckca462082012-06-01 23:28:23 -07005109MAX16065 HARDWARE MONITOR DRIVER
5110M: Guenter Roeck <linux@roeck-us.net>
5111L: lm-sensors@lm-sensors.org
5112S: Maintained
5113F: Documentation/hwmon/max16065
5114F: drivers/hwmon/max16065.c
5115
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005116MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005117M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005118L: lm-sensors@lm-sensors.org
5119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: Documentation/hwmon/max6650
5121F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005122
Guenter Roecke89ab512013-03-08 08:13:09 -08005123MAX6697 HARDWARE MONITOR DRIVER
5124M: Guenter Roeck <linux@roeck-us.net>
5125L: lm-sensors@lm-sensors.org
5126S: Maintained
5127F: Documentation/hwmon/max6697
5128F: Documentation/devicetree/bindings/i2c/max6697.txt
5129F: drivers/hwmon/max6697.c
5130F: include/linux/platform_data/max6697.h
5131
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005132MAXIRADIO FM RADIO RECEIVER DRIVER
5133M: Hans Verkuil <hverkuil@xs4all.nl>
5134L: linux-media@vger.kernel.org
5135T: git git://linuxtv.org/media_tree.git
5136W: http://linuxtv.org
5137S: Maintained
5138F: drivers/media/radio/radio-maxiradio*
5139
Joe Perches127c49a2009-04-08 08:34:04 -07005140MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005141M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005142P: LinuxTV.org Project
5143L: linux-media@vger.kernel.org
5144W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005145Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005146T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005147S: Maintained
5148F: Documentation/dvb/
5149F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005150F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005151F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005152F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005153F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005154F: include/uapi/linux/dvb/
5155F: include/uapi/linux/videodev2.h
5156F: include/uapi/linux/media.h
5157F: include/uapi/linux/v4l2-*
5158F: include/uapi/linux/meye.h
5159F: include/uapi/linux/ivtv*
5160F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005161
Hans Verkuil6149a932012-11-23 07:21:19 -03005162MEDIAVISION PRO MOVIE STUDIO DRIVER
5163M: Hans Verkuil <hverkuil@xs4all.nl>
5164L: linux-media@vger.kernel.org
5165T: git git://linuxtv.org/media_tree.git
5166W: http://linuxtv.org
5167S: Odd Fixes
5168F: drivers/media/parport/pms*
5169
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005170MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005172L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005173W: http://megaraid.lsilogic.com
5174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005175F: Documentation/scsi/megaraid.txt
5176F: drivers/scsi/megaraid.*
5177F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005178
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005179MELLANOX ETHERNET DRIVER (mlx4_en)
5180M: Amir Vadai <amirv@mellanox.com>
5181L: netdev@vger.kernel.org
5182S: Supported
5183W: http://www.mellanox.com
5184Q: http://patchwork.ozlabs.org/project/netdev/list/
5185F: drivers/net/ethernet/mellanox/mlx4/en_*
5186
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005187MEMORY MANAGEMENT
5188L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005189W: http://www.linux-mm.org
5190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005192F: include/linux/gfp.h
5193F: include/linux/mmzone.h
5194F: include/linux/memory_hotplug.h
5195F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005196F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005197
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005198MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005199M: Johannes Weiner <hannes@cmpxchg.org>
5200M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005201M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005202M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005203L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005204L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005206F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005207F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005208
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005209MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005212W: http://www.linux-mtd.infradead.org/
5213Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005214T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005216F: drivers/mtd/
5217F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005218F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
James Hogan12285942012-10-10 12:59:49 +01005220METAG ARCHITECTURE
5221M: James Hogan <james.hogan@imgtec.com>
5222S: Supported
5223F: arch/metag/
5224F: Documentation/metag/
5225F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005226F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005227F: drivers/irqchip/irq-metag.c
5228F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005229F: drivers/tty/metag_da.c
5230F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005231
Michal Simekc6375b02009-03-27 14:25:52 +01005232MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005233M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005234L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005235W: http://www.monstr.eu/fdt/
5236T: git git://git.monstr.eu/linux-2.6-microblaze.git
5237S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005238F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
5240MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005241M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005243F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
5245MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005246M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005248W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005249T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005250Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005252F: Documentation/mips/
5253F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
Hans Verkuil08b76202012-11-23 07:15:42 -03005255MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5256M: Hans Verkuil <hverkuil@xs4all.nl>
5257L: linux-media@vger.kernel.org
5258T: git git://linuxtv.org/media_tree.git
5259W: http://linuxtv.org
5260S: Odd Fixes
5261F: drivers/media/radio/radio-miropcm20*
5262
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005264M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005266F: include/linux/module.h
5267F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
5269MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005271S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005272F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005273F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005274F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Jiri Slabyb9705b62008-04-30 00:53:48 -07005276MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005277M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005279F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005280F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005281
Alexey Klimov889b2f82012-11-16 17:43:59 -03005282MR800 AVERMEDIA USB FM RADIO DRIVER
5283M: Alexey Klimov <klimov.linux@gmail.com>
5284L: linux-media@vger.kernel.org
5285T: git git://linuxtv.org/media_tree.git
5286S: Maintained
5287F: drivers/media/radio/radio-mr800.c
5288
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005289MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005290M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005291L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005293F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005294
Anisse Astier0f1006b2009-12-17 11:28:49 +01005295MSI WMI SUPPORT
5296M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005297L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005298S: Supported
5299F: drivers/platform/x86/msi-wmi.c
5300
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005301MT9M032 SENSOR DRIVER
5302M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5303L: linux-media@vger.kernel.org
5304T: git git://linuxtv.org/media_tree.git
5305S: Maintained
5306F: drivers/media/i2c/mt9m032.c
5307F: include/media/mt9m032.h
5308
5309MT9P031 SENSOR DRIVER
5310M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5311L: linux-media@vger.kernel.org
5312T: git git://linuxtv.org/media_tree.git
5313S: Maintained
5314F: drivers/media/i2c/mt9p031.c
5315F: include/media/mt9p031.h
5316
5317MT9T001 SENSOR DRIVER
5318M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5319L: linux-media@vger.kernel.org
5320T: git git://linuxtv.org/media_tree.git
5321S: Maintained
5322F: drivers/media/i2c/mt9t001.c
5323F: include/media/mt9t001.h
5324
5325MT9V032 SENSOR DRIVER
5326M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5327L: linux-media@vger.kernel.org
5328T: git git://linuxtv.org/media_tree.git
5329S: Maintained
5330F: drivers/media/i2c/mt9v032.c
5331F: include/media/mt9v032.h
5332
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005333MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005334M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005335T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005337F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005338
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005339MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005340M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005341L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005342T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: drivers/mmc/
5345F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005346F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005347
David Brownell15a05802007-08-08 09:12:54 -07005348MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005349S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005350F: drivers/mmc/host/mmc_spi.c
5351F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005352
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005354M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005356F: Documentation/sound/oss/MultiSound
5357F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Jiri Slabyd7354102006-12-08 02:38:35 -08005359MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005360S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005361F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005362F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005363
Felipe Balbi550a7372008-07-24 12:27:36 +03005364MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005365M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005366L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005367T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005370
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005371MXL5007T MEDIA DRIVER
5372M: Michael Krufky <mkrufky@linuxtv.org>
5373L: linux-media@vger.kernel.org
5374W: http://linuxtv.org/
5375W: http://github.com/mkrufky
5376Q: http://patchwork.linuxtv.org/project/linux-media/list/
5377T: git git://linuxtv.org/mkrufky/tuners.git
5378S: Maintained
5379F: drivers/media/tuners/mxl5007t.*
5380
Brice Goglin2d3cf582008-05-17 12:45:36 +02005381MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005383L: netdev@vger.kernel.org
5384W: http://www.myri.com/scs/download-Myri10GE.html
5385S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005386F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005387
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005389S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005390F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
Daniel Mack23dc05a2011-05-18 11:28:38 +02005392NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5393M: Daniel Mack <zonque@gmail.com>
5394S: Maintained
5395L: alsa-devel@alsa-project.org
5396W: http://www.native-instruments.com
5397F: sound/usb/caiaq/
5398
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005400M: Petr Vandrovec <petr@vandrovec.name>
5401S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005402F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
5404NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005405M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406L: linux-scsi@vger.kernel.org
5407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005408F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005410NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005412L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005413W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005414S: Supported
5415F: drivers/infiniband/hw/nes/
5416
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005417NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005418M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005419L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005422
Jon Masonb2f5a052010-07-15 08:47:27 +00005423NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005424M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005425L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005427F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005428F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005429F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432P: Harald Welte
5433P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005434M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005435M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005436L: netfilter-devel@vger.kernel.org
5437L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005438L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439W: http://www.netfilter.org/
5440W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005441T: git git://1984.lsi.us.es/nf
5442T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005444F: include/linux/netfilter*
5445F: include/linux/netfilter/
5446F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005447F: include/uapi/linux/netfilter*
5448F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005449F: net/*/netfilter.c
5450F: net/*/netfilter/
5451F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
Paul Moore4cc67732006-09-25 15:57:13 -07005453NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005454M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005455W: http://netlabel.sf.net
5456L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005457S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005458F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005459F: include/net/netlabel.h
5460F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005463M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005465W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005467F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005468F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005469F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005471NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005474L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005475F: Documentation/blockdev/nbd.txt
5476F: drivers/block/nbd.c
5477F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005478F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Neil Horman6e436502009-10-05 03:56:55 +00005480NETWORK DROP MONITOR
5481M: Neil Horman <nhorman@tuxdriver.com>
5482L: netdev@vger.kernel.org
5483S: Maintained
5484W: https://fedorahosted.org/dropwatch/
5485F: net/core/drop_monitor.c
5486
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005488M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005489L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005490W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005491Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005492T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5493T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005495F: net/
5496F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005497F: include/linux/in.h
5498F: include/linux/net.h
5499F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005500F: include/uapi/linux/in.h
5501F: include/uapi/linux/net.h
5502F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
5504NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005505M: "David S. Miller" <davem@davemloft.net>
5506M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005507M: James Morris <jmorris@namei.org>
5508M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5509M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005510L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005511T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005513F: net/ipv4/
5514F: net/ipv6/
5515F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005516F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
David S. Miller73b76562012-10-16 14:08:40 -04005518NETWORKING [IPSEC]
5519M: Steffen Klassert <steffen.klassert@secunet.com>
5520M: Herbert Xu <herbert@gondor.apana.org.au>
5521M: "David S. Miller" <davem@davemloft.net>
5522L: netdev@vger.kernel.org
5523T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5524S: Maintained
5525F: net/xfrm/
5526F: net/key/
5527F: net/ipv4/xfrm*
5528F: net/ipv6/xfrm*
5529F: include/uapi/linux/xfrm.h
5530F: include/net/xfrm.h
5531
James Morris10e2ff12007-08-25 14:41:28 -07005532NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005533M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005534L: netdev@vger.kernel.org
5535S: Maintained
5536
John W. Linville29f8f632006-01-18 14:52:48 -08005537NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005538M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005539L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005540Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005541T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005542S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005543F: net/mac80211/
5544F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005545F: net/wireless/
5546F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005547F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005548F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005549F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005550F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005551
Joe Perches788873a2009-04-16 09:38:45 +00005552NETWORKING DRIVERS
5553L: netdev@vger.kernel.org
5554W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005555Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005556T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5557T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005558S: Odd Fixes
5559F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005560F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005561F: include/linux/netdevice.h
5562F: include/linux/arcdevice.h
5563F: include/linux/etherdevice.h
5564F: include/linux/fcdevice.h
5565F: include/linux/fddidevice.h
5566F: include/linux/hippidevice.h
5567F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005568F: include/uapi/linux/if_*
5569F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005570
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005571NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005572M: Sony Chacko <sony.chacko@qlogic.com>
5573M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005574L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005575W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005576S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005577F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005578
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005579NFC SUBSYSTEM
5580M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5581M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5582M: Samuel Ortiz <sameo@linux.intel.com>
5583L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005584L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005585S: Maintained
5586F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005587F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005588F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005589F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005590F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005592NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005593M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005594L: linux-nfs@vger.kernel.org
5595W: http://client.linux-nfs.org
5596T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005598F: fs/lockd/
5599F: fs/nfs/
5600F: fs/nfs_common/
5601F: net/sunrpc/
5602F: include/linux/lockd/
5603F: include/linux/nfs*
5604F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005605F: include/uapi/linux/nfs*
5606F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005608NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005609M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005610L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005611W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005612T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005613S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005614F: Documentation/filesystems/nilfs2.txt
5615F: fs/nilfs2/
5616F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005617
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005619M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005622F: Documentation/scsi/NinjaSCSI.txt
5623F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
5625NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005626M: GOTO Masanori <gotom@debian.or.jp>
5627M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005630F: Documentation/scsi/NinjaSCSI.txt
5631F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
Jon Masonfce8a7b2012-11-16 19:27:12 -07005633NTB DRIVER
5634M: Jon Mason <jon.mason@intel.com>
5635S: Supported
5636F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005637F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005638F: include/linux/ntb.h
5639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005641M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005643W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005644T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005646F: Documentation/filesystems/ntfs.txt
5647F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005649NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005650M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005651L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005653F: drivers/video/riva/
5654F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
Matthew Wilcox79461682012-11-10 08:54:53 -05005656NVM EXPRESS DRIVER
5657M: Matthew Wilcox <willy@linux.intel.com>
5658L: linux-nvme@lists.infradead.org
5659T: git git://git.infradead.org/users/willy/linux-nvme.git
5660S: Supported
5661F: drivers/block/nvme.c
5662F: include/linux/nvme.h
5663
Tony Lindgrenf5525782009-05-28 13:23:53 -07005664OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005665M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005666L: linux-omap@vger.kernel.org
5667W: http://www.muru.com/linux/omap/
5668W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005669Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005670T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005671S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005672F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005673F: drivers/i2c/busses/i2c-omap.c
5674F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005675
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005676OMAP DEVICE TREE SUPPORT
5677M: Benoît Cousson <b-cousson@ti.com>
5678M: Tony Lindgren <tony@atomide.com>
5679L: linux-omap@vger.kernel.org
5680L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5681S: Maintained
5682F: arch/arm/boot/dts/*omap*
5683F: arch/arm/boot/dts/*am3*
5684
Tony Lindgrenf5525782009-05-28 13:23:53 -07005685OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005686M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005687L: linux-omap@vger.kernel.org
5688S: Maintained
5689F: arch/arm/*omap*/*clock*
5690
5691OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005692M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005693L: linux-omap@vger.kernel.org
5694S: Maintained
5695F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005696F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005697
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005698OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5699M: Rajendra Nayak <rnayak@ti.com>
5700M: Paul Walmsley <paul@pwsan.com>
5701L: linux-omap@vger.kernel.org
5702S: Maintained
5703F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5704F: arch/arm/mach-omap2/powerdomain44xx.c
5705F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5706F: arch/arm/mach-omap2/clockdomain44xx.c
5707
Tony Lindgrenf5525782009-05-28 13:23:53 -07005708OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005709M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005710M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005711L: alsa-devel@alsa-project.org (subscribers-only)
5712L: linux-omap@vger.kernel.org
5713S: Maintained
5714F: sound/soc/omap/
5715
5716OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005717M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005718L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005719L: linux-omap@vger.kernel.org
5720S: Maintained
5721F: drivers/video/omap/
5722
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005723OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005724M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005725L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005726L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005727S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005728F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005729F: Documentation/arm/OMAP/DSS
5730
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005731OMAP HARDWARE SPINLOCK SUPPORT
5732M: Ohad Ben-Cohen <ohad@wizery.com>
5733L: linux-omap@vger.kernel.org
5734S: Maintained
5735F: drivers/hwspinlock/omap_hwspinlock.c
5736F: arch/arm/mach-omap2/hwspinlock.c
5737
Tony Lindgrenf5525782009-05-28 13:23:53 -07005738OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005739M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005740L: linux-omap@vger.kernel.org
5741S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005742F: drivers/mmc/host/omap.c
5743
5744OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305745M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305746L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005747L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305748S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005749F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005750
5751OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005753S: Maintained
5754F: drivers/char/hw_random/omap-rng.c
5755
Paul Walmsleyf400c822010-12-06 19:08:54 -07005756OMAP HWMOD SUPPORT
5757M: Benoît Cousson <b-cousson@ti.com>
5758M: Paul Walmsley <paul@pwsan.com>
5759L: linux-omap@vger.kernel.org
5760S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005761F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005762
5763OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5764M: Benoît Cousson <b-cousson@ti.com>
5765L: linux-omap@vger.kernel.org
5766S: Maintained
5767F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5768
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005769OMAP IMAGE SIGNAL PROCESSOR (ISP)
5770M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5771L: linux-media@vger.kernel.org
5772S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005773F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005774
Tony Lindgrenf5525782009-05-28 13:23:53 -07005775OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005776M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005777L: linux-usb@vger.kernel.org
5778L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005779T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005780S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005781F: drivers/usb/*/*omap*
5782F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005783
Kevin Hilman6d994712012-07-16 10:05:07 -07005784OMAP GPIO DRIVER
5785M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005786M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005787L: linux-omap@vger.kernel.org
5788S: Maintained
5789F: drivers/gpio/gpio-omap.c
5790
Bob Copeland0ad122d2008-07-25 19:45:18 -07005791OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005792M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005793L: linux-karma-devel@lists.sourceforge.net
5794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: Documentation/filesystems/omfs.txt
5796F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005797
Harald Weltec1986ee2005-11-13 16:06:29 -08005798OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005799M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005801F: drivers/char/pcmcia/cm4000_cs.c
5802F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005803F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005804
Harald Welte77c44ab2005-11-13 16:06:26 -08005805OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005806M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005808F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005809
Jonathan Corbet77d51402007-03-22 19:44:17 -03005810OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005811M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005812L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005813T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005814S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005815F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005816
Thomas Gleixner431bca72007-05-02 09:31:35 +02005817ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005819L: linux-mtd@lists.infradead.org
5820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005821F: drivers/mtd/onenand/
5822F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005823
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826L: osst-users@lists.sourceforge.net
5827L: linux-scsi@vger.kernel.org
5828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005829F: drivers/scsi/osst*
5830F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005832OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005834L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: Documentation/i2c/busses/i2c-ocores
5837F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005838
Grant Likely860c44c2009-10-26 16:49:49 -07005839OPEN FIRMWARE AND FLATTENED DEVICE TREE
5840M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005841M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005842L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005843W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005844T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005845S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005846F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005847F: drivers/of
5848F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005849F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005850K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005851K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005852
Jonas Bonn19f9d392011-06-04 22:00:38 +03005853OPENRISC ARCHITECTURE
5854M: Jonas Bonn <jonas@southpole.se>
5855W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005856L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005857S: Maintained
5858T: git git://openrisc.net/~jonas/linux
5859F: arch/openrisc
5860
Jesse Grossccb13522011-10-25 19:26:31 -07005861OPENVSWITCH
5862M: Jesse Gross <jesse@nicira.com>
5863L: dev@openvswitch.org
5864W: http://openvswitch.org
5865T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5866S: Maintained
5867F: net/openvswitch/
5868
Clemens Ladischaf399172011-01-10 16:32:54 +01005869OPL4 DRIVER
5870M: Clemens Ladisch <clemens@ladisch.de>
5871L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5872T: git git://git.alsa-project.org/alsa-kernel.git
5873S: Maintained
5874F: sound/drivers/opl4/
5875
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005877M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878L: oprofile-list@lists.sf.net
5879S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005880F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005881F: arch/*/oprofile/
5882F: drivers/oprofile/
5883F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005885ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005886M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005887M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005888L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5889W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005890T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005892F: Documentation/filesystems/ocfs2.txt
5893F: Documentation/filesystems/dlmfs.txt
5894F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005897L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005898W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005899W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005900S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005901F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005903OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005904M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005905M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005906L: osd-dev@open-osd.org
5907W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005908T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005909S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005910F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005911F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005912F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005913
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005914P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005915M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005916L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005917W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005919F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005920
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005921PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005922M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005923L: netdev@vger.kernel.org
5924S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005925F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005926
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005927PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005929L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005931F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005932
Steffen Klassert48fc2672010-08-13 10:10:46 -04005933PADATA PARALLEL EXECUTION MECHANISM
5934M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005935L: linux-crypto@vger.kernel.org
5936S: Maintained
5937F: kernel/padata.c
5938F: include/linux/padata.h
5939F: Documentation/padata.txt
5940
Harald Welte709ee532008-09-23 17:46:57 +02005941PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005943L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005945F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005946
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005947PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005948M: David Howells <dhowells@redhat.com>
5949M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005950L: linux-am33-list@redhat.com (moderated for non-subscribers)
5951W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005953F: Documentation/mn10300/
5954F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005957L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005958S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005959F: drivers/parport/
5960F: include/linux/parport*.h
5961F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005962F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005964PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005965M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Chris Wright <chrisw@sous-sol.org>
5967M: Alok Kataria <akataria@vmware.com>
5968M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005969L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005971F: Documentation/ia64/paravirt_ops.txt
5972F: arch/*/kernel/paravirt*
5973F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005974
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005976M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005977L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978W: http://www.torque.net/linux-pp.html
5979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: Documentation/blockdev/paride.txt
5981F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982
5983PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005984M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005985M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005986L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005988Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005989T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: arch/parisc/
5992F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
Jim Cromie1662d322006-10-06 00:43:59 -07005994PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005995M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005996L: lm-sensors@lm-sensors.org
5997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005998F: Documentation/hwmon/pc87360
5999F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006000
6001PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006002M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006005
Jean Delvare1ad107f2010-08-14 21:09:00 +02006006PC87427 HARDWARE MONITORING DRIVER
6007M: Jean Delvare <khali@linux-fr.org>
6008L: lm-sensors@lm-sensors.org
6009S: Maintained
6010F: Documentation/hwmon/pc87427
6011F: drivers/hwmon/pc87427.c
6012
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006013PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006014M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006015S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006016F: drivers/leds/leds-pca9532.c
6017F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006018
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006019PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006020M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006021L: linux-i2c@vger.kernel.org
6022S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006023F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006024
Khalid Aziz3971dae2012-04-12 12:49:13 -07006025PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006026M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006027S: Maintained
6028F: drivers/firmware/pcdp.*
6029
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006030PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006031M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006032L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006034F: Documentation/PCI/pci-error-recovery.txt
6035F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006036
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006038M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006039L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006040Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006041T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006043F: Documentation/PCI/
6044F: drivers/pci/
6045F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006048P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006049L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006050W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006051T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006053F: Documentation/pcmcia/
6054F: drivers/pcmcia/
6055F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
6057PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006058M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006059L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006061F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062
Steffen Klassert48fc2672010-08-13 10:10:46 -04006063PCRYPT PARALLEL CRYPTO ENGINE
6064M: Steffen Klassert <steffen.klassert@secunet.com>
6065L: linux-crypto@vger.kernel.org
6066S: Maintained
6067F: crypto/pcrypt.c
6068F: include/crypto/pcrypt.h
6069
Tejun Heoe72df0b2010-12-10 17:02:49 +01006070PER-CPU MEMORY ALLOCATOR
6071M: Tejun Heo <tj@kernel.org>
6072M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006073T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6074S: Maintained
6075F: include/linux/percpu*.h
6076F: mm/percpu*.c
6077F: arch/*/include/asm/percpu.h
6078
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006079PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006080M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006082F: include/linux/delayacct.h
6083F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006084
Ingo Molnar57c0c152009-09-21 12:20:38 +02006085PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006086M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6087M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006088M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006089M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006090T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006091S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006092F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006093F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006094F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006095F: arch/*/kernel/perf_event*.c
6096F: arch/*/kernel/*/perf_event*.c
6097F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006098F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006099F: arch/*/kernel/perf_callchain.c
6100F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006101
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006102PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006103M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006104L: linux-abi-devel@lists.sourceforge.net
6105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006106F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006107F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006108
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006109PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006110M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006111S: Supported
6112F: Documentation/networking/phonet.txt
6113F: include/linux/phonet.h
6114F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006115F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006116F: net/phonet/
6117
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006119M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120L: linux-mtd@lists.infradead.org
6121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006122F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123
Bruno Prémontefdbb102012-07-30 21:39:03 +02006124PICOLCD HID DRIVER
6125M: Bruno Prémont <bonbons@linux-vserver.org>
6126L: linux-input@vger.kernel.org
6127S: Maintained
6128F: drivers/hid/hid-picolcd*
6129
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006130PICOXCELL SUPPORT
6131M: Jamie Iles <jamie@jamieiles.com>
6132L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6133T: git git://github.com/jamieiles/linux-2.6-ji.git
6134S: Supported
6135F: arch/arm/mach-picoxcell
6136F: drivers/*/picoxcell*
6137F: drivers/*/*/picoxcell*
6138
Linus Walleij2744e8a2011-05-02 20:50:54 +02006139PIN CONTROL SUBSYSTEM
6140M: Linus Walleij <linus.walleij@linaro.org>
6141S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006142F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006143F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006144
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006145PIN CONTROLLER - ATMEL AT91
6146M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6148S: Maintained
6149F: drivers/pinctrl/pinctrl-at91.c
6150
Viresh Kumardeda8282012-03-28 22:27:07 +05306151PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006152M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306153L: spear-devel@list.st.com
6154L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6155W: http://www.st.com/spear
6156S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006157F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306158
Peter Osterlund249a6772005-09-27 21:45:30 -07006159PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006160M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006162F: drivers/block/pktcdvd.c
6163F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006164F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006165
GuanXuetaob31d8272011-01-16 00:35:49 +08006166PKUNITY SOC DRIVERS
6167M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6168W: http://mprc.pku.edu.cn/~guanxuetao/linux
6169S: Maintained
6170T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6171F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006172F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006173F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006174F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006175
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006176PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006177M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006178L: lm-sensors@lm-sensors.org
6179W: http://www.lm-sensors.org/
6180W: http://www.roeck-us.net/linux/drivers/
6181T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6182S: Maintained
6183F: Documentation/hwmon/pmbus
6184F: drivers/hwmon/pmbus/
6185F: include/linux/i2c/pmbus.h
6186
Anil Ravindranath89a36812009-08-25 17:35:18 -07006187PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006188M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006189L: linux-scsi@vger.kernel.org
6190W: http://www.pmc-sierra.com/
6191S: Supported
6192F: drivers/scsi/pmcraid.*
6193
jack wangdbf9bfe2009-10-14 16:19:21 +08006194PMC SIERRA PM8001 DRIVER
6195M: jack_wang@usish.com
6196M: lindar_liu@usish.com
6197L: linux-scsi@vger.kernel.org
6198S: Supported
6199F: drivers/scsi/pm8001/
6200
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006202M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006203T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006205F: fs/timerfd.c
6206F: include/linux/timer*
6207F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208
Anton Vorontsov3be86142007-07-15 04:43:36 +04006209POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Anton Vorontsov <cbou@mail.ru>
6211M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006212T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006214F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006215F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006216
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006218M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006219M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
Vitaly Wool999445d2007-01-04 13:07:03 +01006223PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006224M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006225L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006227F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006228
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006230M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231L: linux-ppp@vger.kernel.org
6232S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006233F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234
6235PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006236M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006238F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006239F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240
6241PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006244F: drivers/net/ppp/pppoe.c
6245F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
James Chapmana6d23702007-06-27 15:53:17 -07006247PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006249S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006250F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006251F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006252F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006253
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006254PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006255M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006256W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6257L: linuxpps@ml.enneenne.com (subscribers-only)
6258S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006259F: Documentation/pps/
6260F: drivers/pps/
6261F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006262
Harry Wei71a6d0a2011-05-11 15:13:33 -07006263PPTP DRIVER
6264M: Dmitry Kozlov <xeb@mail.ru>
6265L: netdev@vger.kernel.org
6266S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006267F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006268W: http://sourceforge.net/projects/accel-pptp
6269
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006271M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272L: kpreempt-tech@lists.sourceforge.net
6273W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006275F: Documentation/preempt-locking.txt
6276F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
6278PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006279M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006280L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006281W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006282S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006285PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006286M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006287L: linux-ide@vger.kernel.org
6288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006290
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006291PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006292M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006293L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006294L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006295S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006296F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006297
Geoff Levandf58a9d12006-11-23 00:46:51 +01006298PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006299M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006300L: linuxppc-dev@lists.ozlabs.org
6301L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006303F: arch/powerpc/boot/ps3*
6304F: arch/powerpc/include/asm/lv1call.h
6305F: arch/powerpc/include/asm/ps3*.h
6306F: arch/powerpc/platforms/ps3/
6307F: drivers/*/ps3*
6308F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006309F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006310F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006311F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006312
Jim Pariscffb4add2009-01-06 11:32:10 +00006313PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006314M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006315L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006316S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006317F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006318
Anton Vorontsov8defe592012-08-03 18:07:20 -07006319PSTORE FILESYSTEM
6320M: Anton Vorontsov <cbouatmailru@gmail.com>
6321M: Colin Cross <ccross@android.com>
6322M: Kees Cook <keescook@chromium.org>
6323M: Tony Luck <tony.luck@intel.com>
6324S: Maintained
6325T: git git://git.infradead.org/users/cbou/linux-pstore.git
6326F: fs/pstore/
6327F: include/linux/pstore*
6328F: drivers/firmware/efivars.c
6329F: drivers/acpi/apei/erst.c
6330
Richard Cochran7fbc4152012-03-10 01:55:53 +00006331PTP HARDWARE CLOCK SUPPORT
6332M: Richard Cochran <richardcochran@gmail.com>
6333S: Maintained
6334W: http://linuxptp.sourceforge.net/
6335F: Documentation/ABI/testing/sysfs-ptp
6336F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006337F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006338F: drivers/net/phy/dp83640*
6339F: drivers/ptp/*
6340F: include/linux/ptp_cl*
6341
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006342PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: Roland McGrath <roland@redhat.com>
6344M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006345S: Maintained
6346F: include/asm-generic/syscall.h
6347F: include/linux/ptrace.h
6348F: include/linux/regset.h
6349F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006350F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006351F: kernel/ptrace.c
6352
Michael Krufky83202042006-07-03 00:24:18 -07006353PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006355L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006356L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006357W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006358T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006360F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006361F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006362
Hans de Goede39532e62012-11-04 17:05:59 -03006363PWC WEBCAM DRIVER
6364M: Hans de Goede <hdegoede@redhat.com>
6365L: linux-media@vger.kernel.org
6366T: git git://linuxtv.org/media_tree.git
6367S: Maintained
6368F: drivers/media/usb/pwc/*
6369
Thierry Reding200efed2012-03-27 13:16:18 +02006370PWM SUBSYSTEM
6371M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006372L: linux-kernel@vger.kernel.org
6373S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006374W: http://gitorious.org/linux-pwm
6375T: git git://gitorious.org/linux-pwm/linux-pwm.git
6376F: Documentation/pwm.txt
6377F: Documentation/devicetree/bindings/pwm/
6378F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006379F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006380F: drivers/video/backlight/pwm_bl.c
6381F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006382
Eric Miao30ec2612008-06-12 15:21:41 -07006383PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Eric Miao <eric.y.miao@gmail.com>
6385M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006386M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006387L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006388T: git git://github.com/hzhuang1/linux.git
6389T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006391F: arch/arm/mach-pxa/
6392F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006393F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006394F: drivers/usb/gadget/pxa2*
6395F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006396F: sound/arm/pxa*
6397F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006399MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006400M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006401M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006402L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006403T: git git://github.com/hzhuang1/linux.git
6404T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006405S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006406F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006407
Pierre Ossman272f1332007-05-14 21:25:26 +02006408PXA MMCI DRIVER
6409S: Orphan
6410
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006411PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006412M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006413L: rtc-linux@googlegroups.com
6414S: Maintained
6415
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006416QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006417M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006418L: linux-rdma@vger.kernel.org
6419S: Supported
6420F: drivers/infiniband/hw/qib/
6421
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006422QLOGIC QLA1280 SCSI DRIVER
6423M: Michael Reed <mdr@sgi.com>
6424L: linux-scsi@vger.kernel.org
6425S: Maintained
6426F: drivers/scsi/qla1280.[ch]
6427
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006430M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431L: linux-scsi@vger.kernel.org
6432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006433F: Documentation/scsi/LICENSE.qla2xxx
6434F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Ravi Anand883c98f2010-04-28 11:45:49 +05306436QLOGIC QLA4XXX iSCSI DRIVER
6437M: Ravi Anand <ravi.anand@qlogic.com>
6438M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6439M: iscsi-driver@qlogic.com
6440L: linux-scsi@vger.kernel.org
6441S: Supported
6442F: drivers/scsi/qla4xxx/
6443
Ron Mercer5a4faa872006-07-25 00:40:21 -07006444QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006445M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006446M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006447M: linux-driver@qlogic.com
6448L: netdev@vger.kernel.org
6449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006450F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006451F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006452
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006453QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca382013-03-06 13:03:25 +00006454M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6455M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006456M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006457M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006458M: linux-driver@qlogic.com
6459L: netdev@vger.kernel.org
6460S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006461F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006462
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006463QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006464M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006465M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006466M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006467L: netdev@vger.kernel.org
6468S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006469F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006470
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473W: http://www.alarsen.net/linux/qnx4fs/
6474S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006475F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006476F: include/uapi/linux/qnx4_fs.h
6477F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
Antti Palosaari91952bc2012-10-01 12:28:46 -03006479QT1010 MEDIA DRIVER
6480M: Antti Palosaari <crope@iki.fi>
6481L: linux-media@vger.kernel.org
6482W: http://linuxtv.org/
6483W: http://palosaari.fi/linux/
6484Q: http://patchwork.linuxtv.org/project/linux-media/list/
6485T: git git://linuxtv.org/anttip/media_tree.git
6486S: Maintained
6487F: drivers/media/tuners/qt1010*
6488
Richard Kuo4f4567c2011-10-31 18:56:38 -05006489QUALCOMM HEXAGON ARCHITECTURE
6490M: Richard Kuo <rkuo@codeaurora.org>
6491L: linux-hexagon@vger.kernel.org
6492S: Supported
6493F: arch/hexagon/
6494
Hans Verkuil35e35402012-11-23 07:02:29 -03006495QUICKCAM PARALLEL PORT WEBCAMS
6496M: Hans Verkuil <hverkuil@xs4all.nl>
6497L: linux-media@vger.kernel.org
6498T: git git://linuxtv.org/media_tree.git
6499W: http://linuxtv.org
6500S: Odd Fixes
6501F: drivers/media/parport/*-qcam*
6502
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006503RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006504M: Yehuda Sadeh <yehuda@inktank.com>
6505M: Sage Weil <sage@inktank.com>
6506M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006507M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006508W: http://ceph.com/
6509T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006510S: Supported
6511F: drivers/block/rbd.c
6512F: drivers/block/rbd_types.h
6513
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006516L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006518F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006519F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520
Hans de Goedec6c9b342012-11-04 17:03:58 -03006521RADIOSHARK RADIO DRIVER
6522M: Hans de Goede <hdegoede@redhat.com>
6523L: linux-media@vger.kernel.org
6524T: git git://linuxtv.org/media_tree.git
6525S: Maintained
6526F: drivers/media/radio/radio-shark.c
6527
6528RADIOSHARK2 RADIO DRIVER
6529M: Hans de Goede <hdegoede@redhat.com>
6530L: linux-media@vger.kernel.org
6531T: git git://linuxtv.org/media_tree.git
6532S: Maintained
6533F: drivers/media/radio/radio-shark2.c
6534F: drivers/media/radio/radio-tea5777.c
6535
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006537M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006538L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006540F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541
Randy Dunlape7839f22008-10-12 16:11:45 -07006542RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006543P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006544M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006545M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006546M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006547L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006548L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006549W: http://rt2x00.serialmonkey.com/
6550S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006551T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006552F: drivers/net/wireless/rt2x00/
6553
Nick Piggin9db55792008-02-08 04:19:49 -08006554RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006555M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006557F: Documentation/blockdev/ramdisk.txt
6558F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006559
Matt Mackall9e95ce22005-04-16 15:25:56 -07006560RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006561M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006563F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006564
Matt Porter394b7012005-11-07 01:00:15 -08006565RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006566M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006567M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006569F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006571RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006572L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006573S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006574F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006575
6576RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Josh Triplett <josh@freedesktop.org>
6578M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006579S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006580T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006581F: Documentation/RCU/torture.txt
6582F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006583
Florian Fainellic1f766b2008-02-06 22:39:44 +01006584RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006586S: Maintained
6587
Florian Fainellidb17f392007-12-19 11:30:30 +01006588RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006589M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006590L: netdev@vger.kernel.org
6591S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006592F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006593
Andy Grovera09ed662009-02-24 15:30:41 +00006594RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006595M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006596L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006598F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006599
Josh Triplett595182b2006-10-04 02:17:21 -07006600READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006601M: Dipankar Sarma <dipankar@in.ibm.com>
6602M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006603W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006604S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006605T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006606F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006607X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006608F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006609F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006610X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006611
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006612REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006613M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006614L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006615Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006617F: Documentation/rtc.txt
6618F: drivers/rtc/
6619F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006620F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006623L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006625F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626
Mark Brownb83a3132011-05-11 19:59:58 +02006627REGISTER MAP ABSTRACTION
6628M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6629T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6630S: Supported
6631F: drivers/base/regmap/
6632F: include/linux/regmap.h
6633
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006634REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6635M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006636T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006637S: Maintained
6638F: drivers/remoteproc/
6639F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006640F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006641
Ivo van Doorne08976452008-04-12 19:23:55 +02006642RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006644L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006645W: http://wireless.kernel.org/
6646T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6647T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006648S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006649F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006650F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006651
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006652RICOH SMARTMEDIA/XD DRIVER
6653M: Maxim Levitsky <maximlevitsky@gmail.com>
6654S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006655F: drivers/mtd/nand/r852.c
6656F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006657
Maxim Levitsky92634122011-03-25 01:56:59 -07006658RICOH R5C592 MEMORYSTICK DRIVER
6659M: Maxim Levitsky <maximlevitsky@gmail.com>
6660S: Maintained
6661F: drivers/memstick/host/r592.*
6662
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663ROCKETPORT DRIVER
6664P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665W: http://www.comtrol.com
6666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006667F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006668F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669
6670ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006673W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006675F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006676F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006677F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
Antti Palosaari91952bc2012-10-01 12:28:46 -03006679RTL2830 MEDIA DRIVER
6680M: Antti Palosaari <crope@iki.fi>
6681L: linux-media@vger.kernel.org
6682W: http://linuxtv.org/
6683W: http://palosaari.fi/linux/
6684Q: http://patchwork.linuxtv.org/project/linux-media/list/
6685T: git git://linuxtv.org/anttip/media_tree.git
6686S: Maintained
6687F: drivers/media/dvb-frontends/rtl2830*
6688
Larry Finger59840482008-11-12 17:13:09 -06006689RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006690M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006691L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006692W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006693T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006694S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006695F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006696
Larry Finger59840482008-11-12 17:13:09 -06006697RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006698M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: Hin-Tak Leung <htl10@users.sourceforge.net>
6700M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006701L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006702W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006703T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006704S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006705F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006706
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006707RTL8192CE WIRELESS DRIVER
6708M: Larry Finger <Larry.Finger@lwfinger.net>
6709M: Chaoming Li <chaoming_li@realsil.com.cn>
6710L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006711W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006712T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6713S: Maintained
6714F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006715F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006716
6717S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006718M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006719L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006721F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006722
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723S390
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6725M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006727L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006728W: http://www.ibm.com/developerworks/linux/linux390/
6729S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006730F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006731F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006732F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006733F: Documentation/s390/
6734F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006735
6736S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006737M: Ursula Braun <ursula.braun@de.ibm.com>
6738M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006739M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006740L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006741W: http://www.ibm.com/developerworks/linux/linux390/
6742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006743F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006744
Felix Beckfeed9b62009-03-26 15:24:23 +01006745S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006746M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006747M: linux390@de.ibm.com
6748L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006749W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006750S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006751F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006752
Heiko Carstens5238da42006-02-11 17:56:01 -08006753S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006754M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006755M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006756L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006757W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006759F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Ursula Braundd96df22007-09-19 13:09:02 +02006761S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006763M: linux390@de.ibm.com
6764L: linux-s390@vger.kernel.org
6765W: http://www.ibm.com/developerworks/linux/linux390/
6766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006767F: drivers/s390/net/*iucv*
6768F: include/net/iucv/
6769F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006770
Ben Dooks4dde7f72008-06-30 22:40:38 +01006771S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006772M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006775F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006776
Hans Verkuil1f15a222012-11-23 07:45:29 -03006777SAA6588 RDS RECEIVER DRIVER
6778M: Hans Verkuil <hverkuil@xs4all.nl>
6779L: linux-media@vger.kernel.org
6780T: git git://linuxtv.org/media_tree.git
6781W: http://linuxtv.org
6782S: Odd Fixes
6783F: drivers/media/i2c/saa6588*
6784
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006785SAA7134 VIDEO4LINUX DRIVER
6786M: Mauro Carvalho Chehab <mchehab@redhat.com>
6787L: linux-media@vger.kernel.org
6788W: http://linuxtv.org
6789T: git git://linuxtv.org/media_tree.git
6790S: Odd fixes
6791F: Documentation/video4linux/saa7134/
6792F: drivers/media/pci/saa7134/
6793
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006795M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006796L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006797T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006799F: drivers/media/common/saa7146/
6800F: drivers/media/pci/saa7146/
6801F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
Corentin Chary92304a42011-12-05 12:38:35 -05006803SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006804M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006805L: platform-driver-x86@vger.kernel.org
6806S: Maintained
6807F: drivers/platform/x86/samsung-laptop.c
6808
Mark Brown4a109cc2010-09-24 10:50:46 +01006809SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006810M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006811L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6812S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006813F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006814
Jingoo Han0d89a282011-12-19 11:09:35 +09006815SAMSUNG FRAMEBUFFER DRIVER
6816M: Jingoo Han <jg1.han@samsung.com>
6817L: linux-fbdev@vger.kernel.org
6818S: Maintained
6819F: drivers/video/s3c-fb.c
6820
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006821SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6822M: Sangbeom Kim <sbkim73@samsung.com>
6823L: linux-kernel@vger.kernel.org
6824S: Supported
6825F: drivers/mfd/sec*.c
6826F: drivers/regulator/s2m*.c
6827F: drivers/regulator/s5m*.c
6828F: drivers/rtc/rtc-sec.c
6829F: include/linux/mfd/samsung/
6830
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006831SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6832M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6833L: linux-media@vger.kernel.org
6834L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6835S: Maintained
6836F: drivers/media/platform/s3c-camif/
6837F: include/media/s3c_camif.h
6838
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006839SAMSUNG S5C73M3 CAMERA DRIVER
6840M: Kyungmin Park <kyungmin.park@samsung.com>
6841M: Andrzej Hajda <a.hajda@samsung.com>
6842L: linux-media@vger.kernel.org
6843S: Supported
6844F: drivers/media/i2c/s5c73m3/*
6845
Alan Coxca749e22011-03-18 13:56:14 +00006846SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006847M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006848L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006849S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006850F: drivers/tty/serial
6851
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306852SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006853M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306854S: Maintained
6855F: include/linux/dw_dmac.h
6856F: drivers/dma/dw_dmac_regs.h
6857F: drivers/dma/dw_dmac.c
6858
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006859SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6860M: Seungwon Jeon <tgih.jun@samsung.com>
6861M: Jaehoon Chung <jh80.chung@samsung.com>
6862L: linux-mmc@vger.kernel.org
6863S: Maintained
6864F: include/linux/mmc/dw_mmc.h
6865F: drivers/mmc/host/dw_mmc*
6866
Thomas Gleixner88606e82010-12-14 21:37:13 +01006867TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006868M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006869M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006870T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006871S: Supported
6872F: include/linux/clocksource.h
6873F: include/linux/time.h
6874F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006875F: include/uapi/linux/time.h
6876F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006877F: kernel/time/clocksource.c
6878F: kernel/time/time*.c
6879F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006880F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006881
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006882TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006883M: Huang Shijie <shijie8@gmail.com>
6884M: Kang Yong <kangyong@telegent.com>
6885M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006886S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006887F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006888
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006890M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006892F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893
6894SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006895M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006896M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006897T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006899F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006900F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006901F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
Chen Liqin6bcf6732009-06-13 15:24:33 +08006903SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006904M: Chen Liqin <liqin.chen@sunplusct.com>
6905M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006906W: http://www.sunplusct.com
6907S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006908F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006909
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006911M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912L: linux-scsi@vger.kernel.org
6913W: http://www.kernel.dk
6914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006915F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916
Roland Dreierfb50a832010-10-07 09:54:53 -07006917SCSI RDMA PROTOCOL (SRP) INITIATOR
6918M: David Dillow <dillowda@ornl.gov>
6919L: linux-rdma@vger.kernel.org
6920S: Supported
6921W: http://www.openfabrics.org
6922Q: http://patchwork.kernel.org/project/linux-rdma/list/
6923T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6924F: drivers/infiniband/ulp/srp/
6925F: include/scsi/srp.h
6926
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006928M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929L: linux-scsi@vger.kernel.org
6930W: http://www.torque.net/sg
6931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006932F: drivers/scsi/sg.c
6933F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934
6935SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006936M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006938T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6939T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6940T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006942F: drivers/scsi/
6943F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944
6945SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006946M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947L: linux-scsi@vger.kernel.org
6948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006949F: Documentation/scsi/st.txt
6950F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951
6952SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006953M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006954M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006955M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006956L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006957W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006959F: Documentation/networking/sctp.txt
6960F: include/linux/sctp.h
6961F: include/net/sctp/
6962F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963
6964SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006965M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006966S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006967F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006968F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006969F: drivers/watchdog/scx200_wdt.c
6970F: drivers/i2c/busses/scx200*
6971F: drivers/mtd/maps/scx200_docflash.c
6972F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006973
6974SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006975M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006977F: drivers/char/scx200_gpio.c
6978F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006979
6980SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006983F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984
Sascha Sommer6a369132008-07-15 14:21:29 +02006985SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006986M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006987L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006989F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006990
Randy Dunlape7839f22008-10-12 16:11:45 -07006991SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006992M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006993L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006994T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6995S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006996F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006997F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006998
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006999SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007001L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007002L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007004F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005
Ben Dooks0d1bb412009-06-14 13:52:37 +01007006SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007007M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007008L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007009S: Maintained
7010F: drivers/mmc/host/sdhci-s3c.c
7011
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007012SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007013M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007014L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007015L: linux-mmc@vger.kernel.org
7016S: Maintained
7017F: drivers/mmc/host/sdhci-spear.c
7018
James Morris8711cca2008-12-04 03:19:45 +11007019SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007020M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007021L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007022T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007023W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007024S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007025F: security/
James Morris8711cca2008-12-04 03:19:45 +11007026
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007028M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029S: Supported
7030
7031SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007032M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007033M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007034M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007035L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007036W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007037T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007039F: include/linux/selinux*
7040F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007041F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042
John Johansenc1c124e2010-07-29 14:48:09 -07007043APPARMOR SECURITY MODULE
7044M: John Johansen <john.johansen@canonical.com>
7045L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7046W: apparmor.wiki.kernel.org
7047T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7048S: Supported
7049F: security/apparmor/
7050
Jiri Slabycef2cf02007-05-08 00:31:45 -07007051SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007052M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007054F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007055F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007056
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007057SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007058M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007060T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007062F: drivers/ata/
7063F: include/linux/ata.h
7064F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307066SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007067M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007068L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007069W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007070S: Supported
7071F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307072
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007073SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007074M: Sathya Perla <sathya.perla@emulex.com>
7075M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7076M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007077L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007078W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007079S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007080F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007081
Ben Hutchings8ceee662008-04-27 12:55:59 +01007082SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007083M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007084M: Ben Hutchings <bhutchings@solarflare.com>
7085L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007086S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007087F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007088
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007089SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007090M: Dimitri Sivanich <sivanich@sgi.com>
7091M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007093F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007094
7095SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007096M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007097L: linux-ia64@vger.kernel.org
7098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007099F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007100F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007101F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007104M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105L: linux-visws-devel@lists.sf.net
7106W: http://linux-visws.sf.net
7107S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007108F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109
Jack Steiner75312612008-08-15 00:40:42 -07007110SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007111M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007113F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007114
Hans Verkuil49cc6292012-11-30 07:13:29 -03007115SI470X FM RADIO RECEIVER I2C DRIVER
7116M: Hans Verkuil <hverkuil@xs4all.nl>
7117L: linux-media@vger.kernel.org
7118T: git git://linuxtv.org/media_tree.git
7119W: http://linuxtv.org
7120S: Odd Fixes
7121F: drivers/media/radio/si470x/radio-si470x-i2c.c
7122
7123SI470X FM RADIO RECEIVER USB DRIVER
7124M: Hans Verkuil <hverkuil@xs4all.nl>
7125L: linux-media@vger.kernel.org
7126T: git git://linuxtv.org/media_tree.git
7127W: http://linuxtv.org
7128S: Maintained
7129F: drivers/media/radio/si470x/radio-si470x-common.c
7130F: drivers/media/radio/si470x/radio-si470x.h
7131F: drivers/media/radio/si470x/radio-si470x-usb.c
7132
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007133SH_VEU V4L2 MEM2MEM DRIVER
7134M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7135L: linux-media@vger.kernel.org
7136S: Maintained
7137F: drivers/media/platform/sh_veu.c
7138F: include/media/sh_veu.h
7139
7140SH_VOU V4L2 OUTPUT DRIVER
7141M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7142L: linux-media@vger.kernel.org
7143S: Maintained
7144F: drivers/media/platform/sh_vou.c
7145F: include/media/sh_vou.h
7146
Len Brown6349d992009-08-14 15:07:14 -04007147SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007148M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007149L: sfi-devel@simplefirmware.org
7150W: http://simplefirmware.org/
7151T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007152S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007153F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007154F: drivers/sfi/
7155F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007156
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157SIMTEC EB110ATX (Chalice CATS)
7158P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007159P: Vincent Sanders <vince@simtec.co.uk>
7160M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161W: http://www.simtec.co.uk/products/EB110ATX/
7162S: Supported
7163
7164SIMTEC EB2410ITX (BAST)
7165P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007166P: Vincent Sanders <vince@simtec.co.uk>
7167M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168W: http://www.simtec.co.uk/products/EB2410ITX/
7169S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007170F: arch/arm/mach-s3c2410/mach-bast.c
7171F: arch/arm/mach-s3c2410/bast-ide.c
7172F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007174TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007175M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007176M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307177L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307178T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007179Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007180S: Supported
7181F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007182F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007183
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007184TI DAVINCI SERIES MEDIA DRIVER
7185M: Manjunath Hadli <manjunath.hadli@ti.com>
7186M: Prabhakar Lad <prabhakar.lad@ti.com>
7187L: linux-media@vger.kernel.org
7188L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7189W: http://linuxtv.org/
7190Q: http://patchwork.linuxtv.org/project/linux-media/list/
7191T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7192S: Supported
7193F: drivers/media/platform/davinci/
7194F: include/media/davinci/
7195
Francois Romieu92aab3c2005-07-30 13:11:18 +02007196SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007197M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007198L: netdev@vger.kernel.org
7199S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007200F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007201
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007203M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007205L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007207F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208
7209SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007210M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007213F: Documentation/fb/sisfb.txt
7214F: drivers/video/sis/
7215F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216
7217SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007218M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219W: http://www.winischhofer.at/linuxsisusbvga.shtml
7220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007221F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007223SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007225M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007226M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007227L: linux-mm@kvack.org
7228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007229F: include/linux/sl?b*.h
7230F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007231
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007232SLEEPABLE READ-COPY UPDATE (SRCU)
7233M: Lai Jiangshan <laijs@cn.fujitsu.com>
7234M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7235W: http://www.rdrop.com/users/paulmck/RCU/
7236S: Supported
7237T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7238F: include/linux/srcu*
7239F: kernel/srcu*
7240
Casey Schaufler66372842012-05-23 18:34:52 -07007241SMACK SECURITY MODULE
7242M: Casey Schaufler <casey@schaufler-ca.com>
7243L: linux-security-module@vger.kernel.org
7244W: http://schaufler-ca.com
7245T: git git://git.gitorious.org/smack-next/kernel.git
7246S: Maintained
7247F: Documentation/security/Smack.txt
7248F: security/smack/
7249
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007251M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007252S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007253F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
Sakari Ailuse8e31622012-11-12 18:14:39 -03007255SMIA AND SMIA++ IMAGE SENSOR DRIVER
7256M: Sakari Ailus <sakari.ailus@iki.fi>
7257L: linux-media@vger.kernel.org
7258S: Maintained
7259F: drivers/media/i2c/smiapp
7260F: include/media/smiapp.h
7261F: drivers/media/i2c/smiapp-pll.c
7262F: drivers/media/i2c/smiapp-pll.h
7263
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007264SMM665 HARDWARE MONITOR DRIVER
7265M: Guenter Roeck <linux@roeck-us.net>
7266L: lm-sensors@lm-sensors.org
7267S: Maintained
7268F: Documentation/hwmon/smm665
7269F: drivers/hwmon/smm665.c
7270
Steve Glendinning9df73052010-08-14 21:08:54 +02007271SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007272M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007273L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007274S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007275F: Documentation/hwmon/emc2103
7276F: drivers/hwmon/emc2103.c
7277
Hans de Goedea98d5062011-03-21 17:59:36 +01007278SMSC SCH5627 HARDWARE MONITOR DRIVER
7279M: Hans de Goede <hdegoede@redhat.com>
7280L: lm-sensors@lm-sensors.org
7281S: Supported
7282F: Documentation/hwmon/sch5627
7283F: drivers/hwmon/sch5627.c
7284
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007285SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007286M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007287L: lm-sensors@lm-sensors.org
7288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007289F: Documentation/hwmon/smsc47b397
7290F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007291
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007292SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007293M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007294L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007296F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007297F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007298
Steve Glendinning2cb37722008-12-11 20:54:30 -08007299SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007300M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007301L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007302S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007303F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007304
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007305SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007306M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007307L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007308S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007309F: drivers/video/smscufx.c
7310
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007311SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007313L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007314T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007315S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007316F: include/media/soc*
7317F: drivers/media/i2c/soc_camera/
7318F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007320SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007321M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007323F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007324
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007326M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007327L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007329F: drivers/md/
7330F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007331F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007334M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007337F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338
Michael Buesch61e115a2007-09-18 15:12:50 -04007339SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007340M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007341L: netdev@vger.kernel.org
7342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007343F: drivers/ssb/
7344F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007345
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007347M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007348L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007349W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007351F: Documentation/laptops/sony-laptop.txt
7352F: drivers/char/sonypi.c
7353F: drivers/platform/x86/sony-laptop.c
7354F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355
Alex Dubovbaf85322008-02-09 10:20:54 -08007356SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007357M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007358W: http://tifmxx.berlios.de/
7359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007360F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007361
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007363M: Jaroslav Kysela <perex@perex.cz>
7364M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007365L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007366W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007367T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007368T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007370F: Documentation/sound/
7371F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007372F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007373F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Mark Brownbd903bd2008-11-19 19:16:05 +00007375SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007376M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007377M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007378T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007379L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007380W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007382F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007383F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007384
Sam Ravnborg473321f2009-01-04 15:47:49 -08007385SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007386M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007388Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007389T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7390T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007392F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007393F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
David S. Miller6404fcc2010-03-16 01:00:17 -07007395SPARC SERIAL DRIVERS
7396M: "David S. Miller" <davem@davemloft.net>
7397L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007398T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7399T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007400S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007401F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007402F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007403F: drivers/tty/serial/sunhv.c
7404F: drivers/tty/serial/sunsab.c
7405F: drivers/tty/serial/sunsab.h
7406F: drivers/tty/serial/sunsu.c
7407F: drivers/tty/serial/sunzilog.c
7408F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007409
Christopher Li389325b2012-04-05 14:25:14 -07007410SPARSE CHECKER
7411M: "Christopher Li" <sparse@chrisli.org>
7412L: linux-sparse@vger.kernel.org
7413W: https://sparse.wiki.kernel.org/
7414T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7415T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7416S: Maintained
7417F: include/linux/compiler.h
7418
viresh kumarfc0c1952010-04-01 12:31:21 +01007419SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007420M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307421M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007422L: spear-devel@list.st.com
7423L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007424W: http://www.st.com/spear
7425S: Maintained
7426F: arch/arm/plat-spear/
7427
Viresh Kumar71e09a92012-04-20 22:39:48 +05307428SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007429M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307430M: Shiraz Hashim <shiraz.hashim@st.com>
7431L: spear-devel@list.st.com
7432L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7433W: http://www.st.com/spear
7434S: Maintained
7435F: arch/arm/mach-spear13xx/
7436
viresh kumarfc0c1952010-04-01 12:31:21 +01007437SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007438M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307439M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007440L: spear-devel@list.st.com
7441L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007442W: http://www.st.com/spear
7443S: Maintained
7444F: arch/arm/mach-spear3xx/
7445
7446SPEAR6XX MACHINE SUPPORT
7447M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307448M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007449M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007450L: spear-devel@list.st.com
7451L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007452W: http://www.st.com/spear
7453S: Maintained
7454F: arch/arm/mach-spear6xx/
7455
7456SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007457M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007458L: spear-devel@list.st.com
7459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007460W: http://www.st.com/spear
7461S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307462F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007463
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007464SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007465M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007466M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007467L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007468Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007469T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007471F: Documentation/spi/
7472F: drivers/spi/
7473F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007474F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007475
Jim Lewis2752e402006-09-29 02:01:19 -07007476SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007477M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7478M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007479L: netdev@vger.kernel.org
7480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007481F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007482F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007484SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007485M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007486L: linuxppc-dev@lists.ozlabs.org
7487L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007488W: http://www.ibm.com/developerworks/power/cell/
7489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007490F: Documentation/filesystems/spufs.txt
7491F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007492
Phillip Lougherfc555842009-01-05 08:46:29 +00007493SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007494M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007495L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7496W: http://squashfs.org.uk
7497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007498F: Documentation/filesystems/squashfs.txt
7499F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007500
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007502M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505
Linus Torvalds26e9a392008-10-17 09:50:12 -07007506STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007507M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007508L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007509S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007510
Linus Torvalds26e9a392008-10-17 09:50:12 -07007511STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007512M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007513T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007514L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007516F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007517
Joe Perchesc8c8b102011-07-05 09:42:12 -07007518STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7519M: Henk de Groot <pe1dnn@amsat.org>
7520S: Odd Fixes
7521F: drivers/staging/wlags49_h2/
7522F: drivers/staging/wlags49_h25/
7523
Joe Perchesc9555152011-07-05 09:42:01 -07007524STAGING - ASUS OLED
7525M: Jakub Schmidtke <sjakub@gmail.com>
7526S: Odd Fixes
7527F: drivers/staging/asus_oled/
7528
Joe Perchesebd3d012011-07-05 09:42:02 -07007529STAGING - COMEDI
7530M: Ian Abbott <abbotti@mev.co.uk>
7531M: Mori Hess <fmhess@users.sourceforge.net>
7532S: Odd Fixes
7533F: drivers/staging/comedi/
7534
Joe Perches8ca572c2011-07-05 09:42:03 -07007535STAGING - CRYSTAL HD VIDEO DECODER
7536M: Naren Sankar <nsankar@broadcom.com>
7537M: Jarod Wilson <jarod@wilsonet.com>
7538M: Scott Davilla <davilla@4pi.com>
7539M: Manu Abraham <abraham.manu@gmail.com>
7540S: Odd Fixes
7541F: drivers/staging/crystalhd/
7542
Joe Perches0f16ffc2011-07-05 09:42:04 -07007543STAGING - ECHO CANCELLER
7544M: Steve Underwood <steveu@coppice.org>
7545M: David Rowe <david@rowetel.com>
7546S: Odd Fixes
7547F: drivers/staging/echo/
7548
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007549STAGING - ET131X NETWORK DRIVER
7550M: Mark Einon <mark.einon@gmail.com>
7551S: Odd Fixes
7552F: drivers/staging/et131x/
7553
Joe Perchesa0138162011-07-05 15:21:34 -07007554STAGING - FLARION FT1000 DRIVERS
7555M: Marek Belisko <marek.belisko@gmail.com>
7556S: Odd Fixes
7557F: drivers/staging/ft1000/
7558
Joe Perchesec3fab92011-07-05 09:42:05 -07007559STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7560M: David Täht <d@teklibre.com>
7561S: Odd Fixes
7562F: drivers/staging/frontier/
7563
Joe Perches6c1bb422011-07-05 09:42:07 -07007564STAGING - INDUSTRIAL IO
7565M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007566L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007567S: Odd Fixes
7568F: drivers/staging/iio/
7569
Joe Perchesa0138162011-07-05 15:21:34 -07007570STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7571M: Jarod Wilson <jarod@wilsonet.com>
7572W: http://www.lirc.org/
7573S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007574F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007575
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007576STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007577M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007578M: Marc Dietrich <marvin24@gmx.de>
7579L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007580L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007581S: Maintained
7582F: drivers/staging/nvec/
7583
Joe Perchesa0138162011-07-05 15:21:34 -07007584STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7585M: Andres Salomon <dilinger@queued.net>
7586M: Chris Ball <cjb@laptop.org>
7587M: Jon Nettleton <jon.nettleton@gmail.com>
7588W: http://wiki.laptop.org/go/DCON
7589S: Odd Fixes
7590F: drivers/staging/olpc_dcon/
7591
Chris Kelly94cfdd12012-03-14 10:55:42 +00007592STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007593M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007594S: Maintained
7595F: drivers/staging/ozwpan/
7596
Joe Perchesa0138162011-07-05 15:21:34 -07007597STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007598M: Willy Tarreau <willy@meta-x.org>
7599S: Odd Fixes
7600F: drivers/staging/panel/
7601
Joe Perchesa0138162011-07-05 15:21:34 -07007602STAGING - REALTEK RTL8712U DRIVERS
7603M: Larry Finger <Larry.Finger@lwfinger.net>
7604M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7605S: Odd Fixes
7606F: drivers/staging/rtl8712/
7607
Joe Perches9629fa82011-07-05 09:42:09 -07007608STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7609M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7610S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007611F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007612
Joe Perchesa0138162011-07-05 15:21:34 -07007613STAGING - SOFTLOGIC 6x10 MPEG CODEC
7614M: Ben Collins <bcollins@bluecherry.net>
7615S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007616F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007617
7618STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7619M: William Hubbs <w.d.hubbs@gmail.com>
7620M: Chris Brannon <chris@the-brannons.com>
7621M: Kirk Reiser <kirk@braille.uwo.ca>
7622M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7623L: speakup@braille.uwo.ca
7624W: http://www.linux-speakup.org/
7625S: Odd Fixes
7626F: drivers/staging/speakup/
7627
7628STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007629M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007630S: Odd Fixes
7631F: drivers/staging/tidspbridge/
7632
Joe Perchesa0138162011-07-05 15:21:34 -07007633STAGING - USB ENE SM/MS CARD READER DRIVER
7634M: Al Cho <acho@novell.com>
7635S: Odd Fixes
7636F: drivers/staging/keucr/
7637
Joe Perchesb3e871c2011-07-05 09:42:10 -07007638STAGING - VIA VT665X DRIVERS
7639M: Forest Bond <forest@alittletooquiet.net>
7640S: Odd Fixes
7641F: drivers/staging/vt665?/
7642
Joe Perches81a9a522011-07-05 09:42:11 -07007643STAGING - WINBOND IS89C35 WLAN USB DRIVER
7644M: Pavel Machek <pavel@ucw.cz>
7645S: Odd Fixes
7646F: drivers/staging/winbond/
7647
Joe Perches709bcb02011-07-05 09:42:13 -07007648STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007649M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007650S: Odd Fixes
7651F: drivers/staging/xgifb/
7652
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007654M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007655S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007656F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007658SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007660W: http://sammy.net/sun3/
7661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: arch/m68k/kernel/*sun3*
7663F: arch/m68k/sun3*/
7664F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007665F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007666
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007667SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007668M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007669L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007671Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007672T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007673S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007674F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007675F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007676F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007678SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007679M: Len Brown <len.brown@intel.com>
7680M: Pavel Machek <pavel@ucw.cz>
7681M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007682L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007683S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007684F: Documentation/power/
7685F: arch/x86/kernel/acpi/
7686F: drivers/base/power/
7687F: kernel/power/
7688F: include/linux/suspend.h
7689F: include/linux/freezer.h
7690F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
7692SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007693M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694L: linux-video@atrey.karlin.mff.cuni.cz
7695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: Documentation/svga.txt
7697F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007699SWIOTLB SUBSYSTEM
7700M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7701L: linux-kernel@vger.kernel.org
7702S: Supported
7703F: lib/swiotlb.c
7704F: arch/*/kernel/pci-swiotlb.c
7705F: include/linux/swiotlb.h
7706
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307707SYNOPSYS ARC ARCHITECTURE
7708M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307709S: Supported
7710F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307711F: Documentation/devicetree/bindings/arc/
7712F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307713
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007715M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007717F: Documentation/filesystems/sysv-fs.txt
7718F: fs/sysv/
7719F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007721TARGET SUBSYSTEM
7722M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7723L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007724L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007725L: http://groups.google.com/group/linux-iscsi-target-dev
7726W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007727T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007728S: Supported
7729F: drivers/target/
7730F: include/target/
7731F: Documentation/target/
7732
Alan Cox4e688522008-04-30 00:52:11 -07007733TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007734M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007736F: Documentation/accounting/taskstats*
7737F: include/linux/taskstats*
7738F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007739
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007740TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007741M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007742L: netdev@vger.kernel.org
7743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007744F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007745F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007746F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007747
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007748TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007749M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7750M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007751W: http://tcp-lp-mod.sourceforge.net/
7752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007753F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007754
Antti Palosaari91952bc2012-10-01 12:28:46 -03007755TDA10071 MEDIA DRIVER
7756M: Antti Palosaari <crope@iki.fi>
7757L: linux-media@vger.kernel.org
7758W: http://linuxtv.org/
7759W: http://palosaari.fi/linux/
7760Q: http://patchwork.linuxtv.org/project/linux-media/list/
7761T: git git://linuxtv.org/anttip/media_tree.git
7762S: Maintained
7763F: drivers/media/dvb-frontends/tda10071*
7764
7765TDA18212 MEDIA DRIVER
7766M: Antti Palosaari <crope@iki.fi>
7767L: linux-media@vger.kernel.org
7768W: http://linuxtv.org/
7769W: http://palosaari.fi/linux/
7770Q: http://patchwork.linuxtv.org/project/linux-media/list/
7771T: git git://linuxtv.org/anttip/media_tree.git
7772S: Maintained
7773F: drivers/media/tuners/tda18212*
7774
7775TDA18218 MEDIA DRIVER
7776M: Antti Palosaari <crope@iki.fi>
7777L: linux-media@vger.kernel.org
7778W: http://linuxtv.org/
7779W: http://palosaari.fi/linux/
7780Q: http://patchwork.linuxtv.org/project/linux-media/list/
7781T: git git://linuxtv.org/anttip/media_tree.git
7782S: Maintained
7783F: drivers/media/tuners/tda18218*
7784
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007785TDA18271 MEDIA DRIVER
7786M: Michael Krufky <mkrufky@linuxtv.org>
7787L: linux-media@vger.kernel.org
7788W: http://linuxtv.org/
7789W: http://github.com/mkrufky
7790Q: http://patchwork.linuxtv.org/project/linux-media/list/
7791T: git git://linuxtv.org/mkrufky/tuners.git
7792S: Maintained
7793F: drivers/media/tuners/tda18271*
7794
Michael Krufkye48307a2012-10-02 00:56:33 -03007795TDA827x MEDIA DRIVER
7796M: Michael Krufky <mkrufky@linuxtv.org>
7797L: linux-media@vger.kernel.org
7798W: http://linuxtv.org/
7799W: http://github.com/mkrufky
7800Q: http://patchwork.linuxtv.org/project/linux-media/list/
7801T: git git://linuxtv.org/mkrufky/tuners.git
7802S: Maintained
7803F: drivers/media/tuners/tda8290.*
7804
Michael Krufky66cf9212012-10-02 00:56:28 -03007805TDA8290 MEDIA DRIVER
7806M: Michael Krufky <mkrufky@linuxtv.org>
7807L: linux-media@vger.kernel.org
7808W: http://linuxtv.org/
7809W: http://github.com/mkrufky
7810Q: http://patchwork.linuxtv.org/project/linux-media/list/
7811T: git git://linuxtv.org/mkrufky/tuners.git
7812S: Maintained
7813F: drivers/media/tuners/tda8290.*
7814
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007815TDA9840 MEDIA DRIVER
7816M: Hans Verkuil <hverkuil@xs4all.nl>
7817L: linux-media@vger.kernel.org
7818T: git git://linuxtv.org/media_tree.git
7819W: http://linuxtv.org
7820S: Maintained
7821F: drivers/media/i2c/tda9840*
7822
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007823TEA5761 TUNER DRIVER
7824M: Mauro Carvalho Chehab <mchehab@redhat.com>
7825L: linux-media@vger.kernel.org
7826W: http://linuxtv.org
7827T: git git://linuxtv.org/media_tree.git
7828S: Odd fixes
7829F: drivers/media/tuners/tea5761.*
7830
7831TEA5767 TUNER DRIVER
7832M: Mauro Carvalho Chehab <mchehab@redhat.com>
7833L: linux-media@vger.kernel.org
7834W: http://linuxtv.org
7835T: git git://linuxtv.org/media_tree.git
7836S: Maintained
7837F: drivers/media/tuners/tea5767.*
7838
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007839TEA6415C MEDIA DRIVER
7840M: Hans Verkuil <hverkuil@xs4all.nl>
7841L: linux-media@vger.kernel.org
7842T: git git://linuxtv.org/media_tree.git
7843W: http://linuxtv.org
7844S: Maintained
7845F: drivers/media/i2c/tea6415c*
7846
7847TEA6420 MEDIA DRIVER
7848M: Hans Verkuil <hverkuil@xs4all.nl>
7849L: linux-media@vger.kernel.org
7850T: git git://linuxtv.org/media_tree.git
7851W: http://linuxtv.org
7852S: Maintained
7853F: drivers/media/i2c/tea6420*
7854
Jiri Pirko3d249d42011-11-11 22:16:48 +00007855TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007856M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007857L: netdev@vger.kernel.org
7858S: Supported
7859F: drivers/net/team/
7860F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007861F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007862
Vivien Didelot7d029122013-01-04 16:18:14 -05007863TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7864M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7865S: Maintained
7866F: arch/x86/platform/ts5500/
7867
Sean Young40ad4a32012-11-19 10:32:53 -03007868TECHNOTREND USB IR RECEIVER
7869M: Sean Young <sean@mess.org>
7870L: linux-media@vger.kernel.org
7871S: Maintained
7872F: drivers/media/rc/ttusbir.c
7873
Erik Gilling84b94142010-06-09 15:35:53 -07007874TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007875M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007876L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007877Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7878T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007879S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007880K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007881
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007882TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007883M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007884L: netdev@vger.kernel.org
7885S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007886F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007887
Alan Cox4e688522008-04-30 00:52:11 -07007888Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007889M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007891F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007892
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007893TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007894M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007895M: Max Filippov <jcmvbkbc@gmail.com>
7896L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007898F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007899
Zhang Ruid3fb6952012-11-15 08:58:27 +08007900THERMAL
7901M: Zhang Rui <rui.zhang@intel.com>
7902L: linux-pm@vger.kernel.org
7903T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7904S: Supported
7905F: drivers/thermal/
7906F: include/linux/thermal.h
7907
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007908THINGM BLINK(1) USB RGB LED DRIVER
7909M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7910S: Maintained
7911F: drivers/hid/hid-thingm.c
7912
Alan Cox4e688522008-04-30 00:52:11 -07007913THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007914M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007915L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007916L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007917W: http://ibm-acpi.sourceforge.net
7918W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007919T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007921F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007922
Alex Dubov4020f2d2006-10-04 02:15:37 -07007923TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007924M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007926F: drivers/misc/tifm*
7927F: drivers/mmc/host/tifm_sd.c
7928F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007929
M R Swami Reddy152ad442012-04-02 20:02:31 +05307930TI LM49xxx FAMILY ASoC CODEC DRIVERS
7931M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307932M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307933L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7934S: Maintained
7935F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307936F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307937
Kim, Milo0edd8072012-12-17 16:01:17 -08007938TI LP855x BACKLIGHT DRIVER
7939M: Milo Kim <milo.kim@ti.com>
7940S: Maintained
7941F: Documentation/backlight/lp855x-driver.txt
7942F: drivers/video/backlight/lp855x_bl.c
7943F: include/linux/platform_data/lp855x.h
7944
Kim, Milofaf13f62012-12-10 05:27:03 +00007945TI LP8727 CHARGER DRIVER
7946M: Milo Kim <milo.kim@ti.com>
7947S: Maintained
7948F: drivers/power/lp8727_charger.c
7949F: include/linux/platform_data/lp8727.h
7950
Kim, Milo22f12292012-12-10 05:27:55 +00007951TI LP8788 MFD DRIVER
7952M: Milo Kim <milo.kim@ti.com>
7953S: Maintained
7954F: drivers/iio/adc/lp8788_adc.c
7955F: drivers/leds/leds-lp8788.c
7956F: drivers/mfd/lp8788*.c
7957F: drivers/power/lp8788-charger.c
7958F: drivers/regulator/lp8788-*.c
7959F: include/linux/mfd/lp8788*.h
7960
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007961TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007962M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007963L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7964S: Maintained
7965F: sound/soc/codecs/twl4030*
7966
Luciano Coelho90921012011-11-20 21:40:41 +02007967TI WILINK WIRELESS DRIVERS
7968M: Luciano Coelho <coelho@ti.com>
7969L: linux-wireless@vger.kernel.org
7970W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7971W: http://wireless.kernel.org/en/users/Drivers/wl1251
7972T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7973S: Maintained
7974F: drivers/net/wireless/ti/
7975F: include/linux/wl12xx.h
7976
Per Lidene86eaa32006-01-12 16:45:18 +01007977TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Jon Maloy <jon.maloy@ericsson.com>
7979M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007980L: netdev@vger.kernel.org (core kernel code)
7981L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007982W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007983S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007984F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007985F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007986
Chris Metcalf867e3592010-05-28 23:09:12 -04007987TILE ARCHITECTURE
7988M: Chris Metcalf <cmetcalf@tilera.com>
7989W: http://www.tilera.com/scm/
7990S: Supported
7991F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007992F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007993F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007994F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007995
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007997M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007998L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999W: http://sourceforge.net/projects/tlan/
8000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008001F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008002F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008004TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008005M: Kentaro Takeda <takedakn@nttdata.co.jp>
8006M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008007L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8008L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008009L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8010L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8011W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008012T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008014F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008015
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008016TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008017M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008018L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008019S: Maintained
8020F: drivers/platform/x86/topstar-laptop.c
8021
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008023L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008024S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008025F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026
8027TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029L: tlinux-users@tce.toshiba-dme.co.jp
8030W: http://www.buzzard.org.uk/toshiba/
8031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008032F: drivers/char/toshiba.c
8033F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008034F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035
Pierre Ossmand719f902009-03-24 21:06:09 +01008036TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008037M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008038M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008039L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008040S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008041F: drivers/mmc/host/tmio_mmc*
8042F: drivers/mmc/host/sh_mobile_sdhi.c
8043F: include/linux/mmc/tmio.h
8044F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008045
Hugh Dickins98f32602009-05-21 20:33:58 +01008046TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008047M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008048L: linux-mm@kvack.org
8049S: Maintained
8050F: include/linux/shmem_fs.h
8051F: mm/shmem.c
8052
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008053TM6000 VIDEO4LINUX DRIVER
8054M: Mauro Carvalho Chehab <mchehab@redhat.com>
8055L: linux-media@vger.kernel.org
8056W: http://linuxtv.org
8057T: git git://linuxtv.org/media_tree.git
8058S: Odd fixes
8059F: drivers/media/usb/tm6000/
8060
Alan Cox4e688522008-04-30 00:52:11 -07008061TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008062M: Kent Yoder <key@linux.vnet.ibm.com>
8063M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008064W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008065M: Marcel Selhorst <tpmdd@selhorst.net>
8066M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008067W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008068L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008070F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008071
Joe Perchesd6f005a2009-10-26 16:49:40 -07008072TRACING
8073M: Steven Rostedt <rostedt@goodmis.org>
8074M: Frederic Weisbecker <fweisbec@gmail.com>
8075M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008076T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008077S: Maintained
8078F: Documentation/trace/ftrace.txt
8079F: arch/*/*/*/ftrace.h
8080F: arch/*/kernel/ftrace.c
8081F: include/*/ftrace.h
8082F: include/linux/trace*.h
8083F: include/trace/
8084F: kernel/trace/
8085
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008087M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008088T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008090K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091
Alan Cox4e688522008-04-30 00:52:11 -07008092TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008093M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008094M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008095S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008096T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008097F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008098F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008099F: include/linux/serial_core.h
8100F: include/linux/serial.h
8101F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008102F: include/uapi/linux/serial_core.h
8103F: include/uapi/linux/serial.h
8104F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008105
Antti Palosaari91952bc2012-10-01 12:28:46 -03008106TUA9001 MEDIA DRIVER
8107M: Antti Palosaari <crope@iki.fi>
8108L: linux-media@vger.kernel.org
8109W: http://linuxtv.org/
8110W: http://palosaari.fi/linux/
8111Q: http://patchwork.linuxtv.org/project/linux-media/list/
8112T: git git://linuxtv.org/anttip/media_tree.git
8113S: Maintained
8114F: drivers/media/tuners/tua9001*
8115
Grant Grundler740db6d2008-02-17 11:53:49 -07008116TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008118L: netdev@vger.kernel.org
8119S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008120F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121
8122TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008123M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124W: http://vtun.sourceforge.net/tun
8125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008126F: Documentation/networking/tuntap.txt
8127F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008129TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008130M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008132F: drivers/tc/
8133F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008134
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008136M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137L: linux-scsi@vger.kernel.org
8138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008139F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008141UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008142M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008143M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008144L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008145T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008146W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008148F: Documentation/filesystems/ubifs.txt
8149F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008150
Alan Coxcc2020e2008-05-19 14:21:51 +01008151UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008152M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008153W: http://www.uclinux.org/
8154L: uclinux-dev@uclinux.org (subscribers-only)
8155S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008156F: arch/m68k/*/*_no.*
8157F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008158
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008159UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008160M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008161W: http://uclinux-h8.sourceforge.jp/
8162S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008163F: arch/h8300/
8164F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008165F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008166
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008168M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008170F: Documentation/filesystems/udf.txt
8171F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
Alan Coxcc2020e2008-05-19 14:21:51 +01008173UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008174M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008176F: Documentation/filesystems/ufs.txt
8177F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008178
David Herrmann0a09d3a2012-06-10 15:16:28 +02008179UHID USERSPACE HID IO DRIVER:
8180M: David Herrmann <dh.herrmann@googlemail.com>
8181L: linux-input@vger.kernel.org
8182S: Maintained
8183F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008184F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008185
David Vrabel18332a82008-09-17 16:34:44 +01008186ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008187L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008188S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008189F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008190F: include/linux/uwb.h
8191F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008192
GuanXuetaob31d8272011-01-16 00:35:49 +08008193UNICORE32 ARCHITECTURE:
8194M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8195W: http://mprc.pku.edu.cn/~guanxuetao/linux
8196S: Maintained
8197T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8198F: arch/unicore32/
8199
Tony Finchd8379ab2009-11-27 15:50:30 +00008200UNIFDEF
8201M: Tony Finch <dot@dotat.at>
8202W: http://dotat.at/prog/unifdef
8203S: Maintained
8204F: scripts/unifdef.c
8205
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008207M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208W: http://www.kernel.dk
8209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: Documentation/cdrom/
8211F: drivers/cdrom/cdrom.c
8212F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008213F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308215UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8216M: Vinayak Holikatti <vinholikatti@gmail.com>
8217M: Santosh Y <santoshsy@gmail.com>
8218L: linux-scsi@vger.kernel.org
8219S: Supported
8220F: Documentation/scsi/ufs.txt
8221F: drivers/scsi/ufs/
8222
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008223UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008224M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008225W: http://www.linux-mtd.infradead.org/
8226L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008227T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008228S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008229F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008230F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008231F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008232
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008233UNSORTED BLOCK IMAGES (UBI) Fastmap
8234M: Richard Weinberger <richard@nod.at>
8235L: linux-mtd@lists.infradead.org
8236S: Maintained
8237F: drivers/mtd/ubi/fastmap.c
8238
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008240M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008241L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008243F: Documentation/usb/acm.txt
8244F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008246USB AR5523 WIRELESS DRIVER
8247M: Pontus Fuchs <pontus.fuchs@gmail.com>
8248L: linux-wireless@vger.kernel.org
8249S: Maintained
8250F: drivers/net/wireless/ath/ar5523/
8251
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008252USB ATTACHED SCSI
8253M: Matthew Wilcox <willy@linux.intel.com>
8254M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008255M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008256L: linux-usb@vger.kernel.org
8257L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008258S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008259F: drivers/usb/storage/uas.c
8260
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008262M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008263L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008265F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008266F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008268USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008269M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008270L: linux-usb@vger.kernel.org
8271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008272F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008273
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008274USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008275M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008276L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008277W: http://www.linux-usb.org/usbnet
8278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008280
Alan Coxcc2020e2008-05-19 14:21:51 +01008281USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008282M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008283L: rio500-users@lists.sourceforge.net
8284W: http://rio500.sourceforge.net
8285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008286F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008289M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008290L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008292F: Documentation/usb/ehci.txt
8293F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008294
David Brownell69ae9e32006-11-14 02:03:31 -08008295USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008296M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008297L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008298W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008299T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008301F: drivers/usb/gadget/
8302F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008303
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008304USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008305M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008306L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008307T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008309F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008310F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
matt mooney857aab32011-06-17 15:50:46 -07008312USB/IP DRIVERS
8313M: Matt Mooney <mfm@muteddisk.com>
8314L: linux-usb@vger.kernel.org
8315S: Maintained
8316F: drivers/staging/usbip/
8317
Olav Kongas959eea22005-11-03 17:38:14 +02008318USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008319M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008320L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008322F: drivers/usb/host/isp116x*
8323F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008324
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008326M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008327L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008329F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008330
8331USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008332M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008333L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008334L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335S: Maintained
8336W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008337F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338
Clemens Ladischaf399172011-01-10 16:32:54 +01008339USB MIDI DRIVER
8340M: Clemens Ladisch <clemens@ladisch.de>
8341L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8342T: git git://git.alsa-project.org/alsa-kernel.git
8343S: Maintained
8344F: sound/usb/midi.*
8345
Linus Torvalds1da177e2005-04-16 15:20:36 -07008346USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008347M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008348L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008350F: Documentation/usb/ohci.txt
8351F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352
Matthias Urlichsba460e42005-07-14 00:33:47 -07008353USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008354M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008355L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008357F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008358
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008360M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008361L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008362L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363W: http://pegasus2.sourceforge.net/
8364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008365F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366
Felipe Balbid3ad5582012-05-21 16:24:49 +03008367USB PHY LAYER
8368M: Felipe Balbi <balbi@ti.com>
8369L: linux-usb@vger.kernel.org
8370T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8371S: Maintained
8372F: drivers/usb/phy/
8373F: drivers/usb/otg/
8374
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008375USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008376M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008377L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008379F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380
8381USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008382M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008383L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008385W: http://pegasus2.sourceforge.net/
8386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008387F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388
Alan Cox4e688522008-04-30 00:52:11 -07008389USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008391L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008393F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008394
8395USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008396M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008397L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008398S: Maintained
8399W: http://geocities.com/i0xox0i
8400W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008401F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008402
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008404M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008407F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408
8409USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008410M: Peter Berger <pberger@brimson.com>
8411M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008412L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008414F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415
8416USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008417M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008418L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008420F: Documentation/usb/usb-serial.txt
8421F: drivers/usb/serial/generic.c
8422F: drivers/usb/serial/usb-serial.c
8423F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008426M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008427L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008429F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430
8431USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008432M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008433L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008435F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
8437USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008438M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008439L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440W: http://www.connecttech.com
8441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008442F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008443
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008444USB SMSC75XX ETHERNET DRIVER
8445M: Steve Glendinning <steve.glendinning@shawell.net>
8446L: netdev@vger.kernel.org
8447S: Maintained
8448F: drivers/net/usb/smsc75xx.*
8449
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008450USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008451M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008452L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008454F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008455
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008456USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008457M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008458L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008459L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008460T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461W: http://www.linux-projects.org
8462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008463F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008464F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465
8466USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008467M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008468L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008470T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008472F: Documentation/usb/
8473F: drivers/net/usb/
8474F: drivers/usb/
8475F: include/linux/usb.h
8476F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477
8478USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008479M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008480L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008482F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483
David Brownell69ae9e32006-11-14 02:03:31 -08008484USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008485M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008486L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008487W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008489F: drivers/net/usb/usbnet.c
8490F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008492USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008493M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008494L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008495L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008496T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008497W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008498S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008499F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008500F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008502USB VISION DRIVER
8503M: Hans Verkuil <hverkuil@xs4all.nl>
8504L: linux-media@vger.kernel.org
8505T: git git://linuxtv.org/media_tree.git
8506W: http://linuxtv.org
8507S: Odd Fixes
8508F: drivers/media/usb/usbvision/
8509
Laurent Pinchart8282da42012-10-04 02:32:42 +02008510USB WEBCAM GADGET
8511M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8512L: linux-usb@vger.kernel.org
8513S: Maintained
8514F: drivers/usb/gadget/*uvc*.c
8515F: drivers/usb/gadget/webcam.c
8516
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008517USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008518M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008519L: linux-wireless@vger.kernel.org
8520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008521F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008522
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008523USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008524M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008525L: linux-usb@vger.kernel.org
8526S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008527F: drivers/usb/host/xhci*
8528F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008529
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008531L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008533S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008534F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008535
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008536USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008537M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008538L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008539L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008540T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008541W: http://royale.zerezo.com/zr364xx/
8542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008543F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008544F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008545
Randy Dunlape7839f22008-10-12 16:11:45 -07008546USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008547M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008548M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549L: user-mode-linux-devel@lists.sourceforge.net
8550L: user-mode-linux-user@lists.sourceforge.net
8551W: http://user-mode-linux.sourceforge.net
8552S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008553F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008554F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008555F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008556F: fs/hostfs/
8557F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008558
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008559USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008560M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008561M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008563F: Documentation/DocBook/uio-howto.tmpl
8564F: drivers/uio/
8565F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008566
Karel Zak256cccb2012-06-01 10:13:09 +02008567UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008568M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008569L: util-linux@vger.kernel.org
8570W: http://en.wikipedia.org/wiki/Util-linux
8571T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008572S: Maintained
8573
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008574UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008575M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008576L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008577W: http://dev.gentoo.org/~spock/projects/uvesafb/
8578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008579F: Documentation/fb/uvesafb.txt
8580F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008581
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008582VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008583M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008585F: Documentation/filesystems/vfat.txt
8586F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587
Alex Williamsoncba33452012-07-31 08:16:22 -06008588VFIO DRIVER
8589M: Alex Williamson <alex.williamson@redhat.com>
8590L: kvm@vger.kernel.org
8591S: Maintained
8592F: Documentation/vfio.txt
8593F: drivers/vfio/
8594F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008595F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008596
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008597VIDEOBUF2 FRAMEWORK
8598M: Pawel Osciak <pawel@osciak.com>
8599M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008600M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008601L: linux-media@vger.kernel.org
8602S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008603F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008604F: include/media/videobuf2-*
8605
Amit Shah9a824462010-03-23 18:23:09 +05308606VIRTIO CONSOLE DRIVER
8607M: Amit Shah <amit.shah@redhat.com>
8608L: virtualization@lists.linux-foundation.org
8609S: Maintained
8610F: drivers/char/virtio_console.c
8611F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008612F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308613
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308614VIRTIO CORE, NET AND BLOCK DRIVERS
8615M: Rusty Russell <rusty@rustcorp.com.au>
8616M: "Michael S. Tsirkin" <mst@redhat.com>
8617L: virtualization@lists.linux-foundation.org
8618S: Maintained
8619F: drivers/virtio/
8620F: drivers/net/virtio_net.c
8621F: drivers/block/virtio_blk.c
8622F: include/linux/virtio_*.h
8623
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008624VIRTIO HOST (VHOST)
8625M: "Michael S. Tsirkin" <mst@redhat.com>
8626L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008627L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008628L: netdev@vger.kernel.org
8629S: Maintained
8630F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008631F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008632
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008634M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008636F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637
Harald Weltef0bf7f62009-06-17 20:22:39 +02008638VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008639M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008640M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008641S: Maintained
8642F: drivers/mmc/host/via-sdmmc.c
8643
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008644VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008645M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008646L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008647S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008648F: include/linux/via-core.h
8649F: include/linux/via-gpio.h
8650F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008651F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008652
Francois Romieu01f20732007-01-26 00:57:17 -08008653VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008654M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008655L: netdev@vger.kernel.org
8656S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008657F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008658
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008659VIVI VIRTUAL VIDEO DRIVER
8660M: Hans Verkuil <hverkuil@xs4all.nl>
8661L: linux-media@vger.kernel.org
8662T: git git://linuxtv.org/media_tree.git
8663W: http://linuxtv.org
8664S: Maintained
8665F: drivers/media/platform/vivi*
8666
Patrick McHardybe7f8272007-10-23 20:26:36 -07008667VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008668M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008669L: netdev@vger.kernel.org
8670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008671F: drivers/net/macvlan.c
8672F: include/linux/if_*vlan.h
8673F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008674
Florian Fainelli55e331c2009-06-16 15:33:53 -07008675VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008676M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008677L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008678S: Maintained
8679F: drivers/vlynq/vlynq.c
8680F: include/linux/vlynq.h
8681
Martyn Welch390beae2012-05-03 17:52:36 +01008682VME SUBSYSTEM
8683M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008684M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008685M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8686L: devel@driverdev.osuosl.org
8687S: Maintained
8688T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8689F: Documentation/vme_api.txt
8690F: drivers/staging/vme/
8691F: drivers/vme/
8692F: include/linux/vme*
8693
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008694VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008695M: Shreyas Bhatewara <sbhatewara@vmware.com>
8696M: "VMware, Inc." <pv-drivers@vmware.com>
8697L: netdev@vger.kernel.org
8698S: Maintained
8699F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008700
Alok Kataria851b1642009-10-13 14:51:05 -07008701VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008702M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008703M: VMware PV-Drivers <pv-drivers@vmware.com>
8704L: linux-scsi@vger.kernel.org
8705S: Maintained
8706F: drivers/scsi/vmw_pvscsi.c
8707F: drivers/scsi/vmw_pvscsi.h
8708
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008709VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008710M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008711M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008712W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008713W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008714T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008716F: drivers/regulator/
8717F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008718
Juerg Haefligerab413192006-09-24 20:54:04 +02008719VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008720M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008721L: lm-sensors@lm-sensors.org
8722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008723F: Documentation/hwmon/vt1211
8724F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008725
Roger Lucas1de9e372005-11-26 20:20:05 +01008726VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008727M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008728L: lm-sensors@lm-sensors.org
8729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008730F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008731
Tony Olech88095e72011-05-14 16:48:13 -04008732VUB300 USB to SDIO/SD/MMC bridge chip
8733M: Tony Olech <tony.olech@elandigitalsystems.com>
8734L: linux-mmc@vger.kernel.org
8735L: linux-usb@vger.kernel.org
8736S: Supported
8737F: drivers/mmc/host/vub300.c
8738
Linus Torvalds1da177e2005-04-16 15:20:36 -07008739W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008740M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008742F: Documentation/w1/
8743F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008744
Charles Spirakis13927072006-07-05 18:05:15 +02008745W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008746M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008747L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008749F: Documentation/hwmon/w83791d
8750F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008751
Rudolf Marek61db0112006-12-12 18:18:30 +01008752W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008753M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008754L: lm-sensors@lm-sensors.org
8755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008756F: Documentation/hwmon/w83793
8757F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008758
Jean Delvaree3760b42010-10-28 20:31:49 +02008759W83795 HARDWARE MONITORING DRIVER
8760M: Jean Delvare <khali@linux-fr.org>
8761L: lm-sensors@lm-sensors.org
8762S: Maintained
8763F: drivers/hwmon/w83795.c
8764
Linus Torvalds1da177e2005-04-16 15:20:36 -07008765W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008766M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008768F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008769
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008770WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008771M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008772L: linux-watchdog@vger.kernel.org
8773W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008774T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008776F: Documentation/watchdog/
8777F: drivers/watchdog/
8778F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008779F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008780
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008782M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008783L: linux-scsi@vger.kernel.org
8784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008785F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008786
David Herrmannb22e00f2011-09-06 13:50:40 +02008787WIIMOTE HID DRIVER
8788M: David Herrmann <dh.herrmann@googlemail.com>
8789L: linux-input@vger.kernel.org
8790S: Maintained
8791F: drivers/hid/hid-wiimote*
8792
David Härdemane258b802009-09-21 17:04:53 -07008793WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008794M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008795S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008796F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008797
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008798WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008799M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008800M: linux-wimax@intel.com
8801L: wimax@linuxwimax.org
8802S: Supported
8803W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008804F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008805F: include/linux/wimax/debug.h
8806F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008807F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008808F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008809
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008810WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008811M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008813F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008814
Linus Torvalds1da177e2005-04-16 15:20:36 -07008815WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008816M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008817L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008818W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008820F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821
Mark Brownfebf1df2008-04-02 00:51:09 -04008822WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008823M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8824M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008825L: linux-input@vger.kernel.org
8826T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8827W: http://opensource.wolfsonmicro.com/node/7
8828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008829F: drivers/input/touchscreen/*wm97*
8830F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008831
Mark Brown055bcbc2010-08-13 14:18:12 +01008832WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008833M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008834L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008835T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008836T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008837W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008838S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008839F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008840F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008841F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008842F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008843F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008844F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008845F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008846F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008847F: drivers/input/misc/wm831x-on.c
8848F: drivers/input/touchscreen/wm831x-ts.c
8849F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008850F: drivers/mfd/arizona*
8851F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008852F: drivers/power/wm83*.c
8853F: drivers/rtc/rtc-wm83*.c
8854F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008855F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008856F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008857F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008858F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008859F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008860F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008861F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008862F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008863F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008864F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008865
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008866WORKQUEUE
8867M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008868T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8869S: Maintained
8870F: include/linux/workqueue.h
8871F: kernel/workqueue.c
8872F: Documentation/workqueue.txt
8873
Linus Torvalds1da177e2005-04-16 15:20:36 -07008874X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008875M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008877S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008878F: Documentation/networking/x25*
8879F: include/net/x25*
8880F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008881
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008882X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008883M: Thomas Gleixner <tglx@linutronix.de>
8884M: Ingo Molnar <mingo@redhat.com>
8885M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008886M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008887T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008889F: Documentation/x86/
8890F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008891
Matthew Garrettd0944852010-02-11 10:40:13 -05008892X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008893M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008894L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008895T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008896S: Maintained
8897F: drivers/platform/x86
8898
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008899X86 MCE INFRASTRUCTURE
8900M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008901M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008902L: linux-edac@vger.kernel.org
8903S: Maintained
8904F: arch/x86/kernel/cpu/mcheck/*
8905
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008906XC2028/3028 TUNER DRIVER
8907M: Mauro Carvalho Chehab <mchehab@redhat.com>
8908L: linux-media@vger.kernel.org
8909W: http://linuxtv.org
8910T: git git://linuxtv.org/media_tree.git
8911S: Maintained
8912F: drivers/media/tuners/tuner-xc2028.*
8913
Ian Campbellc4468082011-04-27 15:26:46 -07008914XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008915M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008916M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008917L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8918L: virtualization@lists.linux-foundation.org
8919S: Supported
8920F: arch/x86/xen/
8921F: drivers/*/xen-*front.c
8922F: drivers/xen/
8923F: arch/x86/include/asm/xen/
8924F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008925F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008926
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008927XEN HYPERVISOR ARM
8928M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8929L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8930S: Supported
8931F: arch/arm/xen/
8932F: arch/arm/include/asm/xen/
8933
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008934XEN NETWORK BACKEND DRIVER
8935M: Ian Campbell <ian.campbell@citrix.com>
8936L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8937L: netdev@vger.kernel.org
8938S: Supported
8939F: drivers/net/xen-netback/*
8940
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008941XEN PCI SUBSYSTEM
8942M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008943L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008944S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008945F: arch/x86/pci/*xen*
8946F: drivers/pci/*xen*
8947
8948XEN SWIOTLB SUBSYSTEM
8949M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008950L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008951S: Supported
8952F: arch/x86/xen/*swiotlb*
8953F: drivers/xen/*swiotlb*
8954
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955XFS FILESYSTEM
8956P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008957M: Ben Myers <bpm@sgi.com>
8958M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008959M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008960L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008961W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008962T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008964F: Documentation/filesystems/xfs.txt
8965F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008967XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008968M: Anirudha Sarangi <anirudh@xilinx.com>
8969M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008970S: Maintained
8971F: drivers/net/ethernet/xilinx/xilinx_axienet*
8972
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008973XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008974M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008975W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008977F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008978
Peter Korsgaard238b8722006-12-06 20:35:17 -08008979XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008980M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008981L: linux-serial@vger.kernel.org
8982S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008983F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008984
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008986M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987L: linux-hams@vger.kernel.org
8988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008989F: drivers/net/hamradio/yam*
8990F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008991
Henkaf64a5e2005-10-12 15:02:56 +02008992YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008993M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008994L: usbb2k-api-dev@nongnu.org
8995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008996F: Documentation/input/yealink.txt
8997F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008998
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009000M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001W: http://yaina.de/jreuter/
9002W: http://www.qsl.net/dl1bke/
9003L: linux-hams@vger.kernel.org
9004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009005F: Documentation/networking/z8530drv.txt
9006F: drivers/net/hamradio/*scc.c
9007F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009008
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009009ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009010M: Daniel Drake <dsd@gentoo.org>
9011M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009012W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009013L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009014L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009016F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009017
Linus Torvalds1da177e2005-04-16 15:20:36 -07009018ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009020L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009022T: Mercurial http://linuxtv.org/hg/v4l-dvb
9023S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009024F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009026ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009027M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009028S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009029F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009030
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009032M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009033L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009034Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009035T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009036S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009037F: *
9038F: */