blob: c6ed9df8b999dcaf8445122ac61af6dedb8f30a0 [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 Whitcroft0a920b5b2007-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/
Rob Landley2315cb12013-05-28 13:47:58 -0500181F: net/9p/
182F: include/net/9p/
183F: include/uapi/linux/virtio_9p.h
184F: include/trace/events/9p.h
185
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800231M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800452F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456L: linux-scsi@vger.kernel.org
457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: drivers/scsi/aha152x*
459F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Hannes Reinecke64624d42007-10-19 10:32:29 +0200461AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aic7xxx/
466F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200467
Hans Verkuil450500a2012-11-23 07:11:33 -0300468AIMSLAB FM RADIO RECEIVER DRIVER
469M: Hans Verkuil <hverkuil@xs4all.nl>
470L: linux-media@vger.kernel.org
471T: git git://linuxtv.org/media_tree.git
472W: http://linuxtv.org
473S: Maintained
474F: drivers/media/radio/radio-aimslab*
475
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700476AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700477M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700478L: linux-aio@kvack.org
479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700480F: fs/aio.c
481F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700485L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486W: http://www.linux-usb.org/SpeedTouch/
487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700488F: drivers/usb/atm/speedtch.c
489F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Pierre Ossman272f1332007-05-14 21:25:26 +0200491ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700494F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200495
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700497M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100498L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700500F: Documentation/i2c/busses/i2c-ali1563
501F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700505M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500506M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700507S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700508L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700509F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Tobias Klauseradf92512011-02-09 10:58:29 +0100511ALTERA UART/JTAG UART SERIAL DRIVERS
512M: Tobias Klauser <tklauser@distanz.ch>
513L: linux-serial@vger.kernel.org
514L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
515S: Maintained
516F: drivers/tty/serial/altera_uart.c
517F: drivers/tty/serial/altera_jtaguart.c
518F: include/linux/altera_uart.h
519F: include/linux/altera_jtaguart.h
520
Andreas Herrmann512d1022011-05-25 20:43:31 +0200521AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100522M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200523L: lm-sensors@lm-sensors.org
524S: Maintained
525F: Documentation/hwmon/fam15h_power
526F: drivers/hwmon/fam15h_power.c
527
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700530L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700532F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700533
Jordan Crousef90b8112006-01-06 00:12:14 -0800534AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800535P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700536L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800537W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: drivers/char/hw_random/geode-rng.c
540F: drivers/crypto/geode*
541F: drivers/video/geode/
542F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800543
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200544AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200545M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200546L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100547T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200548S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800549F: drivers/iommu/amd_iommu*.[ch]
550F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200551
Peter Orubae7f5b302008-07-28 18:44:11 +0200552AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100553M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700554L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700556F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200557
Stelian Pop284f42b2006-12-12 18:18:31 +0100558AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100560S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200561F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100562
Tom Tuckerf94b5332006-09-22 15:22:48 -0700563AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700564M: Tom Tucker <tom@opengridcomputing.com>
565M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700566L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700568F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700569
Hans Verkuil531fca12012-11-23 06:53:24 -0300570ANALOG DEVICES INC AD9389B DRIVER
571M: Hans Verkuil <hans.verkuil@cisco.com>
572L: linux-media@vger.kernel.org
573S: Maintained
574F: drivers/media/i2c/ad9389b*
575
576ANALOG DEVICES INC ADV7604 DRIVER
577M: Hans Verkuil <hans.verkuil@cisco.com>
578L: linux-media@vger.kernel.org
579S: Maintained
580F: drivers/media/i2c/adv7604*
581
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200583M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100584L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000585L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700586W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100588F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200589F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000591F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100592F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000593
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400594ANALOG DEVICES INC ASOC DRIVERS
595L: uclinux-dist-devel@blackfin.uclinux.org
596L: alsa-devel@alsa-project.org (moderated for non-subscribers)
597W: http://blackfin.uclinux.org/
598S: Supported
599F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400600
Johannes Berg42269062006-07-25 16:15:50 +0200601AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700602M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000603L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700604L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700606F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200609M: Jiri Kosina <jkosina@suse.cz>
610S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700611F: arch/x86/kernel/apm_32.c
612F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800613F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200614F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700617M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618L: linux-input@vger.kernel.org
619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700620F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700621
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200623M: Henrik Rydberg <rydberg@euromail.se>
624L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700626F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700629M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700631F: drivers/net/appletalk/
632F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Viresh Kumara4801672011-02-22 15:46:07 +0530634ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700635M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530636L: linux-ide@vger.kernel.org
637S: Maintained
638F: include/linux/pata_arasan_cf_data.h
639F: drivers/ata/pata_arasan_cf.c
640
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700642M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700644F: drivers/video/arcfb.c
645F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700648M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700650F: arch/arm/lib/floppydma.S
651F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Will Deacon6f965212011-07-01 14:38:53 +0100653ARM PMU PROFILING AND DEBUGGING
654M: Will Deacon <will.deacon@arm.com>
655S: Maintained
656F: arch/arm/kernel/perf_event*
657F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100658F: arch/arm/include/asm/pmu.h
659F: arch/arm/kernel/hw_breakpoint.c
660F: arch/arm/include/asm/hw_breakpoint.h
661
Russell Kingd4275352009-04-16 14:05:27 +0100662ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700663M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100665W: http://www.arm.linux.org.uk/
666S: Maintained
667F: arch/arm/
668
Stephen Boydd323c2432012-10-24 11:00:29 -0700669ARM SUB-ARCHITECTURES
670L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800671S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700672F: arch/arm/mach-*/
673F: arch/arm/plat-*/
674T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
675
Russell Kingcefbf4e2009-11-22 17:40:28 +0000676ARM PRIMECELL AACI PL041 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: sound/arm/aaci.*
680
681ARM PRIMECELL CLCD PL110 DRIVER
682M: Russell King <linux@arm.linux.org.uk>
683S: Maintained
684F: drivers/video/amba-clcd.*
685
686ARM PRIMECELL KMI PL050 DRIVER
687M: Russell King <linux@arm.linux.org.uk>
688S: Maintained
689F: drivers/input/serio/ambakmi.*
690F: include/linux/amba/kmi.h
691
Russell King2761f5c2007-05-24 06:56:08 +0200692ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000693M: Russell King <linux@arm.linux.org.uk>
694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700695F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000696F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200697
Russell King1b4304e2013-02-11 15:26:27 +0000698ARM PRIMECELL UART PL010 AND PL011 DRIVERS
699M: Russell King <linux@arm.linux.org.uk>
700S: Maintained
701F: drivers/tty/serial/amba-pl01*.c
702F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703
Russell Kingcefbf4e2009-11-22 17:40:28 +0000704ARM PRIMECELL BUS SUPPORT
705M: Russell King <linux@arm.linux.org.uk>
706S: Maintained
707F: drivers/amba/
708F: include/linux/amba/bus.h
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713S: Maintained
714
Sergey Lapin9c784f92008-08-03 02:29:48 +0100715ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100718S: Maintained
719
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700721M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800723S: Maintained
724
Maxime Ripard1b106692012-11-15 21:51:26 +0100725ARM/Allwinner A1X SoC support
726M: Maxime Ripard <maxime.ripard@free-electrons.com>
727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
728S: Maintained
729F: arch/arm/mach-sunxi/
730
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800731ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700732M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800733M: Nicolas Ferre <nicolas.ferre@atmel.com>
734M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200736W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800737W: http://www.linux4sam.org
738S: Supported
739F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100740
Rob Herring986cf2e2011-06-22 11:28:53 -0500741ARM/CALXEDA HIGHBANK ARCHITECTURE
742M: Rob Herring <rob.herring@calxeda.com>
743L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
744S: Maintained
745F: arch/arm/mach-highbank/
746
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300747ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
748M: Anton Vorontsov <avorontsov@mvista.com>
749S: Maintained
750F: arch/arm/mach-cns3xxx/
751T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
752
Alexander Shiyan386ab512012-11-17 17:57:24 +0400753ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
754M: Alexander Shiyan <shc_work@mail.ru>
755L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
756S: Odd Fixes
757F: arch/arm/mach-clps711x/
758
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800759ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100760M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000761M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100764F: arch/arm/mach-ep93xx/
765F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800766
767ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800770S: Maintained
771
Russell Kingd4275352009-04-16 14:05:27 +0100772ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700773M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700775S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100776F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700777F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100778
Mike Rapoportd48134e2008-08-20 09:03:26 +0100779ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100782S: Maintained
783
Hubert Feurstein94150092009-10-07 08:36:07 +0100784ARM/CONTEC MICRO9 MACHINE SUPPORT
785M: Hubert Feurstein <hubert.feurstein@contec.at>
786S: Maintained
787F: arch/arm/mach-ep93xx/micro9.c
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700790M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791S: Maintained
792
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200793ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100794M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700795L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100796T: git git://git.berlios.de/gemini-board
797S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300798F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200799
Barry Songa990cbd2011-07-12 21:44:10 +0800800ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
801M: Barry Song <baohua.song@csr.com>
802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
803S: Maintained
804F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800805F: drivers/dma/sirf-dma.c
806F: drivers/i2c/busses/i2c-sirf.c
807F: drivers/pinctrl/pinctrl-sirf.c
808F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800809
Russell Kingd4275352009-04-16 14:05:27 +0100810ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100813W: http://www.arm.linux.org.uk/
814S: Maintained
815F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700816F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100817
Russell Kinga9da4f72008-07-12 21:42:04 +0100818ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Daniel Ribeiro <drwyrm@gmail.com>
820M: Stefan Schmidt <stefan@openezx.org>
821M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200822L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100823W: http://www.openezx.org/
824S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200825T: topgit git://git.openezx.org/openezx.git
826F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100827
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200828ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100829M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100831S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700832T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300833F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200834
Russell Kingd4275352009-04-16 14:05:27 +0100835ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100838W: http://www.arm.linux.org.uk/
839S: Maintained
840F: arch/arm/include/asm/hardware/dec21285.h
841F: arch/arm/mach-footbridge/
842
Sascha Hauer86183a52008-07-24 23:50:35 +0200843ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700844M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700845L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200846S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700847T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100848F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700849F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200850
Shawn Guo8bcb97652011-10-07 22:24:18 +0800851ARM/FREESCALE IMX6
852M: Shawn Guo <shawn.guo@linaro.org>
853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
854S: Maintained
855T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
856F: arch/arm/mach-imx/*imx6*
857
Shawn Guoa9866a02011-10-21 11:53:34 +0800858ARM/FREESCALE MXS ARM ARCHITECTURE
859M: Shawn Guo <shawn.guo@linaro.org>
860L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
861S: Maintained
862T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
863F: arch/arm/mach-mxs/
864
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800865ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700866M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868S: Maintained
869
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100870ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700871M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100873S: Maintained
874
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200875ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700876M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100877M: Paul Parsons <lost.distance@yahoo.com>
878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200879S: Maintained
880F: arch/arm/mach-pxa/hx4700.c
881F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100882F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200883
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100884ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200886W: www.jlime.com
887S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700888T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
889F: arch/arm/mach-sa1100/jornada720.c
890F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100891
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200892ARM/IGEP MACHINE SUPPORT
893M: Enric Balletbo i Serra <eballetbo@gmail.com>
894M: Javier Martinez Canillas <javier@dowhile0.org>
895L: linux-omap@vger.kernel.org
896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
897S: Maintained
898F: arch/arm/mach-omap2/board-igep0020.c
899
Marek Vasut403d2972010-05-22 00:29:39 +0200900ARM/INCOME PXA270 SUPPORT
901M: Marek Vasut <marek.vasut@gmail.com>
902L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
903S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700904F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200905
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800906ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700907M: Lennert Buytenhek <kernel@wantstofly.org>
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
Dan Williamse2bdb172007-01-02 18:32:37 +0100911
912ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700913M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700915S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800916
917ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700918M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700919M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700920L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700921S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800922
923ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700924M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700925M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700927S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800928
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800929ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700930M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932S: Maintained
933
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200934ARM/INTEL IXP4XX ARM ARCHITECTURE
935M: Imre Kaloz <kaloz@openwrt.org>
936M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100937L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200938S: Maintained
939F: arch/arm/mach-ixp4xx/
940
Joe Perches838553c2010-10-26 14:22:59 -0700941ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100942M: Jonathan Cameron <jic23@cam.ac.uk>
943L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944S: Maintained
945F: arch/arm/mach-pxa/stargate2.c
946F: drivers/pcmcia/pxa2xx_stargate2.c
947
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700949M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700950M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700952S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800953
954ARM/IP FABRICS DOUBLE ESPRESSO 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
959ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700960M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800962S: Maintained
963
Philipp Zabel3b8861712008-07-09 21:27:15 +0100964ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700965M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100966S: Maintained
967
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200968ARM/Marvell Armada 370 and Armada XP SOC support
969M: Jason Cooper <jason@lakedaemon.net>
970M: Andrew Lunn <andrew@lunn.ch>
971M: Gregory Clement <gregory.clement@free-electrons.com>
972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
973S: Maintained
974F: arch/arm/mach-mvebu/
975
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400976ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
977M: Jason Cooper <jason@lakedaemon.net>
978M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700979L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400980S: Maintained
981F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400982F: arch/arm/mach-kirkwood/
983F: arch/arm/mach-mv78xx0/
984F: arch/arm/mach-orion5x/
985F: arch/arm/plat-orion/
986
Alexander Clouterd69ac132011-04-14 15:22:02 -0700987ARM/Orion SoC/Technologic Systems TS-78xx platform support
988M: Alexander Clouter <alex@digriz.org.uk>
989L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
990W: http://www.digriz.org.uk/ts78xx/kernel
991S: Maintained
992F: arch/arm/mach-orion5x/ts78xx-*
993
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000994ARM/MICREL KS8695 ARCHITECTURE
995M: Greg Ungerer <gerg@uclinux.org>
996L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
997F: arch/arm/mach-ks8695
998S: Odd Fixes
999
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001000ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001001M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001002L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001003F: arch/arm/mach-pxa/mioa701.c
1004S: Maintained
1005
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001006ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001007M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001008S: Maintained
1009
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001010ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001011M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001012M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001013M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1014L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1015S: Maintained
1016F: arch/arm/mach-nomadik/
1017F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001018F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001019T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001020
Andy Green9d762952009-05-19 06:41:42 -03001021ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001023L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1024W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1025S: Supported
1026
Daniel Walker0c19d212009-12-07 16:53:51 -08001027ARM/QUALCOMM MSM MACHINE SUPPORT
1028M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001029M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001030M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001031L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001032F: arch/arm/mach-msm/
1033F: drivers/video/msm/
1034F: drivers/mmc/host/msm_sdcc.c
1035F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001036F: drivers/tty/serial/msm_serial.h
1037F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001038F: drivers/*/pm8???-*
1039F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001040T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001041S: Maintained
1042
Dirk Opfer8459c152005-11-06 14:27:52 +00001043ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001044M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1045M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001046S: Maintained
1047
Marek Vasut5d783a22009-07-16 13:26:48 +02001048ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001049M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001050L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001051W: http://hackndev.com
1052S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001053F: arch/arm/mach-pxa/include/mach/palmtx.h
1054F: arch/arm/mach-pxa/palmtx.c
1055F: arch/arm/mach-pxa/include/mach/palmt5.h
1056F: arch/arm/mach-pxa/palmt5.c
1057F: arch/arm/mach-pxa/include/mach/palmld.h
1058F: arch/arm/mach-pxa/palmld.c
1059F: arch/arm/mach-pxa/include/mach/palmte2.h
1060F: arch/arm/mach-pxa/palmte2.c
1061F: arch/arm/mach-pxa/include/mach/palmtc.h
1062F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001063
Joe Perchesb57fe922009-12-14 18:00:52 -08001064ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001066L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001067W: http://hackndev.com
1068S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001069F: arch/arm/mach-pxa/include/mach/palmtreo.h
1070F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001071
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001072ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001074L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001075W: http://hackndev.com
1076S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001077F: arch/arm/mach-pxa/include/mach/palmz72.h
1078F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1083S: Maintained
1084
1085ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001086M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001087L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088W: http://www.arm.linux.org.uk/
1089S: Maintained
1090
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001091ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001093L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001094S: Maintained
1095
Russell Kingd4275352009-04-16 14:05:27 +01001096ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001098L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001099W: http://www.arm.linux.org.uk/
1100S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001101F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1102F: arch/arm/include/asm/hardware/ioc.h
1103F: arch/arm/include/asm/hardware/iomd.h
1104F: arch/arm/include/asm/hardware/memc.h
1105F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001106F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001107F: drivers/net/ethernet/i825xx/ether1*
1108F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001109F: drivers/scsi/arm/
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001112M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113W: http://www.shark-linux.de/shark.html
1114S: Maintained
1115
Ben Dooksb21477f2009-06-13 10:46:34 +01001116ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001117M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001118M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001119L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001120L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001121W: http://www.fluff.org/ben/linux/
1122S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001123F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001124F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001125F: arch/arm/mach-s3c24*/
1126F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001127F: drivers/*/*s3c2410*
1128F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001129F: drivers/spi/spi-s3c*
1130F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001132ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001133M: Kukjin Kim <kgene.kim@samsung.com>
1134L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1136S: Maintained
1137F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001138F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001139
Kyungmin Park10ffa962011-03-04 17:36:26 -08001140ARM/SAMSUNG MOBILE MACHINE SUPPORT
1141M: Kyungmin Park <kyungmin.park@samsung.com>
1142L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143S: Maintained
1144F: arch/arm/mach-s5pv210/mach-aquila.c
1145F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001146F: arch/arm/mach-exynos/mach-universal_c210.c
1147F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001148
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001149ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1150M: Kyungmin Park <kyungmin.park@samsung.com>
1151M: Kamil Debski <k.debski@samsung.com>
1152L: linux-arm-kernel@lists.infradead.org
1153L: linux-media@vger.kernel.org
1154S: Maintained
1155F: drivers/media/platform/s5p-g2d/
1156
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001157ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1158M: Kyungmin Park <kyungmin.park@samsung.com>
1159M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1160L: linux-arm-kernel@lists.infradead.org
1161L: linux-media@vger.kernel.org
1162S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001163F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001164F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001165
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001166ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1167M: Kyungmin Park <kyungmin.park@samsung.com>
1168M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001169M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001170L: linux-arm-kernel@lists.infradead.org
1171L: linux-media@vger.kernel.org
1172S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001173F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001174F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001175
1176ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1177M: Kyungmin Park <kyungmin.park@samsung.com>
1178M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1179L: linux-arm-kernel@lists.infradead.org
1180L: linux-media@vger.kernel.org
1181S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001182F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001183
Paul Mundtd48d38e2010-02-08 12:50:24 +09001184ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001185M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186M: Magnus Damm <magnus.damm@gmail.com>
1187L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001188W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001189Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001190T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001191S: Supported
1192F: arch/arm/mach-shmobile/
1193F: drivers/sh/
1194
Dinh Nguyen66314222012-07-18 16:07:18 -06001195ARM/SOCFPGA ARCHITECTURE
1196M: Dinh Nguyen <dinguyen@altera.com>
1197S: Maintained
1198F: arch/arm/mach-socfpga/
1199
1200ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1201M: Dinh Nguyen <dinguyen@altera.com>
1202S: Maintained
1203F: drivers/clk/socfpga/
1204
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001205ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001206M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001207L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001208S: Maintained
1209
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001210ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001211M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001212L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213S: Maintained
1214
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001215ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001216M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001218S: Maintained
1219
wanzongshun98ad6e32009-02-13 06:04:32 +01001220ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001221M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001222L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001223W: http://www.mcuos.com
1224S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001225F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001226F: drivers/input/keyboard/w90p910_keypad.c
1227F: drivers/input/touchscreen/w90p910_ts.c
1228F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001229F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001230F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001231F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001232F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001233F: drivers/usb/host/ehci-w90x900.c
1234F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001235
Linus Walleij54274d72010-04-04 10:58:03 +01001236ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001237M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001238L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239S: Supported
1240F: arch/arm/mach-u300/
1241F: drivers/i2c/busses/i2c-stu300.c
1242F: drivers/rtc/rtc-coh901331.c
1243F: drivers/watchdog/coh901327_wdt.c
1244F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001245F: drivers/mfd/ab3100*
1246F: drivers/rtc/rtc-ab3100.c
1247F: drivers/rtc/rtc-coh901331.c
1248T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001249
Linus Walleij87572882010-12-22 09:18:29 +01001250ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001251M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001252M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001253L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1254S: Maintained
1255F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001256F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001257F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001258F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001259F: drivers/mfd/abx500*
1260F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001261F: drivers/mfd/dbx500*
1262F: drivers/mfd/db8500*
1263F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001264F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001265F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001266T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001267
Russell Kingd4275352009-04-16 14:05:27 +01001268ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001269M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001270L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001271W: http://www.arm.linux.org.uk/
1272S: Maintained
1273F: arch/arm/vfp/
1274
Marek Vasute66b6d82010-03-26 06:51:32 +01001275ARM/VOIPAC PXA270 SUPPORT
1276M: Marek Vasut <marek.vasut@gmail.com>
1277L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278S: Maintained
1279F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001280F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001281
Tony Prisk04529fe2012-07-24 04:19:37 +12001282ARM/VT8500 ARM ARCHITECTURE
1283M: Tony Prisk <linux@prisktech.co.nz>
1284L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285S: Maintained
1286F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001287F: drivers/clocksource/vt8500_timer.c
1288F: drivers/gpio/gpio-vt8500.c
1289F: drivers/mmc/host/wmt-sdmmc.c
1290F: drivers/pwm/pwm-vt8500.c
1291F: drivers/rtc/rtc-vt8500.c
1292F: drivers/tty/serial/vt8500_serial.c
1293F: drivers/usb/host/ehci-vt8500.c
1294F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001295F: drivers/video/vt8500lcdfb.*
1296F: drivers/video/wm8505fb*
1297F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001298
Marek Vasute66b6d82010-03-26 06:51:32 +01001299ARM/ZIPIT Z2 SUPPORT
1300M: Marek Vasut <marek.vasut@gmail.com>
1301L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302S: Maintained
1303F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001304F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001305
Michal Simek51f29d42013-01-21 17:41:46 +01001306ARM/ZYNQ ARCHITECTURE
1307M: Michal Simek <michal.simek@xilinx.com>
1308L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1309W: http://wiki.xilinx.com
1310T: git git://git.xilinx.com/linux-xlnx.git
1311S: Supported
1312F: arch/arm/mach-zynq/
1313
Catalin Marinas38074222012-03-05 11:49:34 +00001314ARM64 PORT (AARCH64 ARCHITECTURE)
1315M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001316M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001317L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1318S: Maintained
1319F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001320F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001321
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001322AS3645A LED FLASH CONTROLLER DRIVER
1323M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1324L: linux-media@vger.kernel.org
1325T: git git://linuxtv.org/media_tree.git
1326S: Maintained
1327F: drivers/media/i2c/as3645a.c
1328F: include/media/as3645a.h
1329
George Josephd58de032010-03-05 22:17:25 +01001330ASC7621 HARDWARE MONITOR DRIVER
1331M: George Joseph <george.joseph@fairview5.com>
1332L: lm-sensors@lm-sensors.org
1333S: Maintained
1334F: Documentation/hwmon/asc7621
1335F: drivers/hwmon/asc7621.c
1336
Corentin Charyb229ece2011-02-26 10:20:40 +01001337ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001338M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001340L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001341W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001343F: drivers/platform/x86/asus*.c
1344F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Andrew Morton953a6472008-11-06 12:53:28 -08001346ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001347M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001348W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001350F: Documentation/crypto/async-tx-api.txt
1351F: crypto/async_tx/
1352F: drivers/dma/
1353F: include/linux/dmaengine.h
1354F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001355
Wolfram Sanga1867d32009-09-18 22:45:51 +02001356AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001357M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001358L: linux-i2c@vger.kernel.org
1359S: Maintained
1360F: drivers/misc/eeprom/at24.c
1361F: include/linux/i2c/at24.h
1362
Randy Dunlape7839f22008-10-12 16:11:45 -07001363ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001364M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001365W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001367F: Documentation/aoe/
1368F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Joe Perches9a10a872010-12-01 09:37:55 -08001370ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001371M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001372L: linux-wireless@vger.kernel.org
1373S: Supported
1374F: drivers/net/wireless/ath/*
1375
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001376ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001377M: Jiri Slaby <jirislaby@gmail.com>
1378M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001379M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001380L: linux-wireless@vger.kernel.org
1381L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001382W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001383S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001384F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001385
Kalle Valo12e62d62011-09-13 10:21:25 +03001386ATHEROS ATH6KL WIRELESS DRIVER
1387M: Kalle Valo <kvalo@qca.qualcomm.com>
1388L: linux-wireless@vger.kernel.org
1389W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1390T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1391S: Supported
1392F: drivers/net/wireless/ath/ath6kl/
1393
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001395M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1396M: Jouni Malinen <jouni@qca.qualcomm.com>
1397M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1398M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399L: linux-wireless@vger.kernel.org
1400L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001401W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001403F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001404
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001405WILOCITY WIL6210 WIRELESS DRIVER
1406M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1407L: linux-wireless@vger.kernel.org
1408L: wil6210@qca.qualcomm.com
1409S: Supported
1410W: http://wireless.kernel.org/en/users/Drivers/wil6210
1411F: drivers/net/wireless/ath/wil6210/
1412
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001413CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1414M: Christian Lamparter <chunkeey@googlemail.com>
1415L: linux-wireless@vger.kernel.org
1416W: http://wireless.kernel.org/en/users/Drivers/carl9170
1417S: Maintained
1418F: drivers/net/wireless/ath/carl9170/
1419
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001420ATK0110 HWMON DRIVER
1421M: Luca Tettamanti <kronos.it@gmail.com>
1422L: lm-sensors@lm-sensors.org
1423S: Maintained
1424F: drivers/hwmon/asus_atk0110.c
1425
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001426ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001427M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001430
Chris Snook7ae115b2008-09-09 03:26:57 -04001431ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001432M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001433M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001434L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001435W: http://sourceforge.net/projects/atl1
1436W: http://atl1.sourceforge.net
1437S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001438F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001441M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001442L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001443L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444W: http://linux-atm.sourceforge.net
1445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001446F: drivers/atm/
1447F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001448F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001450ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001451M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001452S: Maintained
1453F: drivers/mmc/host/atmel-mci.c
1454F: drivers/mmc/host/atmel-mci-regs.h
1455
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001456ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001457M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001458S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001459F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001460
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001461ATMEL DMA DRIVER
1462M: Nicolas Ferre <nicolas.ferre@atmel.com>
1463L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464S: Supported
1465F: drivers/dma/at_hdmac.c
1466F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001467F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001468
Ludovic Desroches888f2802013-03-15 05:32:57 +00001469ATMEL I2C DRIVER
1470M: Ludovic Desroches <ludovic.desroches@atmel.com>
1471L: linux-i2c@vger.kernel.org
1472S: Supported
1473F: drivers/i2c/busses/i2c-at91.c
1474
Josh Wu15515542012-03-23 17:56:29 +08001475ATMEL ISI DRIVER
1476M: Josh Wu <josh.wu@atmel.com>
1477L: linux-media@vger.kernel.org
1478S: Supported
Cesar Eduardo Barrosf2294c2d2013-01-04 15:35:21 -08001479F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001480F: include/media/atmel-isi.h
1481
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001482ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001484L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001486F: drivers/video/atmel_lcdfb.c
1487F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001488
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001489ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001490M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001491S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001492F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001493
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001494ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001495M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001496S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001497F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001498
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001499ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1500M: Nicolas Ferre <nicolas.ferre@atmel.com>
1501L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502S: Supported
1503F: drivers/misc/atmel_tclib.c
1504F: drivers/clocksource/tcb_clksrc.c
1505
Josh Wuff2675d2012-03-23 17:56:55 +08001506ATMEL TSADCC DRIVER
1507M: Josh Wu <josh.wu@atmel.com>
1508L: linux-input@vger.kernel.org
1509S: Supported
1510F: drivers/input/touchscreen/atmel_tsadcc.c
1511
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001512ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001513M: Nicolas Ferre <nicolas.ferre@atmel.com>
1514L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001516F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001519M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001520L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521W: http://www.thekelleys.org.uk/atmel
1522W: http://atmelwlandriver.sourceforge.net/
1523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001524F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Chris Wrighta92b7b82005-07-07 18:12:23 -07001526AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Al Viro <viro@zeniv.linux.org.uk>
1528M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001529L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001530W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001531T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001533F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001534F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001535F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001536
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001537AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001539W: http://miguelojeda.es/auxdisplay.htm
1540W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001542F: drivers/auxdisplay/
1543F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001544
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001545AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001546M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1547M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001548W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001549W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001550W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001552F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001553
1554AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001555M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1556M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001558F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001563W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001565F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001566F: include/net/ax25.h
1567F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001569AZ6007 DVB DRIVER
1570M: Mauro Carvalho Chehab <mchehab@redhat.com>
1571L: linux-media@vger.kernel.org
1572W: http://linuxtv.org
1573T: git git://linuxtv.org/media_tree.git
1574S: Maintained
1575F: drivers/media/usb/dvb-usb-v2/az6007.c
1576
Hans Verkuil67773762012-11-23 07:09:23 -03001577AZTECH FM RADIO RECEIVER DRIVER
1578M: Hans Verkuil <hverkuil@xs4all.nl>
1579L: linux-media@vger.kernel.org
1580T: git git://linuxtv.org/media_tree.git
1581W: http://linuxtv.org
1582S: Maintained
1583F: drivers/media/radio/radio-aztech*
1584
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001588L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001589W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001591F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001592
1593B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Larry Finger <Larry.Finger@lwfinger.net>
1595M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001596L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001597L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001598W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001601
Richard Purdie300abeb2007-02-07 22:21:07 +00001602BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001603M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: drivers/video/backlight/
1606F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001607
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001608BATMAN ADVANCED
1609M: Marek Lindner <lindner_marek@yahoo.de>
1610M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001611M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001612L: b.a.t.m.a.n@lists.open-mesh.org
1613W: http://www.open-mesh.org/
1614S: Maintained
1615F: net/batman-adv/
1616
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001617BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001618M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001619L: linux-hams@vger.kernel.org
1620W: http://www.baycom.org/~tom/ham/ham.html
1621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001622F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623
1624BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001625S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001626F: Documentation/filesystems/befs.txt
1627F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001628
1629BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001630M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001632F: Documentation/filesystems/bfs.txt
1633F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001634F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001635
Bryan Wu1394f032007-05-06 14:50:22 -07001636BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001638L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001639W: http://blackfin.uclinux.org
1640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001641F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001642
Bryan Wue190d6b2007-07-17 14:43:44 +08001643BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001644L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001645W: http://blackfin.uclinux.org
1646S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001647F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001648
Mike Frysinger566da5b2007-06-11 15:31:30 +08001649BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001650M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001651L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001652W: http://blackfin.uclinux.org
1653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001654F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001655
Mike Frysinger936ed492010-03-10 15:20:38 -08001656BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001657M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001658L: uclinux-dist-devel@blackfin.uclinux.org
1659W: http://blackfin.uclinux.org
1660S: Supported
1661F: drivers/mmc/host/bfin_sdh.c
1662
Bryan Wu1394f032007-05-06 14:50:22 -07001663BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001664M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001665L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001666W: http://blackfin.uclinux.org
1667S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001668F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001669
Bryan Wu1e6d3202007-07-15 02:50:02 +08001670BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001671M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001672L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001673W: http://blackfin.uclinux.org
1674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001675F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001676
Bryan Wud24ecfc2007-05-01 23:26:32 +02001677BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001678M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001679L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001680W: http://blackfin.uclinux.org/
1681S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001682F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001683
Scott Jiang1e204372013-01-18 17:09:47 -03001684BLACKFIN MEDIA DRIVER
1685M: Scott Jiang <scott.jiang.linux@gmail.com>
1686L: uclinux-dist-devel@blackfin.uclinux.org
1687W: http://blackfin.uclinux.org/
1688S: Supported
1689F: drivers/media/platform/blackfin/
1690F: drivers/media/i2c/adv7183*
1691F: drivers/media/i2c/vs6624*
1692
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001693BLINKM RGB LED DRIVER
1694M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1695S: Maintained
1696F: drivers/leds/leds-blinkm.c
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001699M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001700T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001702F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Joern Engel2b54aae2008-02-06 01:38:02 -08001704BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001706L: linux-mtd@lists.infradead.org
1707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001709
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001710BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001712M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001713M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001714L: linux-bluetooth@vger.kernel.org
1715W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001716T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1717T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001719F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001722M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001723M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001724M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001725L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001726W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001727T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1728T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001730F: net/bluetooth/
1731F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001734M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001735M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001736L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001737W: http://sourceforge.net/projects/bonding/
1738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001739F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001740F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Gary Zambrano39105892006-06-22 17:26:20 -07001742BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001743M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001744L: netdev@vger.kernel.org
1745S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001746F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001747
Michael Chan948c51e2006-06-04 02:51:39 -07001748BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001750L: netdev@vger.kernel.org
1751S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001752F: drivers/net/ethernet/broadcom/bnx2.*
1753F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001754
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001755BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001756M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001757L: netdev@vger.kernel.org
1758S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001759F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001760
Stephen Warrenf680f252012-09-15 00:18:54 -06001761BROADCOM BCM2835 ARM ARCHICTURE
1762M: Stephen Warren <swarren@wwwdotorg.org>
1763L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1764T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1765S: Maintained
1766F: arch/arm/mach-bcm2835/
1767F: arch/arm/boot/dts/bcm2835*
1768F: arch/arm/configs/bcm2835_defconfig
1769F: drivers/*/*bcm2835*
1770
Michael Chan948c51e2006-06-04 02:51:39 -07001771BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001772M: Matt Carlson <mcarlson@broadcom.com>
1773M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001774L: netdev@vger.kernel.org
1775S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001776F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001777
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001778BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1779M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001780M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001781M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001782M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001783L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001784L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001785S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001786F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001787
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001788BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1789M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1790L: linux-scsi@vger.kernel.org
1791S: Supported
1792F: drivers/scsi/bnx2fc/
1793
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001794BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1795M: Rafał Miłecki <zajec5@gmail.com>
1796L: linux-wireless@vger.kernel.org
1797S: Maintained
1798F: drivers/bcma/
1799F: include/linux/bcma/
1800
Jing Huang7725ccf2009-09-23 17:46:15 -07001801BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001802M: Anil Gurumurthy <agurumur@brocade.com>
1803M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001804L: linux-scsi@vger.kernel.org
1805S: Supported
1806F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001807
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001808BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1809M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001810L: netdev@vger.kernel.org
1811S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001812F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001813
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001814BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001815M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001816L: linux-scsi@vger.kernel.org
1817S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001818F: block/bsg.c
1819F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001820F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001821
Clemens Ladischaf399172011-01-10 16:32:54 +01001822BT87X AUDIO DRIVER
1823M: Clemens Ladisch <clemens@ladisch.de>
1824L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1825T: git git://git.alsa-project.org/alsa-kernel.git
1826S: Maintained
1827F: Documentation/sound/alsa/Bt87x.txt
1828F: sound/pci/bt87x.c
1829
Michael Bueschff1d5c22008-07-25 01:46:10 -07001830BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001831M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001832W: http://bu3sch.de/btgpio.php
1833S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001834F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001835
Joe Percheseb1eb042009-01-21 10:49:16 -05001836BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001837M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001838L: linux-btrfs@vger.kernel.org
1839W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001840Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001841T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001843F: Documentation/filesystems/btrfs.txt
1844F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001847M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001848L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001849W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001850T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001851S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001852F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001853F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Clemens Ladischaf399172011-01-10 16:32:54 +01001855C-MEDIA CMI8788 DRIVER
1856M: Clemens Ladisch <clemens@ladisch.de>
1857L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1858T: git git://git.alsa-project.org/alsa-kernel.git
1859S: Maintained
1860F: sound/pci/oxygen/
1861
Mark Salter21413552011-10-04 11:21:42 -04001862C6X ARCHITECTURE
1863M: Mark Salter <msalter@redhat.com>
1864M: Aurelien Jacquiot <a-jacquiot@ti.com>
1865L: linux-c6x-dev@linux-c6x.org
1866W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1867S: Maintained
1868F: arch/c6x/
1869
David Howellsa5432f5a2009-04-20 15:46:45 +01001870CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001871M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001872L: linux-cachefs@redhat.com
1873S: Supported
1874F: Documentation/filesystems/caching/cachefiles.txt
1875F: fs/cachefiles/
1876
Hans Verkuilc815ca32012-11-23 07:05:54 -03001877CADET FM/AM RADIO RECEIVER DRIVER
1878M: Hans Verkuil <hverkuil@xs4all.nl>
1879L: linux-media@vger.kernel.org
1880T: git git://linuxtv.org/media_tree.git
1881W: http://linuxtv.org
1882S: Maintained
1883F: drivers/media/radio/radio-cadet*
1884
Jonathan Corbet77d51402007-03-22 19:44:17 -03001885CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001886M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001887L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001888T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001891F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001892
Joe Perches201b6ba2010-09-07 20:33:24 +00001893CAIF NETWORK LAYER
1894M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1895L: netdev@vger.kernel.org
1896S: Supported
1897F: Documentation/networking/caif/
1898F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001899F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001900F: include/net/caif/
1901F: net/caif/
1902
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001903CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001904M: Muli Ben-Yehuda <muli@il.ibm.com>
1905M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001906L: discuss@x86-64.org
1907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001908F: arch/x86/kernel/pci-calgary_64.c
1909F: arch/x86/kernel/tce_64.c
1910F: arch/x86/include/asm/calgary.h
1911F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001912
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001913CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001914M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001915L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001916W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001917T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001918S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001919F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001920F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001921F: include/uapi/linux/can.h
1922F: include/uapi/linux/can/bcm.h
1923F: include/uapi/linux/can/raw.h
1924F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001925
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001926CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001927M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001928M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001929L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001930W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001931T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001932S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001933F: drivers/net/can/
1934F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001935F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001936F: include/uapi/linux/can/error.h
1937F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001938
James Morris95d16c72012-03-16 12:05:48 +11001939CAPABILITIES
1940M: Serge Hallyn <serge.hallyn@canonical.com>
1941L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001942S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001943F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001944F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001945F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001946F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001947F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001948
Arnd Bergmannb8154542008-05-16 11:10:59 +02001949CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001951L: linuxppc-dev@lists.ozlabs.org
1952L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001953W: http://www.ibm.com/developerworks/power/cell/
1954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001955F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001956F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001957F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001958F: arch/powerpc/oprofile/*cell*
1959F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001960
Sage Weil9030aaf2009-10-06 11:31:15 -07001961CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001962M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001963L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001964W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001965T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001966S: Supported
1967F: Documentation/filesystems/ceph.txt
1968F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001969F: net/ceph
1970F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001971F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001972
David Vrabel18332a82008-09-17 16:34:44 +01001973CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001974L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001975S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001976F: Documentation/usb/WUSB-Design-overview.txt
1977F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001978F: drivers/usb/host/hwa-hc.c
1979F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001980F: drivers/usb/wusbcore/
1981F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001982
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001983CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001985W: http://miguelojeda.es/auxdisplay.htm
1986W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001988F: drivers/auxdisplay/cfag12864b.c
1989F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001990
1991CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001992M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001993W: http://miguelojeda.es/auxdisplay.htm
1994W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001996F: drivers/auxdisplay/cfag12864bfb.c
1997F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001998
Johannes Berg704232c2007-04-23 12:20:05 -07001999CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002000M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002001L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002002W: http://wireless.kernel.org/
2003T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2004T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002005S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002006F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002007F: include/net/cfg80211.h
2008F: net/wireless/*
2009X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002010
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002011CHAR and MISC DRIVERS
2012M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002013M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002014T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002015S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002016F: drivers/char/*
2017F: drivers/misc/*
2018
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002019CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002020M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002021M: Joe Perches <joe@perches.com>
2022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07002024
Harry Weif8407f262011-02-25 14:44:15 -08002025CHINESE DOCUMENTATION
2026M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002027L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002028L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2029S: Maintained
2030F: Documentation/zh_CN/
2031
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002032CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2033M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2034L: linux-usb@vger.kernel.org
2035S: Maintained
2036F: drivers/usb/chipidea/
2037
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002038CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002039M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002040M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002041M: Neel Patel <neepatel@cisco.com>
2042M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002043S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002044F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002045
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002046CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002047M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002048L: netdev@vger.kernel.org
2049S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002050F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002051
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002052CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002053M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002054L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002056F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002057
Timur Tabid9e9d822008-04-24 08:45:26 +10002058CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002059M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002060L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002061S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002062F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002063
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002064CLEANCACHE API
2065M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2066L: linux-kernel@vger.kernel.org
2067S: Maintained
2068F: mm/cleancache.c
2069F: include/linux/cleancache.h
2070
Russell Kingd4275352009-04-16 14:05:27 +01002071CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002072M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002073S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002074F: include/linux/clk.h
2075
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002076CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002077M: Hiral Patel <hiralpat@cisco.com>
2078M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002079M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002080L: linux-scsi@vger.kernel.org
2081S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002082F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002083
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002084CMPC ACPI DRIVER
2085M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2086M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002087L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002088S: Supported
2089F: drivers/platform/x86/classmate-laptop.c
2090
Nicolas Palix74425ee2010-06-06 17:15:01 +02002091COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002092M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002093M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002094M: Nicolas Palix <nicolas.palix@imag.fr>
2095L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002096W: http://coccinelle.lip6.fr/
2097S: Supported
2098F: scripts/coccinelle/
2099F: scripts/coccicheck
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002102M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103M: coda@cs.cmu.edu
2104L: codalist@coda.cs.cmu.edu
2105W: http://www.coda.cs.cmu.edu/
2106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: Documentation/filesystems/coda.txt
2108F: fs/coda/
2109F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002110F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Mike Turquette7704add2012-05-02 18:37:45 -07002112COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002113M: Mike Turquette <mturquette@linaro.org>
2114L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2115T: git git://git.linaro.org/people/mturquette/linux.git
2116S: Maintained
2117F: drivers/clk/clk.c
2118F: drivers/clk/clk-*
2119F: include/linux/clk-pr*
2120
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002121COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002122M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002123L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002124L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002125W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002126Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002127T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002129F: Documentation/filesystems/cifs.txt
2130F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002133M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002134L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002140L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002146L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002148F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002150COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002152L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002155
Simon Arlott949be0f2007-03-06 02:47:46 -08002156CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002157M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002158L: accessrunner-general@lists.sourceforge.net
2159W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002161F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002162
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002163CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002164M: Joel Becker <jlbec@evilplan.org>
2165T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002167F: fs/configfs/
2168F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002169
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002170CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002171M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002172L: netdev@vger.kernel.org
2173S: Maintained
2174F: drivers/connector/
2175
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002176CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002177M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002178M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002179L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002180L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002181T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002183F: include/linux/cgroup*
2184F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002185F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002186
Rudolf Marekbebe4672007-05-08 17:22:02 +02002187CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002188M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002189L: lm-sensors@lm-sensors.org
2190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002191F: Documentation/hwmon/coretemp
2192F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196W: http://www.fi.muni.cz/~kas/cosa/
2197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Florian Fainelli4371ee32009-06-01 02:43:17 -07002200CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002201M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002202L: netdev@vger.kernel.org
2203S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002204F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002207M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002208L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002209L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/cpufreq/
2212F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: arch/x86/kernel/cpuid.c
2218F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002220CPU POWER MONITORING SUBSYSTEM
2221M: Dominik Brodowski <linux@dominikbrodowski.net>
2222M: Thomas Renninger <trenn@suse.de>
2223S: Maintained
2224F: tools/power/cpupower
2225
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002226CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002227M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002228W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002229W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: Documentation/cgroups/cpusets.txt
2232F: include/linux/cpuset.h
2233F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002236W: http://sourceforge.net/projects/cramfs/
2237S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002238F: Documentation/filesystems/cramfs.txt
2239F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002242M: Mikael Starvik <starvik@axis.com>
2243M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002244L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245W: http://developer.axis.com
2246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002247F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002248F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002251M: Herbert Xu <herbert@gondor.apana.org.au>
2252M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002254T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002256F: Documentation/crypto/
2257F: arch/*/crypto/
2258F: crypto/
2259F: drivers/crypto/
2260F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Neil Horman5b07bd52009-02-05 16:03:04 +11002262CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002263M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002264L: linux-crypto@vger.kernel.org
2265S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002266F: crypto/ansi_cprng.c
2267F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002268
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002269CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002270M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002272F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002273
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002274CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002275M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002276L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002277L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002278T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002279W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002280W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002283F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002284F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002285
Hans Verkuil3f101d92012-11-23 07:00:02 -03002286CX2341X MPEG ENCODER HELPER MODULE
2287M: Hans Verkuil <hverkuil@xs4all.nl>
2288L: linux-media@vger.kernel.org
2289T: git git://linuxtv.org/media_tree.git
2290W: http://linuxtv.org
2291S: Maintained
2292F: drivers/media/i2c/cx2341x*
2293F: include/media/cx2341x*
2294
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002295CX88 VIDEO4LINUX DRIVER
2296M: Mauro Carvalho Chehab <mchehab@redhat.com>
2297L: linux-media@vger.kernel.org
2298W: http://linuxtv.org
2299T: git git://linuxtv.org/media_tree.git
2300S: Odd fixes
2301F: Documentation/video4linux/cx88/
2302F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002303
Antti Palosaari91952bc2012-10-01 12:28:46 -03002304CXD2820R MEDIA DRIVER
2305M: Antti Palosaari <crope@iki.fi>
2306L: linux-media@vger.kernel.org
2307W: http://linuxtv.org/
2308W: http://palosaari.fi/linux/
2309Q: http://patchwork.linuxtv.org/project/linux-media/list/
2310T: git git://linuxtv.org/anttip/media_tree.git
2311S: Maintained
2312F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002313
Steve Wisee5ec3782008-05-20 14:06:33 -07002314CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002315M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002316L: netdev@vger.kernel.org
2317W: http://www.chelsio.com
2318S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002319F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002320
2321CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002323L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002324W: http://www.openfabrics.org
2325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002326F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002327
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002328CXGB4 ETHERNET DRIVER (CXGB4)
2329M: Dimitris Michailidis <dm@chelsio.com>
2330L: netdev@vger.kernel.org
2331W: http://www.chelsio.com
2332S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002333F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002334
2335CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2336M: Steve Wise <swise@chelsio.com>
2337L: linux-rdma@vger.kernel.org
2338W: http://www.openfabrics.org
2339S: Supported
2340F: drivers/infiniband/hw/cxgb4/
2341
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002342CXGB4VF ETHERNET DRIVER (CXGB4VF)
2343M: Casey Leedom <leedom@chelsio.com>
2344L: netdev@vger.kernel.org
2345W: http://www.chelsio.com
2346S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002347F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002348
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002349STMMAC ETHERNET DRIVER
2350M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2351L: netdev@vger.kernel.org
2352W: http://www.stlinux.com
2353S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002354F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002357M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359W: http://www.arm.linux.org.uk/
2360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002361F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002365S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002366F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002367F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002368F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002373F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002375CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002376M: Javier Martinez Canillas <javier@dowhile0.org>
2377L: linux-input@vger.kernel.org
2378S: Maintained
2379F: drivers/input/touchscreen/cyttsp*
2380F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384W: http://yaina.de/jreuter/
2385W: http://www.qsl.net/dl1bke/
2386L: linux-hams@vger.kernel.org
2387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002388F: net/ax25/af_ax25.c
2389F: net/ax25/ax25_dev.c
2390F: net/ax25/ax25_ds_*
2391F: net/ax25/ax25_in.c
2392F: net/ax25/ax25_out.c
2393F: net/ax25/ax25_timer.c
2394F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002396DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002397L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002398S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002399F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002400F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401
2402DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002403M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002404W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002405M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002407F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002410M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002411M: Ali Akcaagac <aliakc@web.de>
2412M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002414L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415L: http://lists.twibble.org/mailman/listinfo/dc395x/
2416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: Documentation/scsi/dc395x.txt
2418F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002420DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002421M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002422L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002423W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002425F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002426F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002427F: include/linux/tfrc.h
2428F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431W: http://linux-decnet.sourceforge.net
2432L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002433S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002434F: Documentation/networking/decnet.txt
2435F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002438M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002440F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002442DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002444L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002446F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002447
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450W: http://www.debian.org/~dz/i8k/
2451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002452F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002453F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Doug Warzecha90563ec2005-09-06 15:17:15 -07002455DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002456M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: Documentation/dcdbas.txt
2459F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002460
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002461DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002462M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002463S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002464F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002465
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002466DESIGNWARE USB3 DRD IP DRIVER
2467M: Felipe Balbi <balbi@ti.com>
2468L: linux-usb@vger.kernel.org
2469L: linux-omap@vger.kernel.org
2470T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2471S: Maintained
2472F: drivers/usb/dwc3/
2473
Kyungmin Park89d07762012-01-10 15:09:09 -08002474DEVICE FREQUENCY (DEVFREQ)
2475M: MyungJoo Ham <myungjoo.ham@samsung.com>
2476M: Kyungmin Park <kyungmin.park@samsung.com>
2477L: linux-kernel@vger.kernel.org
2478S: Maintained
2479F: drivers/devfreq/
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002482M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484S: Maintained
2485
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002486DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002487M: Alasdair Kergon <agk@redhat.com>
2488M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002489L: dm-devel@redhat.com
2490W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002491Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002492T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: Documentation/device-mapper/
2495F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002496F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002497F: include/linux/device-mapper.h
2498F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002499
Guenter Roeck335d7c52011-01-26 11:45:49 -08002500DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002501M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002502L: linux-i2c@vger.kernel.org
2503S: Maintained
2504F: drivers/i2c/busses/i2c-diolan-u2c.c
2505
Randy Dunlape7839f22008-10-12 16:11:45 -07002506DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002509F: Documentation/filesystems/dnotify.txt
2510F: fs/notify/dnotify/
2511F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2516W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2517W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2518S: Maintained
2519
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002520DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002521M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: Documentation/filesystems/quota.txt
2524F: fs/quota/
2525F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002526F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Bernie Thompson702686a2012-03-01 13:52:13 -08002528DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2529M: Bernie Thompson <bernie@plugable.com>
2530L: linux-fbdev@vger.kernel.org
2531S: Maintained
2532W: http://plugable.com/category/projects/udlfb/
2533F: drivers/video/udlfb.c
2534F: include/video/udlfb.h
2535F: Documentation/fb/udlfb.txt
2536
Randy Dunlape7839f22008-10-12 16:11:45 -07002537DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002538M: Christine Caulfield <ccaulfie@redhat.com>
2539M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002540L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002541W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002542T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002543S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002544F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002545
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302546DMA BUFFER SHARING FRAMEWORK
2547M: Sumit Semwal <sumit.semwal@linaro.org>
2548S: Maintained
2549L: linux-media@vger.kernel.org
2550L: dri-devel@lists.freedesktop.org
2551L: linaro-mm-sig@lists.linaro.org
2552F: drivers/base/dma-buf*
2553F: include/linux/dma-buf*
2554F: Documentation/dma-buf-sharing.txt
2555T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2556
Dan Williamsb3e5f262007-08-07 10:26:35 -07002557DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002558M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002559M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002560S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002561F: drivers/dma/
2562F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302563T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2564T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002565
Juerg Haefligerb8250372007-06-09 10:11:16 -04002566DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002567M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002568L: lm-sensors@lm-sensors.org
2569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002570F: Documentation/hwmon/dme1737
2571F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002572
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002573DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002574M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002575L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002577F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002578
Joe Perches7d2c86b2009-04-07 20:59:01 -07002579DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002580M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002581L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002582T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002584F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002587M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588L: blinux-list@redhat.com
2589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002590F: drivers/char/dtlk.c
2591F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002593DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002594M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002595L: linux-scsi@vger.kernel.org
2596W: http://www.adaptec.com/
2597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002598F: drivers/scsi/dpt*
2599F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002600
Philipp Reisnerb411b362009-09-25 16:07:19 -07002601DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002602P: Philipp Reisner
2603P: Lars Ellenberg
2604M: drbd-dev@lists.linbit.com
2605L: drbd-user@lists.linbit.com
2606W: http://www.drbd.org
2607T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2608T: git git://git.drbd.org/drbd-8.3.git
2609S: Supported
2610F: drivers/block/drbd/
2611F: lib/lru_cache.c
2612F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002613
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002614DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002615M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002616T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002618F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002619F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002620F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002621F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002622F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002623F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002624F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002627M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002628L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002629T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002632F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002633F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Chris Wilson8daf7472010-09-28 14:07:26 +01002635INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002636M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002637L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002638L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002639T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002640S: Supported
2641F: drivers/gpu/drm/i915
2642F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002643F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002644
Kyungmin Park398a6d42011-11-02 11:33:16 +09002645DRM DRIVERS FOR EXYNOS
2646M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002647M: Joonyoung Shim <jy0922.shim@samsung.com>
2648M: Seung-Woo Kim <sw0312.kim@samsung.com>
2649M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002650L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002651T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002652S: Supported
2653F: drivers/gpu/drm/exynos
2654F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002655F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002656
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002657DRM DRIVERS FOR NVIDIA TEGRA
2658M: Thierry Reding <thierry.reding@avionic-design.de>
2659L: dri-devel@lists.freedesktop.org
2660L: linux-tegra@vger.kernel.org
2661T: git git://gitorious.org/thierryreding/linux.git
2662S: Maintained
2663F: drivers/gpu/drm/tegra/
2664F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2665
Alexey Klimov598df1a2012-11-28 17:16:32 -03002666DSBR100 USB FM RADIO DRIVER
2667M: Alexey Klimov <klimov.linux@gmail.com>
2668L: linux-media@vger.kernel.org
2669T: git git://linuxtv.org/media_tree.git
2670S: Maintained
2671F: drivers/media/radio/dsbr100.c
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002675L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Antti Palosaari91952bc2012-10-01 12:28:46 -03002679DVB_USB_AF9015 MEDIA DRIVER
2680M: Antti Palosaari <crope@iki.fi>
2681L: linux-media@vger.kernel.org
2682W: http://linuxtv.org/
2683W: http://palosaari.fi/linux/
2684Q: http://patchwork.linuxtv.org/project/linux-media/list/
2685T: git git://linuxtv.org/anttip/media_tree.git
2686S: Maintained
2687F: drivers/media/usb/dvb-usb-v2/af9015*
2688
2689DVB_USB_AF9035 MEDIA DRIVER
2690M: Antti Palosaari <crope@iki.fi>
2691L: linux-media@vger.kernel.org
2692W: http://linuxtv.org/
2693W: http://palosaari.fi/linux/
2694Q: http://patchwork.linuxtv.org/project/linux-media/list/
2695T: git git://linuxtv.org/anttip/media_tree.git
2696S: Maintained
2697F: drivers/media/usb/dvb-usb-v2/af9035*
2698
2699DVB_USB_ANYSEE MEDIA DRIVER
2700M: Antti Palosaari <crope@iki.fi>
2701L: linux-media@vger.kernel.org
2702W: http://linuxtv.org/
2703W: http://palosaari.fi/linux/
2704Q: http://patchwork.linuxtv.org/project/linux-media/list/
2705T: git git://linuxtv.org/anttip/media_tree.git
2706S: Maintained
2707F: drivers/media/usb/dvb-usb-v2/anysee*
2708
2709DVB_USB_AU6610 MEDIA DRIVER
2710M: Antti Palosaari <crope@iki.fi>
2711L: linux-media@vger.kernel.org
2712W: http://linuxtv.org/
2713W: http://palosaari.fi/linux/
2714Q: http://patchwork.linuxtv.org/project/linux-media/list/
2715T: git git://linuxtv.org/anttip/media_tree.git
2716S: Maintained
2717F: drivers/media/usb/dvb-usb-v2/au6610*
2718
2719DVB_USB_CE6230 MEDIA DRIVER
2720M: Antti Palosaari <crope@iki.fi>
2721L: linux-media@vger.kernel.org
2722W: http://linuxtv.org/
2723W: http://palosaari.fi/linux/
2724Q: http://patchwork.linuxtv.org/project/linux-media/list/
2725T: git git://linuxtv.org/anttip/media_tree.git
2726S: Maintained
2727F: drivers/media/usb/dvb-usb-v2/ce6230*
2728
Michael Krufkyd099dea2012-10-02 00:56:20 -03002729DVB_USB_CXUSB MEDIA DRIVER
2730M: Michael Krufky <mkrufky@linuxtv.org>
2731L: linux-media@vger.kernel.org
2732W: http://linuxtv.org/
2733W: http://github.com/mkrufky
2734Q: http://patchwork.linuxtv.org/project/linux-media/list/
2735T: git git://linuxtv.org/media_tree.git
2736S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002737F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002738
Antti Palosaari91952bc2012-10-01 12:28:46 -03002739DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2740M: Antti Palosaari <crope@iki.fi>
2741L: linux-media@vger.kernel.org
2742W: http://linuxtv.org/
2743W: http://palosaari.fi/linux/
2744Q: http://patchwork.linuxtv.org/project/linux-media/list/
2745T: git git://linuxtv.org/anttip/media_tree.git
2746S: Maintained
2747F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2748
2749DVB_USB_EC168 MEDIA DRIVER
2750M: Antti Palosaari <crope@iki.fi>
2751L: linux-media@vger.kernel.org
2752W: http://linuxtv.org/
2753W: http://palosaari.fi/linux/
2754Q: http://patchwork.linuxtv.org/project/linux-media/list/
2755T: git git://linuxtv.org/anttip/media_tree.git
2756S: Maintained
2757F: drivers/media/usb/dvb-usb-v2/ec168*
2758
Michael Krufky8856f5f2012-10-02 00:55:50 -03002759DVB_USB_MXL111SF MEDIA DRIVER
2760M: Michael Krufky <mkrufky@linuxtv.org>
2761L: linux-media@vger.kernel.org
2762W: http://linuxtv.org/
2763W: http://github.com/mkrufky
2764Q: http://patchwork.linuxtv.org/project/linux-media/list/
2765T: git git://linuxtv.org/mkrufky/mxl111sf.git
2766S: Maintained
2767F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2768
Antti Palosaari91952bc2012-10-01 12:28:46 -03002769DVB_USB_RTL28XXU MEDIA DRIVER
2770M: Antti Palosaari <crope@iki.fi>
2771L: linux-media@vger.kernel.org
2772W: http://linuxtv.org/
2773W: http://palosaari.fi/linux/
2774Q: http://patchwork.linuxtv.org/project/linux-media/list/
2775T: git git://linuxtv.org/anttip/media_tree.git
2776S: Maintained
2777F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2778
2779DVB_USB_V2 MEDIA DRIVER
2780M: Antti Palosaari <crope@iki.fi>
2781L: linux-media@vger.kernel.org
2782W: http://linuxtv.org/
2783W: http://palosaari.fi/linux/
2784Q: http://patchwork.linuxtv.org/project/linux-media/list/
2785T: git git://linuxtv.org/anttip/media_tree.git
2786S: Maintained
2787F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2788F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2789
Jason Baronac0ac382011-08-11 14:36:43 -04002790DYNAMIC DEBUG
2791M: Jason Baron <jbaron@redhat.com>
2792S: Maintained
2793F: lib/dynamic_debug.c
2794F: include/linux/dynamic_debug.h
2795
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002796DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002798S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002799F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002800
Antti Palosaari91952bc2012-10-01 12:28:46 -03002801E4000 MEDIA DRIVER
2802M: Antti Palosaari <crope@iki.fi>
2803L: linux-media@vger.kernel.org
2804W: http://linuxtv.org/
2805W: http://palosaari.fi/linux/
2806Q: http://patchwork.linuxtv.org/project/linux-media/list/
2807T: git git://linuxtv.org/anttip/media_tree.git
2808S: Maintained
2809F: drivers/media/tuners/e4000*
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002812M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002813L: linux-eata@i-connect.net
2814L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002819M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820L: linux-scsi@vger.kernel.org
2821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002822F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002825M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002826L: linux-eata@i-connect.net
2827L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002832M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002833L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834W: http://ebtables.sourceforge.net/
2835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002837F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002838F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Antti Palosaari91952bc2012-10-01 12:28:46 -03002840EC100 MEDIA DRIVER
2841M: Antti Palosaari <crope@iki.fi>
2842L: linux-media@vger.kernel.org
2843W: http://linuxtv.org/
2844W: http://palosaari.fi/linux/
2845Q: http://patchwork.linuxtv.org/project/linux-media/list/
2846T: git git://linuxtv.org/anttip/media_tree.git
2847S: Maintained
2848F: drivers/media/dvb-frontends/ec100*
2849
Michael Halcrow237fead2006-10-04 02:16:22 -07002850ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002851M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002852M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002853L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002854W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002856F: Documentation/filesystems/ecryptfs.txt
2857F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002858
Alan Coxda9bb1d2006-01-18 17:44:13 -08002859EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002861L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002862W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002864F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002865F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002866F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002867
Borislav Petkovc476c232009-05-20 20:31:58 +02002868EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002869M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002870M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002871L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002872W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002873S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002874F: drivers/edac/amd64_edac*
2875
Ralf Baechlef65aad42012-10-17 00:39:09 +02002876EDAC-CAVIUM
2877M: Ralf Baechle <ralf@linux-mips.org>
2878M: David Daney <david.daney@cavium.com>
2879L: linux-edac@vger.kernel.org
2880L: linux-mips@linux-mips.org
2881W: bluesmoke.sourceforge.net
2882S: Supported
2883F: drivers/edac/octeon_edac*
2884
Dave Peterson0e438e32006-03-26 01:38:55 -08002885EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Mark Gross <mark.gross@intel.com>
2887M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002888L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002889W: bluesmoke.sourceforge.net
2890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002891F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002892
2893EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002894M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002895L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002896W: bluesmoke.sourceforge.net
2897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002898F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002899
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002900EDAC-GHES
2901M: Mauro Carvalho Chehab <mchehab@redhat.com>
2902L: linux-edac@vger.kernel.org
2903W: bluesmoke.sourceforge.net
2904S: Maintained
2905F: drivers/edac/ghes-edac.c
2906
Douglas Thompson6bc78402007-07-19 01:50:12 -07002907EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002909L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002910W: bluesmoke.sourceforge.net
2911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002912F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002913
2914EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002916L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002917W: bluesmoke.sourceforge.net
2918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002919F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002920
2921EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002922M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002923L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002924W: bluesmoke.sourceforge.net
2925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002926F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002927
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002928EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002929M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002930L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002931W: bluesmoke.sourceforge.net
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002934
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002935EDAC-I7300
2936M: Mauro Carvalho Chehab <mchehab@redhat.com>
2937L: linux-edac@vger.kernel.org
2938W: bluesmoke.sourceforge.net
2939S: Maintained
2940F: drivers/edac/i7300_edac.c
2941
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002942EDAC-I7CORE
2943M: Mauro Carvalho Chehab <mchehab@redhat.com>
2944L: linux-edac@vger.kernel.org
2945W: bluesmoke.sourceforge.net
2946S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002947F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002948
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002949EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002950M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302951M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002952L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002953W: bluesmoke.sourceforge.net
2954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002955F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002956
2957EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002958M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002959L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002960W: bluesmoke.sourceforge.net
2961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002962F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002963
Dave Peterson0e438e32006-03-26 01:38:55 -08002964EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002966L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002967W: bluesmoke.sourceforge.net
2968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002970
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002971EDAC-SBRIDGE
2972M: Mauro Carvalho Chehab <mchehab@redhat.com>
2973L: linux-edac@vger.kernel.org
2974W: bluesmoke.sourceforge.net
2975S: Maintained
2976F: drivers/edac/sb_edac.c
2977
Clemens Ladischaf399172011-01-10 16:32:54 +01002978EDIROL UA-101/UA-1000 DRIVER
2979M: Clemens Ladisch <clemens@ladisch.de>
2980L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2981T: git git://git.alsa-project.org/alsa-kernel.git
2982S: Maintained
2983F: sound/usb/misc/ua101.c
2984
Matt Fleming1f7df952012-10-03 10:04:02 +01002985EXTENSIBLE FIRMWARE INTERFACE (EFI)
2986M: Matt Fleming <matt.fleming@intel.com>
2987L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002988T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002989S: Maintained
2990F: Documentation/x86/efi-stub.txt
2991F: arch/ia64/kernel/efi.c
2992F: arch/x86/boot/compressed/eboot.[ch]
2993F: arch/x86/include/asm/efi.h
2994F: arch/x86/platform/efi/*
2995F: drivers/firmware/efivars.c
2996F: include/linux/efi*.h
2997
Peter Jones85a00d92010-09-22 13:05:04 -07002998EFIFB FRAMEBUFFER DRIVER
2999L: linux-fbdev@vger.kernel.org
3000M: Peter Jones <pjones@redhat.com>
3001S: Maintained
3002F: drivers/video/efifb.c
3003
Josh Triplett0bee8d22006-07-30 03:03:58 -07003004EFS FILESYSTEM
3005W: http://aeschi.ch.eu.org/efs/
3006S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003007F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003008
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003009EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3011M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003012L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003014F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003015
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003016EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003017M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003018L: netdev@vger.kernel.org
3019S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003020F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07003021
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003022EM28XX VIDEO4LINUX DRIVER
3023M: Mauro Carvalho Chehab <mchehab@redhat.com>
3024L: linux-media@vger.kernel.org
3025W: http://linuxtv.org
3026T: git git://linuxtv.org/media_tree.git
3027S: Maintained
3028F: drivers/media/usb/em28xx/
3029
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003030EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003031M: Paul Gortmaker <paul.gortmaker@windriver.com>
3032M: Matt Mackall <mpm@selenic.com>
3033M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003034L: linux-embedded@vger.kernel.org
3035S: Maintained
3036
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003037EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003039L: linux-scsi@vger.kernel.org
3040W: http://sourceforge.net/projects/lpfcxxxx
3041S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003042F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003043
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003044ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003045M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003046S: Maintained
3047F: drivers/misc/cb710/
3048F: drivers/mmc/host/cb710-mmc.*
3049F: include/linux/cb710.h
3050
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003051ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3052M: Maxim Levitsky <maximlevitsky@gmail.com>
3053S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003054F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003055
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003056EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003057M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003058S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003059T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003060F: drivers/video/s1d13xxxfb.c
3061F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003064M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003065L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003066L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003067W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003069F: include/linux/netfilter_bridge/
3070F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003073M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003074L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003076F: Documentation/filesystems/ext2.txt
3077F: fs/ext2/
3078F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003081M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003082M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003083M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003084L: linux-ext4@vger.kernel.org
3085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003086F: Documentation/filesystems/ext3.txt
3087F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003088
3089EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003090M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003091M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003092L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003093W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003094Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003096F: Documentation/filesystems/ext4.txt
3097F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Mimi Zoharc5532b02011-08-17 18:52:24 -04003099Extended Verification Module (EVM)
3100M: Mimi Zohar <zohar@us.ibm.com>
3101S: Supported
3102F: security/integrity/evm/
3103
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003104EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3105M: MyungJoo Ham <myungjoo.ham@samsung.com>
3106M: Chanwoo Choi <cw00.choi@samsung.com>
3107L: linux-kernel@vger.kernel.org
3108S: Maintained
3109F: drivers/extcon/
3110F: Documentation/extcon/
3111
Jingoo Han0a799512012-02-06 11:30:39 +09003112EXYNOS DP DRIVER
3113M: Jingoo Han <jg1.han@samsung.com>
3114L: linux-fbdev@vger.kernel.org
3115S: Maintained
3116F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003117F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003118
Donghwa Lee33ad3912012-03-06 11:44:58 +09003119EXYNOS MIPI DISPLAY DRIVERS
3120M: Inki Dae <inki.dae@samsung.com>
3121M: Donghwa Lee <dh09.lee@samsung.com>
3122M: Kyungmin Park <kyungmin.park@samsung.com>
3123L: linux-fbdev@vger.kernel.org
3124S: Maintained
3125F: drivers/video/exynos/exynos_mipi*
3126F: include/video/exynos_mipi*
3127
Jean Delvaree53004e2006-01-09 23:26:14 +01003128F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003129M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003130L: lm-sensors@lm-sensors.org
3131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003132F: Documentation/hwmon/f71805f
3133F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003134
Michael Büscheea977e2012-04-02 12:14:32 -03003135FC0011 TUNER DRIVER
3136M: Michael Buesch <m@bues.ch>
3137L: linux-media@vger.kernel.org
3138S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003139F: drivers/media/tuners/fc0011.h
3140F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003141
Antti Palosaari91952bc2012-10-01 12:28:46 -03003142FC2580 MEDIA DRIVER
3143M: Antti Palosaari <crope@iki.fi>
3144L: linux-media@vger.kernel.org
3145W: http://linuxtv.org/
3146W: http://palosaari.fi/linux/
3147Q: http://patchwork.linuxtv.org/project/linux-media/list/
3148T: git git://linuxtv.org/anttip/media_tree.git
3149S: Maintained
3150F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Eric Paris88b2dbd2010-08-18 12:25:50 -04003152FANOTIFY
3153M: Eric Paris <eparis@redhat.com>
3154S: Maintained
3155F: fs/notify/fanotify/
3156F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003157F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003160M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161W: http://www.farsite.co.uk/
3162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003163F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Akinobu Mitac5408b82007-04-23 14:41:20 -07003165FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003166M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003168F: Documentation/fault-injection/
3169F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003170
Robert Lovecae727d2010-02-16 12:16:00 -08003171FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3172M: Robert Love <robert.w.love@intel.com>
3173L: devel@open-fcoe.org
3174W: www.Open-FCoE.org
3175S: Supported
3176F: drivers/scsi/libfc/
3177F: drivers/scsi/fcoe/
3178F: include/scsi/fc/
3179F: include/scsi/libfc.h
3180F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003181F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003182
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003183FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003184M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003185L: linux-fsdevel@vger.kernel.org
3186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003187F: include/linux/fcntl.h
3188F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003189F: include/uapi/linux/fcntl.h
3190F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003191F: fs/fcntl.c
3192F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003193
3194FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003196L: linux-fsdevel@vger.kernel.org
3197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003198F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003199
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003200FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003201M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003202L: lm-sensors@lm-sensors.org
3203S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003204F: drivers/hwmon/f75375s.c
3205F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003206
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003207FIREWIRE AUDIO DRIVERS
3208M: Clemens Ladisch <clemens@ladisch.de>
3209L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3210T: git git://git.alsa-project.org/alsa-kernel.git
3211S: Maintained
3212F: sound/firewire/
3213
Stefan Richtereb86ec52012-11-03 09:25:20 +01003214FIREWIRE MEDIA DRIVERS (firedtv)
3215M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3216L: linux-media@vger.kernel.org
3217L: linux1394-devel@lists.sourceforge.net
3218T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3219S: Maintained
3220F: drivers/media/firewire/
3221
Chris Boota511ce32012-04-14 17:50:35 -07003222FIREWIRE SBP-2 TARGET
3223M: Chris Boot <bootc@bootc.net>
3224L: linux-scsi@vger.kernel.org
3225L: target-devel@vger.kernel.org
3226L: linux1394-devel@lists.sourceforge.net
3227T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3228S: Maintained
3229F: drivers/target/sbp/
3230
Joe Perches7d2c86b2009-04-07 20:59:01 -07003231FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003232M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003233L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003234W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003235T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003238F: include/linux/firewire.h
3239F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003240F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003241
3242FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003243M: Ming Lei <ming.lei@canonical.com>
3244L: linux-kernel@vger.kernel.org
3245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003246F: Documentation/firmware_class/
3247F: drivers/base/firmware*.c
3248F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003249
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003250FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card)
3251M: Joshua Morris <josh.h.morris@us.ibm.com>
3252M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3253S: Maintained
3254F: drivers/block/rsxx/
3255
Jiri Kosina8206f662012-05-18 13:52:29 +02003256FLOPPY DRIVER
3257M: Jiri Kosina <jkosina@suse.cz>
3258T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3259S: Odd fixes
3260F: drivers/block/floppy.c
3261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003262FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003263M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003264W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003266F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003267
3268FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003269L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003270S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003271F: drivers/net/wan/dlci.c
3272F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003273
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003275M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003276L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003278Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003279T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003281F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003282F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003283F: drivers/video/
3284F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003285F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003286F: include/uapi/video/
3287F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Timur Tabia57c1882012-10-16 17:33:42 -05003289FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003290M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003291L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003292S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003293F: drivers/video/fsl-diu-fb.*
3294
Zhang Wei173acc72008-03-01 07:42:48 -07003295FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Li Yang <leoli@freescale.com>
3297M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003298L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003300F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003301
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003302FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003304L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003305L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003307F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003308
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003309FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003310M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003311L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003312L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003313S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003314F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003315F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003316
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003317FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003318M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3319M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003320L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003321L: netdev@vger.kernel.org
3322S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003323F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003324F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003325
Timur Tabid9e9d822008-04-24 08:45:26 +10003326FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003327L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003328S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003329F: arch/powerpc/sysdev/qe_lib/
3330F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003331
Joe Perchesb55ef9292009-10-26 16:49:46 -07003332FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003334L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003335L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003336S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003337F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003338
Li Yangbeaf53b2007-05-25 13:54:02 +08003339FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003340M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003341L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003342L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003343S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003344F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003345
Timur Tabid9e9d822008-04-24 08:45:26 +10003346FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003347M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003348L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003349S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003350F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003351
3352FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003353M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003354L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003355L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003356S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003357F: sound/soc/fsl/fsl*
3358F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003361M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003364F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Pavel Machek71038f52009-01-15 13:51:02 -08003366FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003367M: Pavel Machek <pavel@ucw.cz>
3368M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003369L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003371F: Documentation/power/freezing-of-tasks.txt
3372F: include/linux/freezer.h
3373F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003374
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003375FRONTSWAP API
3376M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3377L: linux-kernel@vger.kernel.org
3378S: Maintained
3379F: mm/frontswap.c
3380F: include/linux/frontswap.h
3381
David Howellsa5432f5a2009-04-20 15:46:45 +01003382FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003383M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003384L: linux-cachefs@redhat.com
3385S: Supported
3386F: Documentation/filesystems/caching/
3387F: fs/fscache/
3388F: include/linux/fscache*.h
3389
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003390F2FS FILE SYSTEM
3391M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3392L: linux-f2fs-devel@lists.sourceforge.net
3393W: http://en.wikipedia.org/wiki/F2FS
3394T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3395S: Maintained
3396F: Documentation/filesystems/f2fs.txt
3397F: fs/f2fs/
3398F: include/linux/f2fs_fs.h
3399
David Howells5ab7ffe2007-04-10 15:10:45 +01003400FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003401M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003403F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Jonathan Woithe20b93732008-06-11 10:14:56 +09303405FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303406M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003407L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003409F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303410
Heungjun Kim4da621b62011-11-11 08:05:33 -03003411FUJITSU M-5MO LS CAMERA ISP DRIVER
3412M: Kyungmin Park <kyungmin.park@samsung.com>
3413M: Heungjun Kim <riverful.kim@samsung.com>
3414L: linux-media@vger.kernel.org
3415S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003416F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003417F: include/media/m5mols.h
3418
Robert Gerlach2d24c492012-01-18 14:26:22 +01003419FUJITSU TABLET EXTRAS
3420M: Robert Gerlach <khnz@gmx.de>
3421L: platform-driver-x86@vger.kernel.org
3422S: Maintained
3423F: drivers/platform/x86/fujitsu-tablet.c
3424
Miklos Szeredi04578f12005-09-09 13:10:22 -07003425FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003427L: fuse-devel@lists.sourceforge.net
3428W: http://fuse.sourceforge.net/
3429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003430F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003431F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003432
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003434M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003436S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003437F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
3439GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003440M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441L: linux-scsi@vger.kernel.org
3442W: http://www.icp-vortex.com/
3443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003444F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003446GEMTEK FM RADIO RECEIVER DRIVER
3447M: Hans Verkuil <hverkuil@xs4all.nl>
3448L: linux-media@vger.kernel.org
3449T: git git://linuxtv.org/media_tree.git
3450W: http://linuxtv.org
3451S: Maintained
3452F: drivers/media/radio/radio-gemtek*
3453
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003454GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003455M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003457F: drivers/i2c/busses/i2c-gpio.c
3458F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003459
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003460GENERIC GPIO I2C MULTIPLEXER DRIVER
3461M: Peter Korsgaard <peter.korsgaard@barco.com>
3462L: linux-i2c@vger.kernel.org
3463S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003464F: drivers/i2c/muxes/i2c-mux-gpio.c
3465F: include/linux/i2c-mux-gpio.h
3466F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003467
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003468GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003469M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003472F: drivers/net/wan/c101.c
3473F: drivers/net/wan/hd6457*
3474F: drivers/net/wan/hdlc*
3475F: drivers/net/wan/n2.c
3476F: drivers/net/wan/pc300too.c
3477F: drivers/net/wan/pci200syn.c
3478F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003480GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003481M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003482L: linux-arch@vger.kernel.org
3483T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3484S: Maintained
3485F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003486F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003487
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003488GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003489M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003490L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003491S: Supported
3492F: drivers/uio/uio_pci_generic.c
3493
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003494GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003496L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003497W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003498T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3499T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003501F: Documentation/filesystems/gfs2*.txt
3502F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003503F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003504
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003505GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003506M: Hansjoerg Lipp <hjlipp@web.de>
3507M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003508L: gigaset307x-common@lists.sourceforge.net
3509W: http://gigaset307x.sourceforge.net/
3510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003511F: Documentation/isdn/README.gigaset
3512F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003513F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003514
Grant Likelya0dc00b2011-02-12 01:48:14 -07003515GPIO SUBSYSTEM
3516M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003517M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003518S: Maintained
3519T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003520F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003521F: drivers/gpio/
3522F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003523F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003524
Harry Wei71a6d0a2011-05-11 15:13:33 -07003525GRE DEMULTIPLEXER DRIVER
3526M: Dmitry Kozlov <xeb@mail.ru>
3527L: netdev@vger.kernel.org
3528S: Maintained
3529F: net/ipv4/gre.c
3530F: include/net/gre.h
3531
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003532GRETH 10/100/1G Ethernet MAC device driver
3533M: Kristoffer Glembo <kristoffer@gaisler.com>
3534L: netdev@vger.kernel.org
3535S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003536F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003537
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003538GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003539M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003540L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003541T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003542S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003543F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003544
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003545GSPCA GL860 SUBDRIVER
3546M: Olivier Lorin <o.lorin@laposte.net>
3547L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003548T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003549S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003550F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003551
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003552GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003553M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003554L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003555T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003556S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003557F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003558
3559GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003560M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003561L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003562T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003563S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003564F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003565
Brian Johnson261982f2009-07-19 15:58:56 -03003566GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003567M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003568L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003569T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003570S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003571F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003572
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003573GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003574M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003575L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003576T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003577S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003578F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003579
3580GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003581M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003582L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003583T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003584S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003585F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003586
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003587STK1160 USB VIDEO CAPTURE DRIVER
3588M: Ezequiel Garcia <elezegarcia@gmail.com>
3589L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003590T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003591S: Maintained
3592F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003593
Harry Wei71a6d0a2011-05-11 15:13:33 -07003594HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3595M: Frank Seidel <frank@f-seidel.de>
3596L: platform-driver-x86@vger.kernel.org
3597W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3598S: Maintained
3599F: drivers/platform/x86/hdaps.c
3600
3601HWPOISON MEMORY FAILURE HANDLING
3602M: Andi Kleen <andi@firstfloor.org>
3603L: linux-mm@kvack.org
3604T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3605S: Maintained
3606F: mm/memory-failure.c
3607F: mm/hwpoison-inject.c
3608
3609HYPERVISOR VIRTUAL CONSOLE DRIVER
3610L: linuxppc-dev@lists.ozlabs.org
3611S: Odd Fixes
3612F: drivers/tty/hvc/
3613
Michael Buesch844dd052006-06-26 00:24:59 -07003614HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003615M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003616M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003617L: lm-sensors@lm-sensors.org
3618W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003619T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003620T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003621S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003622F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003623F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003624F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003625
3626HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003627M: Matt Mackall <mpm@selenic.com>
3628M: Herbert Xu <herbert@gondor.apana.org.au>
3629S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003630F: Documentation/hw_random.txt
3631F: drivers/char/hw_random/
3632F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003633
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003634HARDWARE SPINLOCK CORE
3635M: Ohad Ben-Cohen <ohad@wizery.com>
3636S: Maintained
3637F: Documentation/hwspinlock.txt
3638F: drivers/hwspinlock/hwspinlock_*
3639F: include/linux/hwspinlock.h
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003642L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003644F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
Antti Palosaari91952bc2012-10-01 12:28:46 -03003646HD29L2 MEDIA DRIVER
3647M: Antti Palosaari <crope@iki.fi>
3648L: linux-media@vger.kernel.org
3649W: http://linuxtv.org/
3650W: http://palosaari.fi/linux/
3651Q: http://patchwork.linuxtv.org/project/linux-media/list/
3652T: git git://linuxtv.org/anttip/media_tree.git
3653S: Maintained
3654F: drivers/media/dvb-frontends/hd29l2*
3655
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003656HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003657M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003658L: iss_storagedev@hp.com
3659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: Documentation/blockdev/cpqarray.txt
3661F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003662
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003663HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003664M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003665L: iss_storagedev@hp.com
3666S: Supported
3667F: Documentation/scsi/hpsa.txt
3668F: drivers/scsi/hpsa*.[ch]
3669F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003670F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003671
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003672HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003673M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003674L: iss_storagedev@hp.com
3675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003676F: Documentation/blockdev/cciss.txt
3677F: drivers/block/cciss*
3678F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003679F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003682L: linux-fsdevel@vger.kernel.org
3683S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003684F: Documentation/filesystems/hfs.txt
3685F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
3687HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003688M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689L: linux-nvidia@lists.surfsouth.com
3690W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003692F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003694HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003695M: Pavel Machek <pavel@ucw.cz>
3696M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003697L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003699F: arch/x86/power/
3700F: drivers/base/power/
3701F: kernel/power/
3702F: include/linux/suspend.h
3703F: include/linux/freezer.h
3704F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003705F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003706
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003707HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003708M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003709L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003710T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003712F: drivers/hid/
3713F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003714F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003715
Ingo Molnar38bed542007-02-22 09:09:34 +01003716HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003717M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003718T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003720F: Documentation/timers/
3721F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003722F: kernel/time/clockevents.c
3723F: kernel/time/tick*.*
3724F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003725F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003726F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003730S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003731F: drivers/net/hamradio/dmascc.c
3732F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003734HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003735M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003736W: http://www.highpoint-tech.com
3737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003738F: Documentation/scsi/hptiop.txt
3739F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003742M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743L: linux-hippi@sunsite.dk
3744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003745F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003746F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003747F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003748F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
Jouni Malinenff1d2762005-05-12 22:54:16 -04003750HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003751M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003752L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003753L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003754W: http://hostap.epitest.fi/
3755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003757
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003758HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003759L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003760S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003761F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003762
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003763HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003765S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003766F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003767
Joe Perches7d2c86b2009-04-07 20:59:01 -07003768HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: Documentation/timers/hpet.txt
3772F: drivers/char/hpet.c
3773F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003774F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003775
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003776HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003777M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003779F: arch/x86/kernel/hpet.c
3780F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003783M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003786F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
Joe Perches7d2c86b2009-04-07 20:59:01 -07003788HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003789M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003790W: http://www.pharscape.org
3791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003793
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003794HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003796L: linux-input@vger.kernel.org
3797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003801M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003803F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003805Hyper-V CORE AND DRIVERS
3806M: K. Y. Srinivasan <kys@microsoft.com>
3807M: Haiyang Zhang <haiyangz@microsoft.com>
3808L: devel@linuxdriverproject.org
3809S: Maintained
3810F: drivers/hv/
3811F: drivers/hid/hid-hyperv.c
3812F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003813
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003814I2C OVER PARALLEL PORT
3815M: Jean Delvare <khali@linux-fr.org>
3816L: linux-i2c@vger.kernel.org
3817S: Maintained
3818F: Documentation/i2c/busses/i2c-parport
3819F: Documentation/i2c/busses/i2c-parport-light
3820F: drivers/i2c/busses/i2c-parport.c
3821F: drivers/i2c/busses/i2c-parport-light.c
3822
3823I2C/SMBUS CONTROLLER DRIVERS FOR PC
3824M: Jean Delvare <khali@linux-fr.org>
3825L: linux-i2c@vger.kernel.org
3826S: Maintained
3827F: Documentation/i2c/busses/i2c-ali1535
3828F: Documentation/i2c/busses/i2c-ali1563
3829F: Documentation/i2c/busses/i2c-ali15x3
3830F: Documentation/i2c/busses/i2c-amd756
3831F: Documentation/i2c/busses/i2c-amd8111
3832F: Documentation/i2c/busses/i2c-i801
3833F: Documentation/i2c/busses/i2c-nforce2
3834F: Documentation/i2c/busses/i2c-piix4
3835F: Documentation/i2c/busses/i2c-sis5595
3836F: Documentation/i2c/busses/i2c-sis630
3837F: Documentation/i2c/busses/i2c-sis96x
3838F: Documentation/i2c/busses/i2c-via
3839F: Documentation/i2c/busses/i2c-viapro
3840F: drivers/i2c/busses/i2c-ali1535.c
3841F: drivers/i2c/busses/i2c-ali1563.c
3842F: drivers/i2c/busses/i2c-ali15x3.c
3843F: drivers/i2c/busses/i2c-amd756.c
3844F: drivers/i2c/busses/i2c-amd756-s4882.c
3845F: drivers/i2c/busses/i2c-amd8111.c
3846F: drivers/i2c/busses/i2c-i801.c
3847F: drivers/i2c/busses/i2c-isch.c
3848F: drivers/i2c/busses/i2c-nforce2.c
3849F: drivers/i2c/busses/i2c-nforce2-s4985.c
3850F: drivers/i2c/busses/i2c-piix4.c
3851F: drivers/i2c/busses/i2c-sis5595.c
3852F: drivers/i2c/busses/i2c-sis630.c
3853F: drivers/i2c/busses/i2c-sis96x.c
3854F: drivers/i2c/busses/i2c-via.c
3855F: drivers/i2c/busses/i2c-viapro.c
3856
Neil Hormancb7f07a2013-02-10 11:59:03 -05003857I2C/SMBUS ISMT DRIVER
3858M: Seth Heasley <seth.heasley@intel.com>
3859M: Neil Horman <nhorman@tuxdriver.com>
3860L: linux-i2c@vger.kernel.org
3861F: drivers/i2c/busses/i2c-ismt.c
3862F: Documentation/i2c/busses/i2c-ismt
3863
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003864I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003865M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003866L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003867S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003868F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003869
Jean Delvare5b543962005-08-15 19:51:02 +02003870I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003871M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003873L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003874W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003875T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003877F: Documentation/i2c/
3878F: drivers/i2c/
3879F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003880F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003881F: include/uapi/linux/i2c.h
3882F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003884I2C-TAOS-EVM DRIVER
3885M: Jean Delvare <khali@linux-fr.org>
3886L: linux-i2c@vger.kernel.org
3887S: Maintained
3888F: Documentation/i2c/busses/i2c-taos-evm
3889F: drivers/i2c/busses/i2c-taos-evm.c
3890
Till Harbaume8c76ee2007-05-01 23:26:35 +02003891I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003892M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003893L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003894W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003901F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003905T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906S: Maintained
3907
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Tony Luck <tony.luck@intel.com>
3910M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003912T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003914F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Kent Yoder956c2032012-09-07 04:17:01 +08003916IBM Power in-Nest Crypto Acceleration
3917M: Kent Yoder <key@linux.vnet.ibm.com>
3918L: linux-crypto@vger.kernel.org
3919S: Supported
3920F: drivers/crypto/nx/
3921
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003922IBM Power 842 compression accelerator
3923M: Robert Jennings <rcj@linux.vnet.ibm.com>
3924S: Supported
3925F: drivers/crypto/nx/nx-842.c
3926F: include/linux/nx842.h
3927
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003929M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003931F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Santiago Leon9d348af2010-09-03 18:29:53 +00003933IBM Power Virtual Ethernet Device Driver
3934M: Santiago Leon <santil@linux.vnet.ibm.com>
3935L: netdev@vger.kernel.org
3936S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003937F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003938
Robert Jennings4b7652c2012-07-31 12:34:36 -05003939IBM Power Virtual SCSI/FC Device Drivers
3940M: Robert Jennings <rcj@linux.vnet.ibm.com>
3941L: linux-scsi@vger.kernel.org
3942S: Supported
3943F: drivers/scsi/ibmvscsi/
3944X: drivers/scsi/ibmvscsi/ibmvstgt.c
3945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946IBM ServeRAID RAID DRIVER
3947P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003951F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003953ICH LPC AND GPIO DRIVER
3954M: Peter Tyser <ptyser@xes-inc.com>
3955S: Maintained
3956F: drivers/mfd/lpc_ich.c
3957F: drivers/gpio/gpio-ich.c
3958
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003959IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003962Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003963T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: Documentation/ide/
3966F: drivers/ide/
3967F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Ike Panhc6cb8c132011-08-25 22:28:45 +08003969IDEAPAD LAPTOP EXTRAS DRIVER
3970M: Ike Panhc <ike.pan@canonical.com>
3971L: platform-driver-x86@vger.kernel.org
3972W: http://launchpad.net/ideapad-laptop
3973S: Maintained
3974F: drivers/platform/x86/ideapad-laptop.c
3975
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003976IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003977M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003978L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003980F: Documentation/cdrom/ide-cd
3981F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Andy Henroid27471fd2008-10-09 11:45:22 -07003983IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003985L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003987F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003988
Sergey Lapin02cf2282009-06-08 12:18:50 +00003989IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003990M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003992L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003993W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003994T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003995S: Maintained
3996F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003997F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003998F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003999
Sean Young40ad4a32012-11-19 10:32:53 -03004000IGUANAWORKS USB IR TRANSCEIVER
4001M: Sean Young <sean@mess.org>
4002L: linux-media@vger.kernel.org
4003S: Maintained
4004F: drivers/media/rc/iguanair.c
4005
Ameya Palande9545f862012-01-10 09:00:58 -08004006IIO SUBSYSTEM AND DRIVERS
4007M: Jonathan Cameron <jic23@cam.ac.uk>
4008L: linux-iio@vger.kernel.org
4009S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004010F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004011F: drivers/staging/iio/
4012
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004013IKANOS/ADI EAGLE ADSL USB DRIVER
4014M: Matthieu Castet <castet.matthieu@free.fr>
4015M: Stanislaw Gruszka <stf_xl@wp.pl>
4016S: Maintained
4017F: drivers/usb/atm/ueagle-atm.c
4018
Guenter Roecke89ab512013-03-08 08:13:09 -08004019INA209 HARDWARE MONITOR DRIVER
4020M: Guenter Roeck <linux@roeck-us.net>
4021L: lm-sensors@lm-sensors.org
4022S: Maintained
4023F: Documentation/hwmon/ina209
4024F: Documentation/devicetree/bindings/i2c/ina209.txt
4025F: drivers/hwmon/ina209.c
4026
4027INA2XX HARDWARE MONITOR DRIVER
4028M: Guenter Roeck <linux@roeck-us.net>
4029L: lm-sensors@lm-sensors.org
4030S: Maintained
4031F: Documentation/hwmon/ina2xx
4032F: drivers/hwmon/ina2xx.c
4033F: include/linux/platform_data/ina2xx.h
4034
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004035INDUSTRY PACK SUBSYSTEM (IPACK)
4036M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4037M: Jens Taprogge <jens.taprogge@taprogge.org>
4038M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4039L: industrypack-devel@lists.sourceforge.net
4040W: http://industrypack.sourceforge.net
4041S: Maintained
4042F: drivers/ipack/
4043
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004044INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004045M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004047F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004048
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004050L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004051S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004052F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
4054INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004055M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004056M: Sean Hefty <sean.hefty@intel.com>
4057M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004058L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004059W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004060Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004061T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004063F: Documentation/infiniband/
4064F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004065F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Robert Lovec9f04f52005-07-15 12:21:07 -04004067INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: John McCutchan <john@johnmccutchan.com>
4069M: Robert Love <rlove@rlove.org>
4070M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004072F: Documentation/filesystems/inotify.txt
4073F: fs/notify/inotify/
4074F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004075F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004076
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004077INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004078M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4079M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004080L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004081Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004082T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004085F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004086F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004087F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004088
Henrik Rydberg3267a872010-06-24 19:10:40 -07004089INPUT MULTITOUCH (MT) PROTOCOL
4090M: Henrik Rydberg <rydberg@euromail.se>
4091L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004092T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004093S: Maintained
4094F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004095F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004096K: \b(ABS|SYN)_MT_
4097
Dave Jiang4ac13e12011-07-29 17:16:55 -07004098INTEL C600 SERIES SAS CONTROLLER DRIVER
4099M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004100M: Lukasz Dorau <lukasz.dorau@intel.com>
4101M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004102M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004103L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004104T: git git://git.code.sf.net/p/intel-sas/isci
4105S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004106F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004107
Len Brown26717172010-03-08 14:07:30 -05004108INTEL IDLE DRIVER
4109M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004110L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004111T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004112S: Supported
4113F: drivers/idle/intel_idle.c
4114
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004115INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004116M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004117L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004119F: Documentation/fb/intelfb.txt
4120F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004123M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004124L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304128INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004130L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304131W: http://www.lesswatts.org/projects/acpi/
4132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304134
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004136M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: arch/x86/kernel/microcode_core.c
4139F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004141INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004142M: Dan Williams <djbw@fb.com>
4143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004145
David Woodhouse6c8909b2008-10-18 16:12:17 +01004146INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004148L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004149T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004150S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004151F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004152F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004153
Dan Williamsb3e5f262007-08-07 10:26:35 -07004154INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004155M: Dan Williams <djbw@fb.com>
4156S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004157F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004158
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004159INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004160M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004162F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4163F: arch/arm/mach-ixp4xx/include/mach/npe.h
4164F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4165F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004166F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004167F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004168
Michael Buesch844dd052006-06-26 00:24:59 -07004169INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004170M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004172F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004173
Jeff Kirsher0d164402010-10-05 01:15:17 +00004174INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004175M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4176M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4177M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004178M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4179M: Don Skidmore <donald.c.skidmore@intel.com>
4180M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004181M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004182M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004183M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004184M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004185L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004186W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004187W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004188T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4189T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004191F: Documentation/networking/e100.txt
4192F: Documentation/networking/e1000.txt
4193F: Documentation/networking/e1000e.txt
4194F: Documentation/networking/igb.txt
4195F: Documentation/networking/igbvf.txt
4196F: Documentation/networking/ixgb.txt
4197F: Documentation/networking/ixgbe.txt
4198F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004199F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004201INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4202M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004203L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004205F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004206F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004207F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004208
Shane Wang4bd96a72010-03-10 14:36:10 +08004209INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004210M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4211M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004212M: Shane Wang <shane.wang@intel.com>
4213L: tboot-devel@lists.sourceforge.net
4214W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004215T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004216S: Supported
4217F: Documentation/intel_txt.txt
4218F: include/linux/tboot.h
4219F: arch/x86/kernel/tboot.c
4220
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004221INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004222M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004223M: linux-wimax@intel.com
4224L: wimax@linuxwimax.org
4225S: Supported
4226W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004227F: Documentation/wimax/README.i2400m
4228F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004229F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004230
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004231INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4232M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004233L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004234S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004235F: drivers/net/wireless/iwlegacy/
4236
Zhu Yib481de92007-09-25 17:54:57 -07004237INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004238M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004239M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004240M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004241L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004242W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004243T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004245F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004246
Tomas Winklerde8fe022012-05-09 16:39:02 +03004247INTEL MANAGEMENT ENGINE (mei)
4248M: Tomas Winkler <tomas.winkler@intel.com>
4249L: linux-kernel@vger.kernel.org
4250S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004251F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004252F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004253F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004254
Ralf Baechlecb109a02007-08-30 23:56:30 -07004255IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004256M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257L: linux-mips@linux-mips.org
4258S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004259F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Ralf Baechlecb109a02007-08-30 23:56:30 -07004261IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004263L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004264S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004265F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004266
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004267IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004270F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Francois Romieu1202d6f2007-09-17 17:13:55 -07004272IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004273M: Francois Romieu <romieu@fr.zoreil.com>
4274M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004275L: netdev@vger.kernel.org
4276S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004277F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004278
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004279IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004280M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004281L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004283F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004284
Corey Minyard4409ebe2006-04-20 02:43:12 -07004285IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004286M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004287L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004288W: http://openipmi.sourceforge.net/
4289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004290F: Documentation/IPMI.txt
4291F: drivers/char/ipmi/
4292F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004293F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004294
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004295IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004296M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004297L: linux-scsi@vger.kernel.org
4298W: http://www.adaptec.com/
4299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004300F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004301
4302IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004303M: Wensong Zhang <wensong@linux-vs.org>
4304M: Simon Horman <horms@verge.net.au>
4305M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004306L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004307L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004309F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004310F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004311F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004312F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
Randy Dunlape7839f22008-10-12 16:11:45 -07004314IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Jiri Kosina <jkosina@suse.cz>
4316M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004317S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004318F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004320IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004321M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322L: netdev@vger.kernel.org
4323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004324F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004325F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004326F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004327
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004330L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004331L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004333S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004334T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/networking/irda.txt
4336F: drivers/net/irda/
4337F: include/net/irda/
4338F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004340IRQ SUBSYSTEM
4341M: Thomas Gleixner <tglx@linutronix.de>
4342S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004343T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004344F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004345F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004346
Grant Likely7ab3a832012-02-14 14:06:47 -07004347IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4348M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4349M: Grant Likely <grant.likely@secretlab.ca>
4350T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4351S: Maintained
4352F: Documentation/IRQ-domain.txt
4353F: include/linux/irqdomain.h
4354F: kernel/irq/irqdomain.c
4355
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004356ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004357M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004359F: Documentation/isapnp.txt
4360F: drivers/pnp/isapnp/
4361F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004362
Hans Verkuild39b84202012-11-23 07:07:02 -03004363ISA RADIO MODULE
4364M: Hans Verkuil <hverkuil@xs4all.nl>
4365L: linux-media@vger.kernel.org
4366T: git git://linuxtv.org/media_tree.git
4367W: http://linuxtv.org
4368S: Maintained
4369F: drivers/media/radio/radio-isa*
4370
Harry Wei71a6d0a2011-05-11 15:13:33 -07004371iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4372M: Peter Jones <pjones@redhat.com>
4373M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4374S: Maintained
4375F: drivers/firmware/iscsi_ibft*
4376
Mike Christie14816b1e2007-11-28 16:22:06 -08004377ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004379L: open-iscsi@googlegroups.com
4380W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004381T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004383F: drivers/scsi/*iscsi*
4384F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004387M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004388L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004389L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004391T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: Documentation/isdn/
4394F: drivers/isdn/
4395F: include/linux/isdn.h
4396F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004397F: include/uapi/linux/isdn.h
4398F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004402L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403W: http://www.melware.de
4404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004405F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Jean Delvared6248702010-03-05 22:17:20 +01004407IT87 HARDWARE MONITORING DRIVER
4408M: Jean Delvare <khali@linux-fr.org>
4409L: lm-sensors@lm-sensors.org
4410S: Maintained
4411F: Documentation/hwmon/it87
4412F: drivers/hwmon/it87.c
4413
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004414IT913X MEDIA DRIVER
4415M: Malcolm Priestley <tvboxspy@gmail.com>
4416L: linux-media@vger.kernel.org
4417W: http://linuxtv.org/
4418Q: http://patchwork.linuxtv.org/project/linux-media/list/
4419S: Maintained
4420F: drivers/media/usb/dvb-usb-v2/it913x*
4421
4422IT913X FE MEDIA DRIVER
4423M: Malcolm Priestley <tvboxspy@gmail.com>
4424L: linux-media@vger.kernel.org
4425W: http://linuxtv.org/
4426Q: http://patchwork.linuxtv.org/project/linux-media/list/
4427S: Maintained
4428F: drivers/media/dvb-frontends/it913x-fe*
4429
Hans Verkuil91821ff2007-12-02 09:35:33 -03004430IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004431M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004432L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004433L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004434T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004435W: http://www.ivtvdriver.org
4436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004438F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004439F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004440
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004441IX2505V MEDIA DRIVER
4442M: Malcolm Priestley <tvboxspy@gmail.com>
4443L: linux-media@vger.kernel.org
4444W: http://linuxtv.org/
4445Q: http://patchwork.linuxtv.org/project/linux-media/list/
4446S: Maintained
4447F: drivers/media/dvb-frontends/ix2505v*
4448
Guenter Roeck4453d732010-08-09 17:21:08 -07004449JC42.4 TEMPERATURE SENSOR DRIVER
4450M: Guenter Roeck <linux@roeck-us.net>
4451L: lm-sensors@lm-sensors.org
4452S: Maintained
4453F: drivers/hwmon/jc42.c
4454F: Documentation/hwmon/jc42
4455
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004456JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004457M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004458L: jfs-discussion@lists.sourceforge.net
4459W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004460T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: Documentation/filesystems/jfs.txt
4463F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004464
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004465JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004466M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004467L: netdev@vger.kernel.org
4468S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004469F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004470
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004473L: linux-mtd@lists.infradead.org
4474W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004476F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004477F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Josh Triplettde456d32006-07-30 03:04:00 -07004479JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004481M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004482L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004483S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004484F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004485F: include/linux/jbd.h
4486
4487JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4488M: "Theodore Ts'o" <tytso@mit.edu>
4489L: linux-ext4@vger.kernel.org
4490S: Maintained
4491F: fs/jbd2/
4492F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004493
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004494JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004495M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004496L: linux-serial@vger.kernel.org
4497S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004498F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004499
Clemens Ladischaf399172011-01-10 16:32:54 +01004500K10TEMP HARDWARE MONITORING DRIVER
4501M: Clemens Ladisch <clemens@ladisch.de>
4502L: lm-sensors@lm-sensors.org
4503S: Maintained
4504F: Documentation/hwmon/k10temp
4505F: drivers/hwmon/k10temp.c
4506
Rudolf Marek4660cb32006-10-08 22:01:26 +02004507K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004508M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004509L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004511F: Documentation/hwmon/k8temp
4512F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004515M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004516L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004517S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004518F: Documentation/kbuild/kconfig-language.txt
4519F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Vivek Goyalea6c2082006-05-20 14:59:55 -07004521KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004522M: Vivek Goyal <vgoyal@redhat.com>
4523M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004524L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004525W: http://lse.sourceforge.net/kdump/
4526S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004527F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004528
Hans Verkuilf41bf022012-11-23 07:04:36 -03004529KEENE FM RADIO TRANSMITTER DRIVER
4530M: Hans Verkuil <hverkuil@xs4all.nl>
4531L: linux-media@vger.kernel.org
4532T: git git://linuxtv.org/media_tree.git
4533W: http://linuxtv.org
4534S: Maintained
4535F: drivers/media/radio/radio-keene*
4536
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004539L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
Michal Marek70fb7ba2010-01-29 14:22:43 +01004543KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004544M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004545T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4546T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004547L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004549F: Documentation/kbuild/
4550F: Makefile
4551F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004552F: scripts/basic/
4553F: scripts/mk*
4554F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004557L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004558W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004559S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004561KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004562M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004563L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004566F: fs/nfsd/
4567F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004568F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004569F: fs/lockd/
4570F: fs/nfs_common/
4571F: net/sunrpc/
4572F: include/linux/lockd/
4573F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004574F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Avi Kivity426d62e2006-12-13 00:34:03 -08004576KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004577M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004578M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004579L: kvm@vger.kernel.org
4580W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004582F: Documentation/*/kvm.txt
4583F: arch/*/kvm/
4584F: arch/*/include/asm/kvm*
4585F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004586F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004587F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004588
Joerg Roedelad8003d2008-09-10 20:01:07 +02004589KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004590M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004591L: kvm@vger.kernel.org
4592W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004594F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004595F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004596
Hollis Blanchard513014b2008-04-16 23:28:08 -05004597KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004598M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004599L: kvm-ppc@vger.kernel.org
4600W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004601T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004603F: arch/powerpc/include/asm/kvm*
4604F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004605
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004606KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004608L: kvm-ia64@vger.kernel.org
4609W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004611F: Documentation/ia64/kvm.txt
4612F: arch/ia64/include/asm/kvm*
4613F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004614
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004615KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004617M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004618M: linux390@de.ibm.com
4619L: linux-s390@vger.kernel.org
4620W: http://www.ibm.com/developerworks/linux/linux390/
4621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/s390/kvm.txt
4623F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004624F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004625F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004626
Christoffer Dalla7494742013-01-20 18:42:26 -05004627KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4628M: Christoffer Dall <cdall@cs.columbia.edu>
4629L: kvmarm@lists.cs.columbia.edu
4630W: http://systems.cs.columbia.edu/projects/kvm-arm
4631S: Maintained
4632F: arch/arm/include/uapi/asm/kvm*
4633F: arch/arm/include/asm/kvm*
4634F: arch/arm/kvm/
4635
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004636KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004638W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004639L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004641F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004642F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004643F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004644
David Howellse9714612010-03-29 23:42:09 +01004645KEYS/KEYRINGS:
4646M: David Howells <dhowells@redhat.com>
4647L: keyrings@linux-nfs.org
4648S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004649F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004650F: include/linux/key.h
4651F: include/linux/key-type.h
4652F: include/keys/
4653F: security/keys/
4654
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004655KEYS-TRUSTED
4656M: David Safford <safford@watson.ibm.com>
4657M: Mimi Zohar <zohar@us.ibm.com>
4658L: linux-security-module@vger.kernel.org
4659L: keyrings@linux-nfs.org
4660S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004661F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004662F: include/keys/trusted-type.h
4663F: security/keys/trusted.c
4664F: security/keys/trusted.h
4665
4666KEYS-ENCRYPTED
4667M: Mimi Zohar <zohar@us.ibm.com>
4668M: David Safford <safford@watson.ibm.com>
4669L: linux-security-module@vger.kernel.org
4670L: keyrings@linux-nfs.org
4671S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004672F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004673F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004674F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004675
Jason Wessel5b778da2010-05-20 21:04:28 -05004676KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004678W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004679L: kgdb-bugreport@lists.sourceforge.net
4680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004681F: Documentation/DocBook/kgdb.tmpl
4682F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004683F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004684F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004685F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004686F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004687
Pekka Enberg456db8c2008-04-28 22:47:29 +03004688KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004689M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004690M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004691S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004692F: Documentation/kmemcheck.txt
4693F: arch/x86/include/asm/kmemcheck.h
4694F: arch/x86/mm/kmemcheck/
4695F: include/linux/kmemcheck.h
4696F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004697
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004698KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004700S: Maintained
4701F: Documentation/kmemleak.txt
4702F: include/linux/kmemleak.h
4703F: mm/kmemleak.c
4704F: mm/kmemleak-test.c
4705
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004706KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004707M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4708M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4709M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004710M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004712F: Documentation/kprobes.txt
4713F: include/linux/kprobes.h
4714F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004715
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004716KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004717M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004718W: http://miguelojeda.es/auxdisplay.htm
4719W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004721F: Documentation/auxdisplay/ks0108
4722F: drivers/auxdisplay/ks0108.c
4723F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004724
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004727S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004728F: Documentation/networking/lapb-module.txt
4729F: include/*/lapb.h
4730F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004733M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734L: linux-scsi@vger.kernel.org
4735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004736F: Documentation/scsi/53c700.txt
4737F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
Richard Purdie263de9b2006-05-15 09:44:16 -07004739LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004740M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004742L: linux-leds@vger.kernel.org
4743T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004745F: drivers/leds/
4746F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004747
Jean Delvareb0461a42011-06-15 15:08:46 -07004748LEGACY EEPROM DRIVER
4749M: Jean Delvare <khali@linux-fr.org>
4750S: Maintained
4751F: Documentation/misc-devices/eeprom
4752F: drivers/misc/eeprom/eeprom.c
4753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756L: legousb-devel@lists.sourceforge.net
4757W: http://legousb.sourceforge.net/
4758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004759F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Michael Krufky055616a2012-10-02 00:56:06 -03004761LG2160 MEDIA DRIVER
4762M: Michael Krufky <mkrufky@linuxtv.org>
4763L: linux-media@vger.kernel.org
4764W: http://linuxtv.org/
4765W: http://github.com/mkrufky
4766Q: http://patchwork.linuxtv.org/project/linux-media/list/
4767T: git git://linuxtv.org/mkrufky/tuners.git
4768S: Maintained
4769F: drivers/media/dvb-frontends/lg2160.*
4770
Michael Krufky6f0e7722012-10-02 00:56:00 -03004771LGDT3305 MEDIA DRIVER
4772M: Michael Krufky <mkrufky@linuxtv.org>
4773L: linux-media@vger.kernel.org
4774W: http://linuxtv.org/
4775W: http://github.com/mkrufky
4776Q: http://patchwork.linuxtv.org/project/linux-media/list/
4777T: git git://linuxtv.org/mkrufky/tuners.git
4778S: Maintained
4779F: drivers/media/dvb-frontends/lgdt3305.*
4780
Rusty Russell568a17f2007-10-25 14:12:24 +10004781LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004782M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004783L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004784W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004785S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004786F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004787F: arch/x86/lguest/
4788F: drivers/lguest/
4789F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004790F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794W: http://www.ibm.com/linux/ltc/projects/ppc
4795S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004796F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004798LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4800M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004802L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004803Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004804T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004806F: Documentation/powerpc/
4807F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
4809LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004812L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004814F: arch/powerpc/platforms/powermac/
4815F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
Grant Likely77a76362008-07-12 12:11:43 -06004817LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004818M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004819L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004820T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004822F: arch/powerpc/platforms/512x/
4823F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
4825LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004826M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004827M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004829L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004830T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004832F: arch/powerpc/platforms/40x/
4833F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
Grant Likely260c02a2007-10-02 12:15:34 +10004835LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004836M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004837W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004838L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004839T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004841F: arch/powerpc/*/*virtex*
4842F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Tom Rinie93adf12005-07-26 12:49:53 -07004844LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004845M: Vitaly Bordug <vitb@kernel.crashing.org>
4846M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004847W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004848L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004849S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004850F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004851
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004853M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004854W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004855L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004856S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004857F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004858F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
Olof Johanssonab06ff32006-09-06 14:44:54 -05004860LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004861M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004862L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004863S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004864F: arch/powerpc/platforms/pasemi/
4865F: drivers/*/*pasemi*
4866F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004870L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871S: Supported
4872
Harry Weia23ce6d2011-02-11 16:52:20 +01004873LIS3LV02D ACCELEROMETER DRIVER
4874M: Eric Piel <eric.piel@tremplin-utc.net>
4875S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004876F: Documentation/misc-devices/lis3lv02d
4877F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004878F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004879
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004880LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004881M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004883F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004884F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004885F: include/net/llc*
4886F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004887
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004888LM73 HARDWARE MONITOR DRIVER
4889M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4890L: lm-sensors@lm-sensors.org
4891S: Maintained
4892F: drivers/hwmon/lm73.c
4893
Jean Delvare156e2d12011-07-25 21:46:11 +02004894LM78 HARDWARE MONITOR DRIVER
4895M: Jean Delvare <khali@linux-fr.org>
4896L: lm-sensors@lm-sensors.org
4897S: Maintained
4898F: Documentation/hwmon/lm78
4899F: drivers/hwmon/lm78.c
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004903L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: Documentation/hwmon/lm83
4906F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
4908LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004910L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004912F: Documentation/hwmon/lm90
4913F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004915LME2510 MEDIA DRIVER
4916M: Malcolm Priestley <tvboxspy@gmail.com>
4917L: linux-media@vger.kernel.org
4918W: http://linuxtv.org/
4919Q: http://patchwork.linuxtv.org/project/linux-media/list/
4920S: Maintained
4921F: drivers/media/usb/dvb-usb-v2/lmedm04*
4922
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004923LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004924M: Peter Zijlstra <peterz@infradead.org>
4925M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004926T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004928F: Documentation/lockdep*.txt
4929F: Documentation/lockstat.txt
4930F: include/linux/lockdep.h
4931F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004932
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004933LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004934M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004935L: linux-ntfs-dev@lists.sourceforge.net
4936W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004938F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004939F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940
Joern Engelef6ada32009-11-20 22:17:12 +01004941LogFS
4942M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304943M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004944L: logfs@logfs.org
4945W: logfs.org
4946S: Maintained
4947F: fs/logfs/
4948
Roland Stiggeb62d7942013-04-02 19:37:11 +02004949LPC32XX MACHINE SUPPORT
4950M: Roland Stigge <stigge@antcom.de>
4951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4952S: Maintained
4953F: arch/arm/mach-lpc32xx/
4954
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004955LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304956M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4957M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004958M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004959L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004960L: linux-scsi@vger.kernel.org
4961W: http://www.lsilogic.com/support
4962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004963F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304964F: drivers/scsi/mpt2sas/
4965F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004968M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969L: linux-scsi@vger.kernel.org
4970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004971F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972
Guenter Roecke5f5c992010-06-25 11:59:54 -07004973LTC4261 HARDWARE MONITOR DRIVER
4974M: Guenter Roeck <linux@roeck-us.net>
4975L: lm-sensors@lm-sensors.org
4976S: Maintained
4977F: Documentation/hwmon/ltc4261
4978F: drivers/hwmon/ltc4261.c
4979
Mike Frysinger81365c32008-10-29 14:01:12 -07004980LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004981M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004982M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004983M: Cyril Hrubis <chrubis@suse.cz>
4984M: Caspar Zhang <caspar@casparzhang.com>
4985M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004986L: ltp-list@lists.sourceforge.net (subscribers-only)
4987W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004988T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004989T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004990S: Maintained
4991
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004992M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004994L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004995L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4996W: http://www.linux-m32r.org/
4997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004998F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004999
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002L: linux-m68k@lists.linux-m68k.org
5003W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005004T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005006F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005007F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
5009M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005012L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005014F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015
5016M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005017M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018W: http://www.tazenda.demon.co.uk/phil/linux-hp
5019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005022M88RS2000 MEDIA DRIVER
5023M: Malcolm Priestley <tvboxspy@gmail.com>
5024L: linux-media@vger.kernel.org
5025W: http://linuxtv.org/
5026Q: http://patchwork.linuxtv.org/project/linux-media/list/
5027S: Maintained
5028F: drivers/media/dvb-frontends/m88rs2000*
5029
Alexey Klimov07a092f2012-11-12 02:57:32 -03005030MA901 MASTERKIT USB FM RADIO DRIVER
5031M: Alexey Klimov <klimov.linux@gmail.com>
5032L: linux-media@vger.kernel.org
5033T: git git://linuxtv.org/media_tree.git
5034S: Maintained
5035F: drivers/media/radio/radio-ma901.c
5036
Jiri Benc64a327a2007-05-05 11:47:08 -07005037MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005038M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005039L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005040W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: Documentation/networking/mac80211-injection.txt
5045F: include/net/mac80211.h
5046F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005047
Stefano Brivio1036d862007-12-23 04:46:27 +01005048MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Stefano Brivio <stefano.brivio@polimi.it>
5050M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005051L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005052W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005053T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5054T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005056F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005057
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005058MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005059M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005060L: netdev@vger.kernel.org
5061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: drivers/net/macvlan.c
5063F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005064
Michael Kerriskfaf16682005-07-31 22:34:47 -07005065MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005066M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005067W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005068L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005069S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005070
stephen hemminger44c14c12012-04-02 12:59:47 +00005071MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5072M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005073M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005074L: netdev@vger.kernel.org
5075S: Maintained
5076F: drivers/net/ethernet/marvell/sk*
5077
Stefano Brivio74cda162007-11-19 20:27:46 +01005078MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005079L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005080S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005081F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005082
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005083MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005084M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005085L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005086S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005087F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005088F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005090MARVELL MVNETA ETHERNET DRIVER
5091M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5092L: netdev@vger.kernel.org
5093S: Maintained
5094F: drivers/net/ethernet/marvell/mvneta.*
5095
Bing Zhaofcad5842011-07-13 13:11:58 -07005096MARVELL MWIFIEX WIRELESS DRIVER
5097M: Bing Zhao <bzhao@marvell.com>
5098L: linux-wireless@vger.kernel.org
5099S: Maintained
5100F: drivers/net/wireless/mwifiex/
5101
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005102MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005103M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005104L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005105S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005106F: drivers/net/wireless/mwl8k.c
5107
Pierre Ossman2a695672009-03-16 19:52:26 +01005108MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005109M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005110S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005111F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005114L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005115S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005116F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005117F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
Guenter Roeckca462082012-06-01 23:28:23 -07005119MAX16065 HARDWARE MONITOR DRIVER
5120M: Guenter Roeck <linux@roeck-us.net>
5121L: lm-sensors@lm-sensors.org
5122S: Maintained
5123F: Documentation/hwmon/max16065
5124F: drivers/hwmon/max16065.c
5125
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005126MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005127M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005128L: lm-sensors@lm-sensors.org
5129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005130F: Documentation/hwmon/max6650
5131F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005132
Guenter Roecke89ab512013-03-08 08:13:09 -08005133MAX6697 HARDWARE MONITOR DRIVER
5134M: Guenter Roeck <linux@roeck-us.net>
5135L: lm-sensors@lm-sensors.org
5136S: Maintained
5137F: Documentation/hwmon/max6697
5138F: Documentation/devicetree/bindings/i2c/max6697.txt
5139F: drivers/hwmon/max6697.c
5140F: include/linux/platform_data/max6697.h
5141
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005142MAXIRADIO FM RADIO RECEIVER DRIVER
5143M: Hans Verkuil <hverkuil@xs4all.nl>
5144L: linux-media@vger.kernel.org
5145T: git git://linuxtv.org/media_tree.git
5146W: http://linuxtv.org
5147S: Maintained
5148F: drivers/media/radio/radio-maxiradio*
5149
Joe Perches127c49a2009-04-08 08:34:04 -07005150MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005151M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005152P: LinuxTV.org Project
5153L: linux-media@vger.kernel.org
5154W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005155Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005156T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005157S: Maintained
5158F: Documentation/dvb/
5159F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005160F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005161F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005162F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005163F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005164F: include/uapi/linux/dvb/
5165F: include/uapi/linux/videodev2.h
5166F: include/uapi/linux/media.h
5167F: include/uapi/linux/v4l2-*
5168F: include/uapi/linux/meye.h
5169F: include/uapi/linux/ivtv*
5170F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005171
Hans Verkuil6149a932012-11-23 07:21:19 -03005172MEDIAVISION PRO MOVIE STUDIO DRIVER
5173M: Hans Verkuil <hverkuil@xs4all.nl>
5174L: linux-media@vger.kernel.org
5175T: git git://linuxtv.org/media_tree.git
5176W: http://linuxtv.org
5177S: Odd Fixes
5178F: drivers/media/parport/pms*
5179
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005180MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005181M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005182L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005183W: http://megaraid.lsilogic.com
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/scsi/megaraid.txt
5186F: drivers/scsi/megaraid.*
5187F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005188
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005189MELLANOX ETHERNET DRIVER (mlx4_en)
5190M: Amir Vadai <amirv@mellanox.com>
5191L: netdev@vger.kernel.org
5192S: Supported
5193W: http://www.mellanox.com
5194Q: http://patchwork.ozlabs.org/project/netdev/list/
5195F: drivers/net/ethernet/mellanox/mlx4/en_*
5196
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005197MEMORY MANAGEMENT
5198L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005199W: http://www.linux-mm.org
5200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005202F: include/linux/gfp.h
5203F: include/linux/mmzone.h
5204F: include/linux/memory_hotplug.h
5205F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005206F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005207
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005208MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005209M: Johannes Weiner <hannes@cmpxchg.org>
5210M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005211M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005212M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005213L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005214L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005216F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005217F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005218
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005219MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005220M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005222W: http://www.linux-mtd.infradead.org/
5223Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005224T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005226F: drivers/mtd/
5227F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005228F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229
James Hogan12285942012-10-10 12:59:49 +01005230METAG ARCHITECTURE
5231M: James Hogan <james.hogan@imgtec.com>
5232S: Supported
5233F: arch/metag/
5234F: Documentation/metag/
5235F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005236F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005237F: drivers/irqchip/irq-metag.c
5238F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005239F: drivers/tty/metag_da.c
5240F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005241
Michal Simekc6375b02009-03-27 14:25:52 +01005242MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005243M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005244L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005245W: http://www.monstr.eu/fdt/
5246T: git git://git.monstr.eu/linux-2.6-microblaze.git
5247S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005248F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
5250MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005251M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005253F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
5255MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005256M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005258W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005259T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005260Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005262F: Documentation/mips/
5263F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
Hans Verkuil08b76202012-11-23 07:15:42 -03005265MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5266M: Hans Verkuil <hverkuil@xs4all.nl>
5267L: linux-media@vger.kernel.org
5268T: git git://linuxtv.org/media_tree.git
5269W: http://linuxtv.org
5270S: Odd Fixes
5271F: drivers/media/radio/radio-miropcm20*
5272
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005274M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: include/linux/module.h
5277F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
5279MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005281S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005282F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005283F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005284F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Jiri Slabyb9705b62008-04-30 00:53:48 -07005286MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005287M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005289F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005290F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005291
Alexey Klimov889b2f82012-11-16 17:43:59 -03005292MR800 AVERMEDIA USB FM RADIO DRIVER
5293M: Alexey Klimov <klimov.linux@gmail.com>
5294L: linux-media@vger.kernel.org
5295T: git git://linuxtv.org/media_tree.git
5296S: Maintained
5297F: drivers/media/radio/radio-mr800.c
5298
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005299MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005300M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005301L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005304
Anisse Astier0f1006b2009-12-17 11:28:49 +01005305MSI WMI SUPPORT
5306M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005307L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005308S: Supported
5309F: drivers/platform/x86/msi-wmi.c
5310
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005311MT9M032 SENSOR DRIVER
5312M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5313L: linux-media@vger.kernel.org
5314T: git git://linuxtv.org/media_tree.git
5315S: Maintained
5316F: drivers/media/i2c/mt9m032.c
5317F: include/media/mt9m032.h
5318
5319MT9P031 SENSOR DRIVER
5320M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5321L: linux-media@vger.kernel.org
5322T: git git://linuxtv.org/media_tree.git
5323S: Maintained
5324F: drivers/media/i2c/mt9p031.c
5325F: include/media/mt9p031.h
5326
5327MT9T001 SENSOR DRIVER
5328M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5329L: linux-media@vger.kernel.org
5330T: git git://linuxtv.org/media_tree.git
5331S: Maintained
5332F: drivers/media/i2c/mt9t001.c
5333F: include/media/mt9t001.h
5334
5335MT9V032 SENSOR DRIVER
5336M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5337L: linux-media@vger.kernel.org
5338T: git git://linuxtv.org/media_tree.git
5339S: Maintained
5340F: drivers/media/i2c/mt9v032.c
5341F: include/media/mt9v032.h
5342
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005343MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005345T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005347F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005348
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005349MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005350M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005351L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005352T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005354F: drivers/mmc/
5355F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005356F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005357
David Brownell15a05802007-08-08 09:12:54 -07005358MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005359S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/mmc/host/mmc_spi.c
5361F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005362
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005366F: Documentation/sound/oss/MultiSound
5367F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
Jiri Slabyd7354102006-12-08 02:38:35 -08005369MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005370S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005371F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005372F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005373
Felipe Balbi550a7372008-07-24 12:27:36 +03005374MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005375M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005376L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005377T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005380
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005381MXL5007T MEDIA DRIVER
5382M: Michael Krufky <mkrufky@linuxtv.org>
5383L: linux-media@vger.kernel.org
5384W: http://linuxtv.org/
5385W: http://github.com/mkrufky
5386Q: http://patchwork.linuxtv.org/project/linux-media/list/
5387T: git git://linuxtv.org/mkrufky/tuners.git
5388S: Maintained
5389F: drivers/media/tuners/mxl5007t.*
5390
Brice Goglin2d3cf582008-05-17 12:45:36 +02005391MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005392M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005393L: netdev@vger.kernel.org
5394W: http://www.myri.com/scs/download-Myri10GE.html
5395S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005396F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005399S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005400F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Daniel Mack23dc05a2011-05-18 11:28:38 +02005402NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5403M: Daniel Mack <zonque@gmail.com>
5404S: Maintained
5405L: alsa-devel@alsa-project.org
5406W: http://www.native-instruments.com
5407F: sound/usb/caiaq/
5408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005410M: Petr Vandrovec <petr@vandrovec.name>
5411S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005412F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
5414NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005415M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416L: linux-scsi@vger.kernel.org
5417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005420NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005422L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005423W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005424S: Supported
5425F: drivers/infiniband/hw/nes/
5426
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005427NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005428M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005429L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005431F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005432
Jon Masonb2f5a052010-07-15 08:47:27 +00005433NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005434M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005435L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005438F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005439F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005440
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442P: Harald Welte
5443P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005444M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005445M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005446L: netfilter-devel@vger.kernel.org
5447L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005448L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449W: http://www.netfilter.org/
5450W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005451T: git git://1984.lsi.us.es/nf
5452T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005454F: include/linux/netfilter*
5455F: include/linux/netfilter/
5456F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005457F: include/uapi/linux/netfilter*
5458F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005459F: net/*/netfilter.c
5460F: net/*/netfilter/
5461F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Paul Moore4cc67732006-09-25 15:57:13 -07005463NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005464M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005465W: http://netlabel.sf.net
5466L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005467S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005468F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005469F: include/net/netlabel.h
5470F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005471
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005473M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005475W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005477F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005478F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005479F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005481NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005482M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005484L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005485F: Documentation/blockdev/nbd.txt
5486F: drivers/block/nbd.c
5487F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005488F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
Neil Horman6e436502009-10-05 03:56:55 +00005490NETWORK DROP MONITOR
5491M: Neil Horman <nhorman@tuxdriver.com>
5492L: netdev@vger.kernel.org
5493S: Maintained
5494W: https://fedorahosted.org/dropwatch/
5495F: net/core/drop_monitor.c
5496
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005498M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005499L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005500W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005501Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005502T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5503T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005505F: net/
5506F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005507F: include/linux/in.h
5508F: include/linux/net.h
5509F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005510F: include/uapi/linux/in.h
5511F: include/uapi/linux/net.h
5512F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
5514NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005515M: "David S. Miller" <davem@davemloft.net>
5516M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005517M: James Morris <jmorris@namei.org>
5518M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5519M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005520L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005521T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005523F: net/ipv4/
5524F: net/ipv6/
5525F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005526F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
David S. Miller73b76562012-10-16 14:08:40 -04005528NETWORKING [IPSEC]
5529M: Steffen Klassert <steffen.klassert@secunet.com>
5530M: Herbert Xu <herbert@gondor.apana.org.au>
5531M: "David S. Miller" <davem@davemloft.net>
5532L: netdev@vger.kernel.org
5533T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5534S: Maintained
5535F: net/xfrm/
5536F: net/key/
5537F: net/ipv4/xfrm*
5538F: net/ipv6/xfrm*
5539F: include/uapi/linux/xfrm.h
5540F: include/net/xfrm.h
5541
James Morris10e2ff12007-08-25 14:41:28 -07005542NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005543M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005544L: netdev@vger.kernel.org
5545S: Maintained
5546
John W. Linville29f8f632006-01-18 14:52:48 -08005547NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005548M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005549L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005550Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005551T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005552S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005553F: net/mac80211/
5554F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005555F: net/wireless/
5556F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005557F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005558F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005559F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005560F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005561
Joe Perches788873a2009-04-16 09:38:45 +00005562NETWORKING DRIVERS
5563L: netdev@vger.kernel.org
5564W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005565Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005566T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5567T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005568S: Odd Fixes
5569F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005570F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005571F: include/linux/netdevice.h
5572F: include/linux/arcdevice.h
5573F: include/linux/etherdevice.h
5574F: include/linux/fcdevice.h
5575F: include/linux/fddidevice.h
5576F: include/linux/hippidevice.h
5577F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005578F: include/uapi/linux/if_*
5579F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005580
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005581NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005582M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005583M: Sony Chacko <sony.chacko@qlogic.com>
5584M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005585L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005586W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005587S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005588F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005589
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005590NFC SUBSYSTEM
5591M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5592M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5593M: Samuel Ortiz <sameo@linux.intel.com>
5594L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005595L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005596S: Maintained
5597F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005598F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005599F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005600F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005601F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005603NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005605L: linux-nfs@vger.kernel.org
5606W: http://client.linux-nfs.org
5607T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005609F: fs/lockd/
5610F: fs/nfs/
5611F: fs/nfs_common/
5612F: net/sunrpc/
5613F: include/linux/lockd/
5614F: include/linux/nfs*
5615F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005616F: include/uapi/linux/nfs*
5617F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005619NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005621L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005622W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005623T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005625F: Documentation/filesystems/nilfs2.txt
5626F: fs/nilfs2/
5627F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005628
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005630M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005633F: Documentation/scsi/NinjaSCSI.txt
5634F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635
5636NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005637M: GOTO Masanori <gotom@debian.or.jp>
5638M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005641F: Documentation/scsi/NinjaSCSI.txt
5642F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
Jon Masonfce8a7b2012-11-16 19:27:12 -07005644NTB DRIVER
5645M: Jon Mason <jon.mason@intel.com>
5646S: Supported
5647F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005648F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005649F: include/linux/ntb.h
5650
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005652M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005654W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005655T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005657F: Documentation/filesystems/ntfs.txt
5658F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005660NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005662L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: drivers/video/riva/
5665F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
Matthew Wilcox79461682012-11-10 08:54:53 -05005667NVM EXPRESS DRIVER
5668M: Matthew Wilcox <willy@linux.intel.com>
5669L: linux-nvme@lists.infradead.org
5670T: git git://git.infradead.org/users/willy/linux-nvme.git
5671S: Supported
5672F: drivers/block/nvme.c
5673F: include/linux/nvme.h
5674
Tony Lindgrenf5525782009-05-28 13:23:53 -07005675OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005676M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005677L: linux-omap@vger.kernel.org
5678W: http://www.muru.com/linux/omap/
5679W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005680Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005681T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005682S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005683F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005684F: drivers/i2c/busses/i2c-omap.c
5685F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005686
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005687OMAP DEVICE TREE SUPPORT
5688M: Benoît Cousson <b-cousson@ti.com>
5689M: Tony Lindgren <tony@atomide.com>
5690L: linux-omap@vger.kernel.org
5691L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5692S: Maintained
5693F: arch/arm/boot/dts/*omap*
5694F: arch/arm/boot/dts/*am3*
5695
Tony Lindgrenf5525782009-05-28 13:23:53 -07005696OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005698L: linux-omap@vger.kernel.org
5699S: Maintained
5700F: arch/arm/*omap*/*clock*
5701
5702OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005703M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005704L: linux-omap@vger.kernel.org
5705S: Maintained
5706F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005707F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005708
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005709OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5710M: Rajendra Nayak <rnayak@ti.com>
5711M: Paul Walmsley <paul@pwsan.com>
5712L: linux-omap@vger.kernel.org
5713S: Maintained
5714F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5715F: arch/arm/mach-omap2/powerdomain44xx.c
5716F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5717F: arch/arm/mach-omap2/clockdomain44xx.c
5718
Tony Lindgrenf5525782009-05-28 13:23:53 -07005719OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005720M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005721M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005722L: alsa-devel@alsa-project.org (subscribers-only)
5723L: linux-omap@vger.kernel.org
5724S: Maintained
5725F: sound/soc/omap/
5726
5727OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005728M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005729L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005730L: linux-omap@vger.kernel.org
5731S: Maintained
5732F: drivers/video/omap/
5733
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005734OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005735M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005736L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005737L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005738S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005739F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005740F: Documentation/arm/OMAP/DSS
5741
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005742OMAP HARDWARE SPINLOCK SUPPORT
5743M: Ohad Ben-Cohen <ohad@wizery.com>
5744L: linux-omap@vger.kernel.org
5745S: Maintained
5746F: drivers/hwspinlock/omap_hwspinlock.c
5747F: arch/arm/mach-omap2/hwspinlock.c
5748
Tony Lindgrenf5525782009-05-28 13:23:53 -07005749OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005750M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005751L: linux-omap@vger.kernel.org
5752S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005753F: drivers/mmc/host/omap.c
5754
5755OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305756M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305757L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005758L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305759S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005760F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005761
5762OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005763M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005764S: Maintained
5765F: drivers/char/hw_random/omap-rng.c
5766
Paul Walmsleyf400c822010-12-06 19:08:54 -07005767OMAP HWMOD SUPPORT
5768M: Benoît Cousson <b-cousson@ti.com>
5769M: Paul Walmsley <paul@pwsan.com>
5770L: linux-omap@vger.kernel.org
5771S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005772F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005773
5774OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5775M: Benoît Cousson <b-cousson@ti.com>
5776L: linux-omap@vger.kernel.org
5777S: Maintained
5778F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5779
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005780OMAP IMAGE SIGNAL PROCESSOR (ISP)
5781M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5782L: linux-media@vger.kernel.org
5783S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005784F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005785
Tony Lindgrenf5525782009-05-28 13:23:53 -07005786OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005787M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005788L: linux-usb@vger.kernel.org
5789L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005790T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005791S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005792F: drivers/usb/*/*omap*
5793F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005794
Kevin Hilman6d994712012-07-16 10:05:07 -07005795OMAP GPIO DRIVER
5796M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005797M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005798L: linux-omap@vger.kernel.org
5799S: Maintained
5800F: drivers/gpio/gpio-omap.c
5801
Bob Copeland0ad122d2008-07-25 19:45:18 -07005802OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005803M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005804L: linux-karma-devel@lists.sourceforge.net
5805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005806F: Documentation/filesystems/omfs.txt
5807F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005808
Harald Weltec1986ee2005-11-13 16:06:29 -08005809OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005810M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005812F: drivers/char/pcmcia/cm4000_cs.c
5813F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005814F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005815
Harald Welte77c44ab2005-11-13 16:06:26 -08005816OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005817M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005820
Jonathan Corbet77d51402007-03-22 19:44:17 -03005821OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005822M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005823L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005824T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005825S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005826F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005827
Thomas Gleixner431bca72007-05-02 09:31:35 +02005828ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005829M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005830L: linux-mtd@lists.infradead.org
5831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005832F: drivers/mtd/onenand/
5833F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005834
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005836M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837L: osst-users@lists.sourceforge.net
5838L: linux-scsi@vger.kernel.org
5839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/scsi/osst*
5841F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005843OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005844M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005845L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005847F: Documentation/i2c/busses/i2c-ocores
5848F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005849
Grant Likely860c44c2009-10-26 16:49:49 -07005850OPEN FIRMWARE AND FLATTENED DEVICE TREE
5851M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005852M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005853L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005854W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005855T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005856S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005857F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005858F: drivers/of
5859F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005860F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005861K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005862K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005863
Jonas Bonn19f9d392011-06-04 22:00:38 +03005864OPENRISC ARCHITECTURE
5865M: Jonas Bonn <jonas@southpole.se>
5866W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005867L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005868S: Maintained
5869T: git git://openrisc.net/~jonas/linux
5870F: arch/openrisc
5871
Jesse Grossccb13522011-10-25 19:26:31 -07005872OPENVSWITCH
5873M: Jesse Gross <jesse@nicira.com>
5874L: dev@openvswitch.org
5875W: http://openvswitch.org
5876T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5877S: Maintained
5878F: net/openvswitch/
5879
Clemens Ladischaf399172011-01-10 16:32:54 +01005880OPL4 DRIVER
5881M: Clemens Ladisch <clemens@ladisch.de>
5882L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5883T: git git://git.alsa-project.org/alsa-kernel.git
5884S: Maintained
5885F: sound/drivers/opl4/
5886
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005888M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889L: oprofile-list@lists.sf.net
5890S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005891F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005892F: arch/*/oprofile/
5893F: drivers/oprofile/
5894F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005896ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005898M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005899L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5900W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005901T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005903F: Documentation/filesystems/ocfs2.txt
5904F: Documentation/filesystems/dlmfs.txt
5905F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005906
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005908L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005909W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005910W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005911S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005912F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005914OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005915M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005916M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005917L: osd-dev@open-osd.org
5918W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005919T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005920S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005921F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005922F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005923F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005924
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005925P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005926M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005927L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005928W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005930F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005931
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005932PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005933M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005934L: netdev@vger.kernel.org
5935S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005936F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005937
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005938PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005939M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005940L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005942F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005943
Steffen Klassert48fc2672010-08-13 10:10:46 -04005944PADATA PARALLEL EXECUTION MECHANISM
5945M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005946L: linux-crypto@vger.kernel.org
5947S: Maintained
5948F: kernel/padata.c
5949F: include/linux/padata.h
5950F: Documentation/padata.txt
5951
Harald Welte709ee532008-09-23 17:46:57 +02005952PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005953M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005954L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005956F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005957
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005958PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005959M: David Howells <dhowells@redhat.com>
5960M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005961L: linux-am33-list@redhat.com (moderated for non-subscribers)
5962W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: Documentation/mn10300/
5965F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005968L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005969S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005970F: drivers/parport/
5971F: include/linux/parport*.h
5972F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005973F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005975PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005976M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005977M: Chris Wright <chrisw@sous-sol.org>
5978M: Alok Kataria <akataria@vmware.com>
5979M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005980L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005982F: Documentation/ia64/paravirt_ops.txt
5983F: arch/*/kernel/paravirt*
5984F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005985
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005988L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989W: http://www.torque.net/linux-pp.html
5990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: Documentation/blockdev/paride.txt
5992F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
5994PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005995M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005996M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005997L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005999Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006000T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006002F: arch/parisc/
6003F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Jim Cromie1662d322006-10-06 00:43:59 -07006005PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006006M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006007L: lm-sensors@lm-sensors.org
6008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006009F: Documentation/hwmon/pc87360
6010F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006011
6012PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006015F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006016
Jean Delvare1ad107f2010-08-14 21:09:00 +02006017PC87427 HARDWARE MONITORING DRIVER
6018M: Jean Delvare <khali@linux-fr.org>
6019L: lm-sensors@lm-sensors.org
6020S: Maintained
6021F: Documentation/hwmon/pc87427
6022F: drivers/hwmon/pc87427.c
6023
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006024PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006025M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006026S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006027F: drivers/leds/leds-pca9532.c
6028F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006029
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006030PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006031M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006032L: linux-i2c@vger.kernel.org
6033S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006034F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006035
Khalid Aziz3971dae2012-04-12 12:49:13 -07006036PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006037M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006038S: Maintained
6039F: drivers/firmware/pcdp.*
6040
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006041PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006042M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006043L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006045F: Documentation/PCI/pci-error-recovery.txt
6046F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006047
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006049M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006050L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006051Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006052T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006054F: Documentation/PCI/
6055F: drivers/pci/
6056F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006059P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006060L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006061W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006062T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: Documentation/pcmcia/
6065F: drivers/pcmcia/
6066F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
6068PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006069M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006070L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006072F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073
Steffen Klassert48fc2672010-08-13 10:10:46 -04006074PCRYPT PARALLEL CRYPTO ENGINE
6075M: Steffen Klassert <steffen.klassert@secunet.com>
6076L: linux-crypto@vger.kernel.org
6077S: Maintained
6078F: crypto/pcrypt.c
6079F: include/crypto/pcrypt.h
6080
Tejun Heoe72df0b2010-12-10 17:02:49 +01006081PER-CPU MEMORY ALLOCATOR
6082M: Tejun Heo <tj@kernel.org>
6083M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6085S: Maintained
6086F: include/linux/percpu*.h
6087F: mm/percpu*.c
6088F: arch/*/include/asm/percpu.h
6089
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006090PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006091M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006093F: include/linux/delayacct.h
6094F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006095
Ingo Molnar57c0c152009-09-21 12:20:38 +02006096PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006097M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6098M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006099M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006100M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006101T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006102S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006103F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006104F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006105F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006106F: arch/*/kernel/perf_event*.c
6107F: arch/*/kernel/*/perf_event*.c
6108F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006109F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006110F: arch/*/kernel/perf_callchain.c
6111F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006112
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006113PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006114M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006115L: linux-abi-devel@lists.sourceforge.net
6116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006117F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006118F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006119
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006120PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006121M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006122S: Supported
6123F: Documentation/networking/phonet.txt
6124F: include/linux/phonet.h
6125F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006126F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006127F: net/phonet/
6128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006130M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131L: linux-mtd@lists.infradead.org
6132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006133F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134
Bruno Prémontefdbb102012-07-30 21:39:03 +02006135PICOLCD HID DRIVER
6136M: Bruno Prémont <bonbons@linux-vserver.org>
6137L: linux-input@vger.kernel.org
6138S: Maintained
6139F: drivers/hid/hid-picolcd*
6140
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006141PICOXCELL SUPPORT
6142M: Jamie Iles <jamie@jamieiles.com>
6143L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6144T: git git://github.com/jamieiles/linux-2.6-ji.git
6145S: Supported
6146F: arch/arm/mach-picoxcell
6147F: drivers/*/picoxcell*
6148F: drivers/*/*/picoxcell*
6149
Linus Walleij2744e8a2011-05-02 20:50:54 +02006150PIN CONTROL SUBSYSTEM
6151M: Linus Walleij <linus.walleij@linaro.org>
6152S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006153F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006154F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006155
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006156PIN CONTROLLER - ATMEL AT91
6157M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6158L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6159S: Maintained
6160F: drivers/pinctrl/pinctrl-at91.c
6161
Viresh Kumardeda8282012-03-28 22:27:07 +05306162PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006163M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306164L: spear-devel@list.st.com
6165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6166W: http://www.st.com/spear
6167S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006168F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306169
Peter Osterlund249a6772005-09-27 21:45:30 -07006170PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006171M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006173F: drivers/block/pktcdvd.c
6174F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006175F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006176
GuanXuetaob31d8272011-01-16 00:35:49 +08006177PKUNITY SOC DRIVERS
6178M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6179W: http://mprc.pku.edu.cn/~guanxuetao/linux
6180S: Maintained
6181T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6182F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006183F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006184F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006185F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006186
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006187PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006188M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006189L: lm-sensors@lm-sensors.org
6190W: http://www.lm-sensors.org/
6191W: http://www.roeck-us.net/linux/drivers/
6192T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6193S: Maintained
6194F: Documentation/hwmon/pmbus
6195F: drivers/hwmon/pmbus/
6196F: include/linux/i2c/pmbus.h
6197
Anil Ravindranath89a36812009-08-25 17:35:18 -07006198PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006199M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006200L: linux-scsi@vger.kernel.org
6201W: http://www.pmc-sierra.com/
6202S: Supported
6203F: drivers/scsi/pmcraid.*
6204
jack wangdbf9bfe2009-10-14 16:19:21 +08006205PMC SIERRA PM8001 DRIVER
6206M: jack_wang@usish.com
6207M: lindar_liu@usish.com
6208L: linux-scsi@vger.kernel.org
6209S: Supported
6210F: drivers/scsi/pm8001/
6211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006213M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006214T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006216F: fs/timerfd.c
6217F: include/linux/timer*
6218F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Anton Vorontsov3be86142007-07-15 04:43:36 +04006220POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006221M: Anton Vorontsov <cbou@mail.ru>
6222M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006223T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006225F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006226F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006227
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006229M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006230M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006232F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Vitaly Wool999445d2007-01-04 13:07:03 +01006234PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006236L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006238F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006239
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006241M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242L: linux-ppp@vger.kernel.org
6243S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006244F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
6246PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006249F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006250F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
6252PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006253M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006255F: drivers/net/ppp/pppoe.c
6256F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
James Chapmana6d23702007-06-27 15:53:17 -07006258PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006259M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006260S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006261F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006262F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006263F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006264
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006265PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006266M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006267W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6268L: linuxpps@ml.enneenne.com (subscribers-only)
6269S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006270F: Documentation/pps/
6271F: drivers/pps/
6272F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006273
Harry Wei71a6d0a2011-05-11 15:13:33 -07006274PPTP DRIVER
6275M: Dmitry Kozlov <xeb@mail.ru>
6276L: netdev@vger.kernel.org
6277S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006278F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006279W: http://sourceforge.net/projects/accel-pptp
6280
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006282M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283L: kpreempt-tech@lists.sourceforge.net
6284W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006286F: Documentation/preempt-locking.txt
6287F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
6289PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006290M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006291L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006292W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006293S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006294F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006296PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006298L: linux-ide@vger.kernel.org
6299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006300F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006301
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006302PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006303M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006304L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006305L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006306S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006307F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006308
Geoff Levandf58a9d12006-11-23 00:46:51 +01006309PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006310M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006311L: linuxppc-dev@lists.ozlabs.org
6312L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006314F: arch/powerpc/boot/ps3*
6315F: arch/powerpc/include/asm/lv1call.h
6316F: arch/powerpc/include/asm/ps3*.h
6317F: arch/powerpc/platforms/ps3/
6318F: drivers/*/ps3*
6319F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006320F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006321F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006322F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006323
Jim Pariscffb4add2009-01-06 11:32:10 +00006324PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006325M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006326L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006327S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006328F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006329
Anton Vorontsov8defe592012-08-03 18:07:20 -07006330PSTORE FILESYSTEM
6331M: Anton Vorontsov <cbouatmailru@gmail.com>
6332M: Colin Cross <ccross@android.com>
6333M: Kees Cook <keescook@chromium.org>
6334M: Tony Luck <tony.luck@intel.com>
6335S: Maintained
6336T: git git://git.infradead.org/users/cbou/linux-pstore.git
6337F: fs/pstore/
6338F: include/linux/pstore*
6339F: drivers/firmware/efivars.c
6340F: drivers/acpi/apei/erst.c
6341
Richard Cochran7fbc4152012-03-10 01:55:53 +00006342PTP HARDWARE CLOCK SUPPORT
6343M: Richard Cochran <richardcochran@gmail.com>
6344S: Maintained
6345W: http://linuxptp.sourceforge.net/
6346F: Documentation/ABI/testing/sysfs-ptp
6347F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006348F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006349F: drivers/net/phy/dp83640*
6350F: drivers/ptp/*
6351F: include/linux/ptp_cl*
6352
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006353PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006354M: Roland McGrath <roland@redhat.com>
6355M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006356S: Maintained
6357F: include/asm-generic/syscall.h
6358F: include/linux/ptrace.h
6359F: include/linux/regset.h
6360F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006361F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006362F: kernel/ptrace.c
6363
Michael Krufky83202042006-07-03 00:24:18 -07006364PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006365M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006366L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006367L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006368W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006369T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006372F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006373
Hans de Goede39532e62012-11-04 17:05:59 -03006374PWC WEBCAM DRIVER
6375M: Hans de Goede <hdegoede@redhat.com>
6376L: linux-media@vger.kernel.org
6377T: git git://linuxtv.org/media_tree.git
6378S: Maintained
6379F: drivers/media/usb/pwc/*
6380
Thierry Reding200efed2012-03-27 13:16:18 +02006381PWM SUBSYSTEM
6382M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006383L: linux-kernel@vger.kernel.org
6384S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006385W: http://gitorious.org/linux-pwm
6386T: git git://gitorious.org/linux-pwm/linux-pwm.git
6387F: Documentation/pwm.txt
6388F: Documentation/devicetree/bindings/pwm/
6389F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006390F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006391F: drivers/video/backlight/pwm_bl.c
6392F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006393
Eric Miao30ec2612008-06-12 15:21:41 -07006394PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006395M: Eric Miao <eric.y.miao@gmail.com>
6396M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006397M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006398L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006399T: git git://github.com/hzhuang1/linux.git
6400T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006402F: arch/arm/mach-pxa/
6403F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006404F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006405F: drivers/usb/gadget/pxa2*
6406F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006407F: sound/arm/pxa*
6408F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006410MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006411M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006412M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006413L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006414T: git git://github.com/hzhuang1/linux.git
6415T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006416S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006417F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006418
Pierre Ossman272f1332007-05-14 21:25:26 +02006419PXA MMCI DRIVER
6420S: Orphan
6421
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006422PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006424L: rtc-linux@googlegroups.com
6425S: Maintained
6426
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006427QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006428M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006429L: linux-rdma@vger.kernel.org
6430S: Supported
6431F: drivers/infiniband/hw/qib/
6432
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006433QLOGIC QLA1280 SCSI DRIVER
6434M: Michael Reed <mdr@sgi.com>
6435L: linux-scsi@vger.kernel.org
6436S: Maintained
6437F: drivers/scsi/qla1280.[ch]
6438
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006440M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006441M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442L: linux-scsi@vger.kernel.org
6443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006444F: Documentation/scsi/LICENSE.qla2xxx
6445F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446
Ravi Anand883c98f2010-04-28 11:45:49 +05306447QLOGIC QLA4XXX iSCSI DRIVER
6448M: Ravi Anand <ravi.anand@qlogic.com>
6449M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6450M: iscsi-driver@qlogic.com
6451L: linux-scsi@vger.kernel.org
6452S: Supported
6453F: drivers/scsi/qla4xxx/
6454
Ron Mercer5a4faa872006-07-25 00:40:21 -07006455QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006456M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006457M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006458M: linux-driver@qlogic.com
6459L: netdev@vger.kernel.org
6460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006461F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006462F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006463
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006464QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Sony Chacko195ca3822013-03-06 13:03:25 +00006465M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6466M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006467M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006468M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006469M: linux-driver@qlogic.com
6470L: netdev@vger.kernel.org
6471S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006472F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006473
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006474QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006475M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006476M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006477M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006478L: netdev@vger.kernel.org
6479S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006480F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006481
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006483M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484W: http://www.alarsen.net/linux/qnx4fs/
6485S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006486F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006487F: include/uapi/linux/qnx4_fs.h
6488F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489
Antti Palosaari91952bc2012-10-01 12:28:46 -03006490QT1010 MEDIA DRIVER
6491M: Antti Palosaari <crope@iki.fi>
6492L: linux-media@vger.kernel.org
6493W: http://linuxtv.org/
6494W: http://palosaari.fi/linux/
6495Q: http://patchwork.linuxtv.org/project/linux-media/list/
6496T: git git://linuxtv.org/anttip/media_tree.git
6497S: Maintained
6498F: drivers/media/tuners/qt1010*
6499
Richard Kuo4f4567c2011-10-31 18:56:38 -05006500QUALCOMM HEXAGON ARCHITECTURE
6501M: Richard Kuo <rkuo@codeaurora.org>
6502L: linux-hexagon@vger.kernel.org
6503S: Supported
6504F: arch/hexagon/
6505
Hans Verkuil35e35402012-11-23 07:02:29 -03006506QUICKCAM PARALLEL PORT WEBCAMS
6507M: Hans Verkuil <hverkuil@xs4all.nl>
6508L: linux-media@vger.kernel.org
6509T: git git://linuxtv.org/media_tree.git
6510W: http://linuxtv.org
6511S: Odd Fixes
6512F: drivers/media/parport/*-qcam*
6513
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006514RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006515M: Yehuda Sadeh <yehuda@inktank.com>
6516M: Sage Weil <sage@inktank.com>
6517M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006518M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006519W: http://ceph.com/
6520T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006521S: Supported
6522F: drivers/block/rbd.c
6523F: drivers/block/rbd_types.h
6524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006526M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006527L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006529F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006530F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531
Hans de Goedec6c9b342012-11-04 17:03:58 -03006532RADIOSHARK RADIO DRIVER
6533M: Hans de Goede <hdegoede@redhat.com>
6534L: linux-media@vger.kernel.org
6535T: git git://linuxtv.org/media_tree.git
6536S: Maintained
6537F: drivers/media/radio/radio-shark.c
6538
6539RADIOSHARK2 RADIO DRIVER
6540M: Hans de Goede <hdegoede@redhat.com>
6541L: linux-media@vger.kernel.org
6542T: git git://linuxtv.org/media_tree.git
6543S: Maintained
6544F: drivers/media/radio/radio-shark2.c
6545F: drivers/media/radio/radio-tea5777.c
6546
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006548M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006549L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006551F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552
Randy Dunlape7839f22008-10-12 16:11:45 -07006553RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006554P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006555M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006556M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006557M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006558L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006559L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006560W: http://rt2x00.serialmonkey.com/
6561S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006562T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006563F: drivers/net/wireless/rt2x00/
6564
Nick Piggin9db55792008-02-08 04:19:49 -08006565RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006566M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006568F: Documentation/blockdev/ramdisk.txt
6569F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006570
Matt Mackall9e95ce22005-04-16 15:25:56 -07006571RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006572M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006574F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006575
Matt Porter394b7012005-11-07 01:00:15 -08006576RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006578M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006581
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006582RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006583L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006584S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006585F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006586
6587RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006588M: Josh Triplett <josh@freedesktop.org>
6589M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006590S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006591T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006592F: Documentation/RCU/torture.txt
6593F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006594
Florian Fainellic1f766b2008-02-06 22:39:44 +01006595RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006596M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006597S: Maintained
6598
Florian Fainellidb17f3952007-12-19 11:30:30 +01006599RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006600M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006601L: netdev@vger.kernel.org
6602S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006603F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006604
Andy Grovera09ed662009-02-24 15:30:41 +00006605RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006606M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006607L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006609F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006610
Josh Triplett595182b2006-10-04 02:17:21 -07006611READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006612M: Dipankar Sarma <dipankar@in.ibm.com>
6613M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006614W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006615S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006616T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006617F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006618X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006619F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006620F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006621X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006622
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006623REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006624M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006625L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006626Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006628F: Documentation/rtc.txt
6629F: drivers/rtc/
6630F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006631F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006632
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006634L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006636F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637
Mark Brownb83a3132011-05-11 19:59:58 +02006638REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006639M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006640T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6641S: Supported
6642F: drivers/base/regmap/
6643F: include/linux/regmap.h
6644
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006645REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6646M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006647T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006648S: Maintained
6649F: drivers/remoteproc/
6650F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006651F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006652
Ivo van Doorne08976452008-04-12 19:23:55 +02006653RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006655L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006656W: http://wireless.kernel.org/
6657T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6658T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006659S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006660F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006661F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006662
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006663RICOH SMARTMEDIA/XD DRIVER
6664M: Maxim Levitsky <maximlevitsky@gmail.com>
6665S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006666F: drivers/mtd/nand/r852.c
6667F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006668
Maxim Levitsky92634122011-03-25 01:56:59 -07006669RICOH R5C592 MEMORYSTICK DRIVER
6670M: Maxim Levitsky <maximlevitsky@gmail.com>
6671S: Maintained
6672F: drivers/memstick/host/r592.*
6673
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674ROCKETPORT DRIVER
6675P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676W: http://www.comtrol.com
6677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006678F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006679F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680
6681ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006684W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006686F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006687F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006688F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689
Antti Palosaari91952bc2012-10-01 12:28:46 -03006690RTL2830 MEDIA DRIVER
6691M: Antti Palosaari <crope@iki.fi>
6692L: linux-media@vger.kernel.org
6693W: http://linuxtv.org/
6694W: http://palosaari.fi/linux/
6695Q: http://patchwork.linuxtv.org/project/linux-media/list/
6696T: git git://linuxtv.org/anttip/media_tree.git
6697S: Maintained
6698F: drivers/media/dvb-frontends/rtl2830*
6699
Larry Finger59840482008-11-12 17:13:09 -06006700RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006701M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006702L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006703W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006704T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006705S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006706F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006707
Larry Finger59840482008-11-12 17:13:09 -06006708RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006709M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: Hin-Tak Leung <htl10@users.sourceforge.net>
6711M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006712L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006713W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006714T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006715S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006716F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006717
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006718RTL8192CE WIRELESS DRIVER
6719M: Larry Finger <Larry.Finger@lwfinger.net>
6720M: Chaoming Li <chaoming_li@realsil.com.cn>
6721L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006722W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006723T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6724S: Maintained
6725F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006726F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006727
6728S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006729M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006730L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006732F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006733
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734S390
Joe Perches8b58be82009-07-29 15:04:30 -07006735M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6736M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006738L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006739W: http://www.ibm.com/developerworks/linux/linux390/
6740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006741F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006742F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006743F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006744F: Documentation/s390/
6745F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006746
6747S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006748M: Ursula Braun <ursula.braun@de.ibm.com>
6749M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006750M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006751L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006752W: http://www.ibm.com/developerworks/linux/linux390/
6753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006754F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006755
Felix Beckfeed9b62009-03-26 15:24:23 +01006756S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006757M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006758M: linux390@de.ibm.com
6759L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006760W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006761S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006762F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006763
Heiko Carstens5238da42006-02-11 17:56:01 -08006764S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006765M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006766M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006767L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006768W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006770F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771
Ursula Braundd96df22007-09-19 13:09:02 +02006772S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006773M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006774M: linux390@de.ibm.com
6775L: linux-s390@vger.kernel.org
6776W: http://www.ibm.com/developerworks/linux/linux390/
6777S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006778F: drivers/s390/net/*iucv*
6779F: include/net/iucv/
6780F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006781
Ben Dooks4dde7f72008-06-30 22:40:38 +01006782S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006783M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006786F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006787
Hans Verkuil1f15a222012-11-23 07:45:29 -03006788SAA6588 RDS RECEIVER DRIVER
6789M: Hans Verkuil <hverkuil@xs4all.nl>
6790L: linux-media@vger.kernel.org
6791T: git git://linuxtv.org/media_tree.git
6792W: http://linuxtv.org
6793S: Odd Fixes
6794F: drivers/media/i2c/saa6588*
6795
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006796SAA7134 VIDEO4LINUX DRIVER
6797M: Mauro Carvalho Chehab <mchehab@redhat.com>
6798L: linux-media@vger.kernel.org
6799W: http://linuxtv.org
6800T: git git://linuxtv.org/media_tree.git
6801S: Odd fixes
6802F: Documentation/video4linux/saa7134/
6803F: drivers/media/pci/saa7134/
6804
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006806M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006807L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006808T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006810F: drivers/media/common/saa7146/
6811F: drivers/media/pci/saa7146/
6812F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813
Corentin Chary92304a42011-12-05 12:38:35 -05006814SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006815M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006816L: platform-driver-x86@vger.kernel.org
6817S: Maintained
6818F: drivers/platform/x86/samsung-laptop.c
6819
Mark Brown4a109cc2010-09-24 10:50:46 +01006820SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006821M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006822L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6823S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006824F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006825
Jingoo Han0d89a282011-12-19 11:09:35 +09006826SAMSUNG FRAMEBUFFER DRIVER
6827M: Jingoo Han <jg1.han@samsung.com>
6828L: linux-fbdev@vger.kernel.org
6829S: Maintained
6830F: drivers/video/s3c-fb.c
6831
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006832SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6833M: Sangbeom Kim <sbkim73@samsung.com>
6834L: linux-kernel@vger.kernel.org
6835S: Supported
6836F: drivers/mfd/sec*.c
6837F: drivers/regulator/s2m*.c
6838F: drivers/regulator/s5m*.c
6839F: drivers/rtc/rtc-sec.c
6840F: include/linux/mfd/samsung/
6841
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006842SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6843M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6844L: linux-media@vger.kernel.org
6845L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6846S: Maintained
6847F: drivers/media/platform/s3c-camif/
6848F: include/media/s3c_camif.h
6849
Andrzej Hajdab84ef242013-01-31 07:03:05 -03006850SAMSUNG S5C73M3 CAMERA DRIVER
6851M: Kyungmin Park <kyungmin.park@samsung.com>
6852M: Andrzej Hajda <a.hajda@samsung.com>
6853L: linux-media@vger.kernel.org
6854S: Supported
6855F: drivers/media/i2c/s5c73m3/*
6856
Alan Coxca749e22011-03-18 13:56:14 +00006857SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006858M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006859L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006860S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006861F: drivers/tty/serial
6862
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306863SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006864M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306865S: Maintained
6866F: include/linux/dw_dmac.h
6867F: drivers/dma/dw_dmac_regs.h
6868F: drivers/dma/dw_dmac.c
6869
Seungwon Jeonf9e37132013-01-17 21:33:23 +09006870SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6871M: Seungwon Jeon <tgih.jun@samsung.com>
6872M: Jaehoon Chung <jh80.chung@samsung.com>
6873L: linux-mmc@vger.kernel.org
6874S: Maintained
6875F: include/linux/mmc/dw_mmc.h
6876F: drivers/mmc/host/dw_mmc*
6877
Thomas Gleixner88606e82010-12-14 21:37:13 +01006878TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006879M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006880M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006881T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006882S: Supported
6883F: include/linux/clocksource.h
6884F: include/linux/time.h
6885F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006886F: include/uapi/linux/time.h
6887F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006888F: kernel/time/clocksource.c
6889F: kernel/time/time*.c
6890F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006891F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006892
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006893TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006894M: Huang Shijie <shijie8@gmail.com>
6895M: Kang Yong <kangyong@telegent.com>
6896M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006897S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006898F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006899
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006901M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006903F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904
6905SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006906M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006907M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006908T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006910F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006911F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006912F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913
Chen Liqin6bcf6732009-06-13 15:24:33 +08006914SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006915M: Chen Liqin <liqin.chen@sunplusct.com>
6916M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006917W: http://www.sunplusct.com
6918S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006919F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006920
Linus Torvalds1da177e2005-04-16 15:20:36 -07006921SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006922M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923L: linux-scsi@vger.kernel.org
6924W: http://www.kernel.dk
6925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006926F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927
Roland Dreierfb50a832010-10-07 09:54:53 -07006928SCSI RDMA PROTOCOL (SRP) INITIATOR
6929M: David Dillow <dillowda@ornl.gov>
6930L: linux-rdma@vger.kernel.org
6931S: Supported
6932W: http://www.openfabrics.org
6933Q: http://patchwork.kernel.org/project/linux-rdma/list/
6934T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6935F: drivers/infiniband/ulp/srp/
6936F: include/scsi/srp.h
6937
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006939M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940L: linux-scsi@vger.kernel.org
6941W: http://www.torque.net/sg
6942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006943F: drivers/scsi/sg.c
6944F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945
6946SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006947M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006949T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6950T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6951T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006953F: drivers/scsi/
6954F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006955
6956SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006957M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958L: linux-scsi@vger.kernel.org
6959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006960F: Documentation/scsi/st.txt
6961F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962
6963SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006964M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006965M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006966L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006967W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006969F: Documentation/networking/sctp.txt
6970F: include/linux/sctp.h
6971F: include/net/sctp/
6972F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973
6974SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006975M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006976S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006977F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006978F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006979F: drivers/watchdog/scx200_wdt.c
6980F: drivers/i2c/busses/scx200*
6981F: drivers/mtd/maps/scx200_docflash.c
6982F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006983
6984SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006985M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006987F: drivers/char/scx200_gpio.c
6988F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006989
6990SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006991M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006993F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994
Sascha Sommer6a369132008-07-15 14:21:29 +02006995SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006996M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006997L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006999F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007000
Randy Dunlape7839f22008-10-12 16:11:45 -07007001SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007002M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007003L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007004T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7005S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007006F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007007F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007008
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007009SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07007010M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007011L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007012L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007014F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015
Ben Dooks0d1bb412009-06-14 13:52:37 +01007016SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007017M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007018L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007019S: Maintained
7020F: drivers/mmc/host/sdhci-s3c.c
7021
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007022SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007023M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007024L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007025L: linux-mmc@vger.kernel.org
7026S: Maintained
7027F: drivers/mmc/host/sdhci-spear.c
7028
James Morris8711cca2008-12-04 03:19:45 +11007029SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007030M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007031L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007032T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007033W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007034S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007035F: security/
James Morris8711cca2008-12-04 03:19:45 +11007036
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007038M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039S: Supported
7040
7041SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007042M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007043M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007044M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007045L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007046W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007047T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007049F: include/linux/selinux*
7050F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007051F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
John Johansenc1c124e2010-07-29 14:48:09 -07007053APPARMOR SECURITY MODULE
7054M: John Johansen <john.johansen@canonical.com>
7055L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7056W: apparmor.wiki.kernel.org
7057T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7058S: Supported
7059F: security/apparmor/
7060
Jiri Slabycef2cf02007-05-08 00:31:45 -07007061SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007064F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007065F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007066
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007067SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007068M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007070T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007072F: drivers/ata/
7073F: include/linux/ata.h
7074F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307076SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007077M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007078L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007079W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007080S: Supported
7081F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307082
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007083SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007084M: Sathya Perla <sathya.perla@emulex.com>
7085M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7086M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007087L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007088W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007089S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007090F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007091
Ben Hutchings8ceee662008-04-27 12:55:59 +01007092SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007093M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007094M: Ben Hutchings <bhutchings@solarflare.com>
7095L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007096S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007097F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007098
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007099SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007100M: Dimitri Sivanich <sivanich@sgi.com>
7101M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007103F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007104
7105SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007106M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007107L: linux-ia64@vger.kernel.org
7108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007109F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007110F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007111F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007112
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007114M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115L: linux-visws-devel@lists.sf.net
7116W: http://linux-visws.sf.net
7117S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007118F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119
Jack Steiner75312612008-08-15 00:40:42 -07007120SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007121M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007123F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007124
Hans Verkuil49cc6292012-11-30 07:13:29 -03007125SI470X FM RADIO RECEIVER I2C DRIVER
7126M: Hans Verkuil <hverkuil@xs4all.nl>
7127L: linux-media@vger.kernel.org
7128T: git git://linuxtv.org/media_tree.git
7129W: http://linuxtv.org
7130S: Odd Fixes
7131F: drivers/media/radio/si470x/radio-si470x-i2c.c
7132
7133SI470X FM RADIO RECEIVER USB DRIVER
7134M: Hans Verkuil <hverkuil@xs4all.nl>
7135L: linux-media@vger.kernel.org
7136T: git git://linuxtv.org/media_tree.git
7137W: http://linuxtv.org
7138S: Maintained
7139F: drivers/media/radio/si470x/radio-si470x-common.c
7140F: drivers/media/radio/si470x/radio-si470x.h
7141F: drivers/media/radio/si470x/radio-si470x-usb.c
7142
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007143SH_VEU V4L2 MEM2MEM DRIVER
7144M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7145L: linux-media@vger.kernel.org
7146S: Maintained
7147F: drivers/media/platform/sh_veu.c
7148F: include/media/sh_veu.h
7149
7150SH_VOU V4L2 OUTPUT DRIVER
7151M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7152L: linux-media@vger.kernel.org
7153S: Maintained
7154F: drivers/media/platform/sh_vou.c
7155F: include/media/sh_vou.h
7156
Len Brown6349d992009-08-14 15:07:14 -04007157SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007158M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007159L: sfi-devel@simplefirmware.org
7160W: http://simplefirmware.org/
7161T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007162S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007163F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007164F: drivers/sfi/
7165F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007166
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167SIMTEC EB110ATX (Chalice CATS)
7168P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007169P: Vincent Sanders <vince@simtec.co.uk>
7170M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171W: http://www.simtec.co.uk/products/EB110ATX/
7172S: Supported
7173
7174SIMTEC EB2410ITX (BAST)
7175P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007176P: Vincent Sanders <vince@simtec.co.uk>
7177M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178W: http://www.simtec.co.uk/products/EB2410ITX/
7179S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007180F: arch/arm/mach-s3c2410/mach-bast.c
7181F: arch/arm/mach-s3c2410/bast-ide.c
7182F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007184TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007185M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007186M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307187L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307188T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007189Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007190S: Supported
7191F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007192F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007193
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007194TI DAVINCI SERIES MEDIA DRIVER
7195M: Manjunath Hadli <manjunath.hadli@ti.com>
7196M: Prabhakar Lad <prabhakar.lad@ti.com>
7197L: linux-media@vger.kernel.org
7198L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7199W: http://linuxtv.org/
7200Q: http://patchwork.linuxtv.org/project/linux-media/list/
7201T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7202S: Supported
7203F: drivers/media/platform/davinci/
7204F: include/media/davinci/
7205
Francois Romieu92aab3c2005-07-30 13:11:18 +02007206SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007207M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007208L: netdev@vger.kernel.org
7209S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007210F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007211
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007213M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007215L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007217F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218
7219SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007220M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007223F: Documentation/fb/sisfb.txt
7224F: drivers/video/sis/
7225F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007226
7227SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007228M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007229W: http://www.winischhofer.at/linuxsisusbvga.shtml
7230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007231F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232
Christoph Lameter415ad262007-07-26 10:40:56 -07007233SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007234M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007235M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007236M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007237L: linux-mm@kvack.org
7238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007239F: include/linux/sl?b*.h
7240F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007241
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007242SLEEPABLE READ-COPY UPDATE (SRCU)
7243M: Lai Jiangshan <laijs@cn.fujitsu.com>
7244M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7245W: http://www.rdrop.com/users/paulmck/RCU/
7246S: Supported
7247T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7248F: include/linux/srcu*
7249F: kernel/srcu*
7250
Casey Schaufler66372842012-05-23 18:34:52 -07007251SMACK SECURITY MODULE
7252M: Casey Schaufler <casey@schaufler-ca.com>
7253L: linux-security-module@vger.kernel.org
7254W: http://schaufler-ca.com
7255T: git git://git.gitorious.org/smack-next/kernel.git
7256S: Maintained
7257F: Documentation/security/Smack.txt
7258F: security/smack/
7259
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007261M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007262S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007263F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007264
Sakari Ailuse8e31622012-11-12 18:14:39 -03007265SMIA AND SMIA++ IMAGE SENSOR DRIVER
7266M: Sakari Ailus <sakari.ailus@iki.fi>
7267L: linux-media@vger.kernel.org
7268S: Maintained
7269F: drivers/media/i2c/smiapp
7270F: include/media/smiapp.h
7271F: drivers/media/i2c/smiapp-pll.c
7272F: drivers/media/i2c/smiapp-pll.h
7273
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007274SMM665 HARDWARE MONITOR DRIVER
7275M: Guenter Roeck <linux@roeck-us.net>
7276L: lm-sensors@lm-sensors.org
7277S: Maintained
7278F: Documentation/hwmon/smm665
7279F: drivers/hwmon/smm665.c
7280
Steve Glendinning9df73052010-08-14 21:08:54 +02007281SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007282M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007283L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007284S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007285F: Documentation/hwmon/emc2103
7286F: drivers/hwmon/emc2103.c
7287
Hans de Goedea98d5062011-03-21 17:59:36 +01007288SMSC SCH5627 HARDWARE MONITOR DRIVER
7289M: Hans de Goede <hdegoede@redhat.com>
7290L: lm-sensors@lm-sensors.org
7291S: Supported
7292F: Documentation/hwmon/sch5627
7293F: drivers/hwmon/sch5627.c
7294
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007295SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007296M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007297L: lm-sensors@lm-sensors.org
7298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007299F: Documentation/hwmon/smsc47b397
7300F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007301
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007302SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007303M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007304L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007306F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007307F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007308
Steve Glendinning2cb37722008-12-11 20:54:30 -08007309SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007310M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007311L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007312S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007313F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007314
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007315SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007316M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007317L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007318S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007319F: drivers/video/smscufx.c
7320
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007321SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007322M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007323L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007324T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007325S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007326F: include/media/soc*
7327F: drivers/media/i2c/soc_camera/
7328F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007329
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007330SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007331M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007333F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007334
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007336M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007339F: drivers/md/
7340F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007341F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007344M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007345L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007347F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348
Michael Buesch61e115a2007-09-18 15:12:50 -04007349SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007350M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007351L: netdev@vger.kernel.org
7352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007353F: drivers/ssb/
7354F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007355
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007357M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007358L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007359W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007361F: Documentation/laptops/sony-laptop.txt
7362F: drivers/char/sonypi.c
7363F: drivers/platform/x86/sony-laptop.c
7364F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365
Alex Dubovbaf85322008-02-09 10:20:54 -08007366SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007367M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007368W: http://tifmxx.berlios.de/
7369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007370F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007371
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Jaroslav Kysela <perex@perex.cz>
7374M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007375L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007376W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007377T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007378T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007380F: Documentation/sound/
7381F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007382F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007383F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384
Mark Brownbd903bd2008-11-19 19:16:05 +00007385SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007386M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007387M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007388T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007389L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007390W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007391S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007392F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007393F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007394
Sam Ravnborg473321f2009-01-04 15:47:49 -08007395SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007396M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007398Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007399T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7400T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007402F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007403F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404
David S. Miller6404fcc2010-03-16 01:00:17 -07007405SPARC SERIAL DRIVERS
7406M: "David S. Miller" <davem@davemloft.net>
7407L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007408T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7409T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007410S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007411F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007412F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007413F: drivers/tty/serial/sunhv.c
7414F: drivers/tty/serial/sunsab.c
7415F: drivers/tty/serial/sunsab.h
7416F: drivers/tty/serial/sunsu.c
7417F: drivers/tty/serial/sunzilog.c
7418F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007419
Christopher Li389325b2012-04-05 14:25:14 -07007420SPARSE CHECKER
7421M: "Christopher Li" <sparse@chrisli.org>
7422L: linux-sparse@vger.kernel.org
7423W: https://sparse.wiki.kernel.org/
7424T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7425T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7426S: Maintained
7427F: include/linux/compiler.h
7428
viresh kumarfc0c1952010-04-01 12:31:21 +01007429SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007430M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307431M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007432L: spear-devel@list.st.com
7433L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007434W: http://www.st.com/spear
7435S: Maintained
7436F: arch/arm/plat-spear/
7437
Viresh Kumar71e09a92012-04-20 22:39:48 +05307438SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007439M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307440M: Shiraz Hashim <shiraz.hashim@st.com>
7441L: spear-devel@list.st.com
7442L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7443W: http://www.st.com/spear
7444S: Maintained
7445F: arch/arm/mach-spear13xx/
7446
viresh kumarfc0c1952010-04-01 12:31:21 +01007447SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007448M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307449M: Shiraz Hashim <shiraz.hashim@st.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-spear3xx/
7455
7456SPEAR6XX MACHINE SUPPORT
7457M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307458M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007459M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007460L: spear-devel@list.st.com
7461L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007462W: http://www.st.com/spear
7463S: Maintained
7464F: arch/arm/mach-spear6xx/
7465
7466SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007467M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007468L: spear-devel@list.st.com
7469L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007470W: http://www.st.com/spear
7471S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307472F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007473
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007474SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007475M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownb02e48f2013-04-12 11:39:57 +01007476M: Mark Brown <broonie@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007477L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007478Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007479T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007481F: Documentation/spi/
7482F: drivers/spi/
7483F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007484F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007485
Jim Lewis2752e4012006-09-29 02:01:19 -07007486SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007487M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7488M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007489L: netdev@vger.kernel.org
7490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007491F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007492F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007493
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007494SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007495M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007496L: linuxppc-dev@lists.ozlabs.org
7497L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007498W: http://www.ibm.com/developerworks/power/cell/
7499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007500F: Documentation/filesystems/spufs.txt
7501F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007502
Phillip Lougherfc555842009-01-05 08:46:29 +00007503SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007504M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007505L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7506W: http://squashfs.org.uk
7507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007508F: Documentation/filesystems/squashfs.txt
7509F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007510
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007512M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007514F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
Linus Torvalds26e9a392008-10-17 09:50:12 -07007516STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007517M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007518L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007519S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007520
Linus Torvalds26e9a392008-10-17 09:50:12 -07007521STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007522M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007523T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007524L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007526F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007527
Joe Perchesc8c8b102011-07-05 09:42:12 -07007528STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7529M: Henk de Groot <pe1dnn@amsat.org>
7530S: Odd Fixes
7531F: drivers/staging/wlags49_h2/
7532F: drivers/staging/wlags49_h25/
7533
Joe Perchesc9555152011-07-05 09:42:01 -07007534STAGING - ASUS OLED
7535M: Jakub Schmidtke <sjakub@gmail.com>
7536S: Odd Fixes
7537F: drivers/staging/asus_oled/
7538
Joe Perchesebd3d012011-07-05 09:42:02 -07007539STAGING - COMEDI
7540M: Ian Abbott <abbotti@mev.co.uk>
7541M: Mori Hess <fmhess@users.sourceforge.net>
7542S: Odd Fixes
7543F: drivers/staging/comedi/
7544
Joe Perches8ca572c2011-07-05 09:42:03 -07007545STAGING - CRYSTAL HD VIDEO DECODER
7546M: Naren Sankar <nsankar@broadcom.com>
7547M: Jarod Wilson <jarod@wilsonet.com>
7548M: Scott Davilla <davilla@4pi.com>
7549M: Manu Abraham <abraham.manu@gmail.com>
7550S: Odd Fixes
7551F: drivers/staging/crystalhd/
7552
Joe Perches0f16ffc2011-07-05 09:42:04 -07007553STAGING - ECHO CANCELLER
7554M: Steve Underwood <steveu@coppice.org>
7555M: David Rowe <david@rowetel.com>
7556S: Odd Fixes
7557F: drivers/staging/echo/
7558
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007559STAGING - ET131X NETWORK DRIVER
7560M: Mark Einon <mark.einon@gmail.com>
7561S: Odd Fixes
7562F: drivers/staging/et131x/
7563
Joe Perchesa0138162011-07-05 15:21:34 -07007564STAGING - FLARION FT1000 DRIVERS
7565M: Marek Belisko <marek.belisko@gmail.com>
7566S: Odd Fixes
7567F: drivers/staging/ft1000/
7568
Joe Perchesec3fab92011-07-05 09:42:05 -07007569STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7570M: David Täht <d@teklibre.com>
7571S: Odd Fixes
7572F: drivers/staging/frontier/
7573
Joe Perches6c1bb422011-07-05 09:42:07 -07007574STAGING - INDUSTRIAL IO
7575M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007576L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007577S: Odd Fixes
7578F: drivers/staging/iio/
7579
Joe Perchesa0138162011-07-05 15:21:34 -07007580STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7581M: Jarod Wilson <jarod@wilsonet.com>
7582W: http://www.lirc.org/
7583S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007584F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007585
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007586STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007587M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007588M: Marc Dietrich <marvin24@gmx.de>
7589L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007590L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007591S: Maintained
7592F: drivers/staging/nvec/
7593
Joe Perchesa0138162011-07-05 15:21:34 -07007594STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7595M: Andres Salomon <dilinger@queued.net>
7596M: Chris Ball <cjb@laptop.org>
7597M: Jon Nettleton <jon.nettleton@gmail.com>
7598W: http://wiki.laptop.org/go/DCON
7599S: Odd Fixes
7600F: drivers/staging/olpc_dcon/
7601
Chris Kelly94cfdd12012-03-14 10:55:42 +00007602STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007603M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007604S: Maintained
7605F: drivers/staging/ozwpan/
7606
Joe Perchesa0138162011-07-05 15:21:34 -07007607STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007608M: Willy Tarreau <willy@meta-x.org>
7609S: Odd Fixes
7610F: drivers/staging/panel/
7611
Joe Perchesa0138162011-07-05 15:21:34 -07007612STAGING - REALTEK RTL8712U DRIVERS
7613M: Larry Finger <Larry.Finger@lwfinger.net>
7614M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7615S: Odd Fixes
7616F: drivers/staging/rtl8712/
7617
Joe Perches9629fa82011-07-05 09:42:09 -07007618STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7619M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7620S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007621F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007622
Joe Perchesa0138162011-07-05 15:21:34 -07007623STAGING - SOFTLOGIC 6x10 MPEG CODEC
7624M: Ben Collins <bcollins@bluecherry.net>
7625S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007626F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007627
7628STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7629M: William Hubbs <w.d.hubbs@gmail.com>
7630M: Chris Brannon <chris@the-brannons.com>
7631M: Kirk Reiser <kirk@braille.uwo.ca>
7632M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7633L: speakup@braille.uwo.ca
7634W: http://www.linux-speakup.org/
7635S: Odd Fixes
7636F: drivers/staging/speakup/
7637
7638STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007639M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007640S: Odd Fixes
7641F: drivers/staging/tidspbridge/
7642
Joe Perchesa0138162011-07-05 15:21:34 -07007643STAGING - USB ENE SM/MS CARD READER DRIVER
7644M: Al Cho <acho@novell.com>
7645S: Odd Fixes
7646F: drivers/staging/keucr/
7647
Joe Perchesb3e871c2011-07-05 09:42:10 -07007648STAGING - VIA VT665X DRIVERS
7649M: Forest Bond <forest@alittletooquiet.net>
7650S: Odd Fixes
7651F: drivers/staging/vt665?/
7652
Joe Perches81a9a522011-07-05 09:42:11 -07007653STAGING - WINBOND IS89C35 WLAN USB DRIVER
7654M: Pavel Machek <pavel@ucw.cz>
7655S: Odd Fixes
7656F: drivers/staging/winbond/
7657
Joe Perches709bcb02011-07-05 09:42:13 -07007658STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007659M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007660S: Odd Fixes
7661F: drivers/staging/xgifb/
7662
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007664M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007665S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007666F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007668SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007669M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007670W: http://sammy.net/sun3/
7671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007672F: arch/m68k/kernel/*sun3*
7673F: arch/m68k/sun3*/
7674F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007675F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007676
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007677SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007678M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007679L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007681Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007682T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007683S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007684F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007685F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007686F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007688SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007689M: Len Brown <len.brown@intel.com>
7690M: Pavel Machek <pavel@ucw.cz>
7691M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007692L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007693S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007694F: Documentation/power/
7695F: arch/x86/kernel/acpi/
7696F: drivers/base/power/
7697F: kernel/power/
7698F: include/linux/suspend.h
7699F: include/linux/freezer.h
7700F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701
7702SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007703M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704L: linux-video@atrey.karlin.mff.cuni.cz
7705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007706F: Documentation/svga.txt
7707F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007709SWIOTLB SUBSYSTEM
7710M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7711L: linux-kernel@vger.kernel.org
7712S: Supported
7713F: lib/swiotlb.c
7714F: arch/*/kernel/pci-swiotlb.c
7715F: include/linux/swiotlb.h
7716
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307717SYNOPSYS ARC ARCHITECTURE
7718M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307719S: Supported
7720F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05307721F: Documentation/devicetree/bindings/arc/
7722F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05307723
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007725M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007727F: Documentation/filesystems/sysv-fs.txt
7728F: fs/sysv/
7729F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007731TARGET SUBSYSTEM
7732M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7733L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007734L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007735L: http://groups.google.com/group/linux-iscsi-target-dev
7736W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007737T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007738S: Supported
7739F: drivers/target/
7740F: include/target/
7741F: Documentation/target/
7742
Alan Cox4e688522008-04-30 00:52:11 -07007743TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007744M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007746F: Documentation/accounting/taskstats*
7747F: include/linux/taskstats*
7748F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007749
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007750TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007751M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007752L: netdev@vger.kernel.org
7753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007754F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007755F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007756F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007757
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007758TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007759M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7760M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007761W: http://tcp-lp-mod.sourceforge.net/
7762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007763F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007764
Antti Palosaari91952bc2012-10-01 12:28:46 -03007765TDA10071 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/dvb-frontends/tda10071*
7774
7775TDA18212 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/tda18212*
7784
7785TDA18218 MEDIA DRIVER
7786M: Antti Palosaari <crope@iki.fi>
7787L: linux-media@vger.kernel.org
7788W: http://linuxtv.org/
7789W: http://palosaari.fi/linux/
7790Q: http://patchwork.linuxtv.org/project/linux-media/list/
7791T: git git://linuxtv.org/anttip/media_tree.git
7792S: Maintained
7793F: drivers/media/tuners/tda18218*
7794
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007795TDA18271 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/tda18271*
7804
Michael Krufkye48307a2012-10-02 00:56:33 -03007805TDA827x 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
Michael Krufky66cf9212012-10-02 00:56:28 -03007815TDA8290 MEDIA DRIVER
7816M: Michael Krufky <mkrufky@linuxtv.org>
7817L: linux-media@vger.kernel.org
7818W: http://linuxtv.org/
7819W: http://github.com/mkrufky
7820Q: http://patchwork.linuxtv.org/project/linux-media/list/
7821T: git git://linuxtv.org/mkrufky/tuners.git
7822S: Maintained
7823F: drivers/media/tuners/tda8290.*
7824
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007825TDA9840 MEDIA DRIVER
7826M: Hans Verkuil <hverkuil@xs4all.nl>
7827L: linux-media@vger.kernel.org
7828T: git git://linuxtv.org/media_tree.git
7829W: http://linuxtv.org
7830S: Maintained
7831F: drivers/media/i2c/tda9840*
7832
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007833TEA5761 TUNER DRIVER
7834M: Mauro Carvalho Chehab <mchehab@redhat.com>
7835L: linux-media@vger.kernel.org
7836W: http://linuxtv.org
7837T: git git://linuxtv.org/media_tree.git
7838S: Odd fixes
7839F: drivers/media/tuners/tea5761.*
7840
7841TEA5767 TUNER DRIVER
7842M: Mauro Carvalho Chehab <mchehab@redhat.com>
7843L: linux-media@vger.kernel.org
7844W: http://linuxtv.org
7845T: git git://linuxtv.org/media_tree.git
7846S: Maintained
7847F: drivers/media/tuners/tea5767.*
7848
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007849TEA6415C MEDIA DRIVER
7850M: Hans Verkuil <hverkuil@xs4all.nl>
7851L: linux-media@vger.kernel.org
7852T: git git://linuxtv.org/media_tree.git
7853W: http://linuxtv.org
7854S: Maintained
7855F: drivers/media/i2c/tea6415c*
7856
7857TEA6420 MEDIA DRIVER
7858M: Hans Verkuil <hverkuil@xs4all.nl>
7859L: linux-media@vger.kernel.org
7860T: git git://linuxtv.org/media_tree.git
7861W: http://linuxtv.org
7862S: Maintained
7863F: drivers/media/i2c/tea6420*
7864
Jiri Pirko3d249d42011-11-11 22:16:48 +00007865TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007866M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007867L: netdev@vger.kernel.org
7868S: Supported
7869F: drivers/net/team/
7870F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007871F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007872
Vivien Didelot7d029122013-01-04 16:18:14 -05007873TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7874M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7875S: Maintained
7876F: arch/x86/platform/ts5500/
7877
Sean Young40ad4a32012-11-19 10:32:53 -03007878TECHNOTREND USB IR RECEIVER
7879M: Sean Young <sean@mess.org>
7880L: linux-media@vger.kernel.org
7881S: Maintained
7882F: drivers/media/rc/ttusbir.c
7883
Erik Gilling84b94142010-06-09 15:35:53 -07007884TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007885M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007886L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007887Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7888T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007889S: Supported
Stephen Warren5d96bf42013-02-27 17:02:54 -08007890K: (?i)[^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07007891
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007892TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007893M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007894L: netdev@vger.kernel.org
7895S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007896F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007897
Alan Cox4e688522008-04-30 00:52:11 -07007898Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007899M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007901F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007902
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007903TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007904M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007905M: Max Filippov <jcmvbkbc@gmail.com>
7906L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007908F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007909
Zhang Ruid3fb6952012-11-15 08:58:27 +08007910THERMAL
7911M: Zhang Rui <rui.zhang@intel.com>
7912L: linux-pm@vger.kernel.org
7913T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7914S: Supported
7915F: drivers/thermal/
7916F: include/linux/thermal.h
7917
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007918THINGM BLINK(1) USB RGB LED DRIVER
7919M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7920S: Maintained
7921F: drivers/hid/hid-thingm.c
7922
Alan Cox4e688522008-04-30 00:52:11 -07007923THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007924M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007925L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007926L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007927W: http://ibm-acpi.sourceforge.net
7928W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007929T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007932
Alex Dubov4020f2d2006-10-04 02:15:37 -07007933TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007934M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007936F: drivers/misc/tifm*
7937F: drivers/mmc/host/tifm_sd.c
7938F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007939
M R Swami Reddy152ad442012-04-02 20:02:31 +05307940TI LM49xxx FAMILY ASoC CODEC DRIVERS
7941M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307942M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307943L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7944S: Maintained
7945F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307946F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307947
Kim, Milo0edd8072012-12-17 16:01:17 -08007948TI LP855x BACKLIGHT DRIVER
7949M: Milo Kim <milo.kim@ti.com>
7950S: Maintained
7951F: Documentation/backlight/lp855x-driver.txt
7952F: drivers/video/backlight/lp855x_bl.c
7953F: include/linux/platform_data/lp855x.h
7954
Kim, Milofaf13f62012-12-10 05:27:03 +00007955TI LP8727 CHARGER DRIVER
7956M: Milo Kim <milo.kim@ti.com>
7957S: Maintained
7958F: drivers/power/lp8727_charger.c
7959F: include/linux/platform_data/lp8727.h
7960
Kim, Milo22f12292012-12-10 05:27:55 +00007961TI LP8788 MFD DRIVER
7962M: Milo Kim <milo.kim@ti.com>
7963S: Maintained
7964F: drivers/iio/adc/lp8788_adc.c
7965F: drivers/leds/leds-lp8788.c
7966F: drivers/mfd/lp8788*.c
7967F: drivers/power/lp8788-charger.c
7968F: drivers/regulator/lp8788-*.c
7969F: include/linux/mfd/lp8788*.h
7970
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007971TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007972M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007973L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7974S: Maintained
7975F: sound/soc/codecs/twl4030*
7976
Luciano Coelho90921012011-11-20 21:40:41 +02007977TI WILINK WIRELESS DRIVERS
7978M: Luciano Coelho <coelho@ti.com>
7979L: linux-wireless@vger.kernel.org
7980W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7981W: http://wireless.kernel.org/en/users/Drivers/wl1251
7982T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7983S: Maintained
7984F: drivers/net/wireless/ti/
7985F: include/linux/wl12xx.h
7986
Per Lidene86eaa32006-01-12 16:45:18 +01007987TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: Jon Maloy <jon.maloy@ericsson.com>
7989M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007990L: netdev@vger.kernel.org (core kernel code)
7991L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007992W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007993S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007994F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007995F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007996
Chris Metcalf867e3592010-05-28 23:09:12 -04007997TILE ARCHITECTURE
7998M: Chris Metcalf <cmetcalf@tilera.com>
7999W: http://www.tilera.com/scm/
8000S: Supported
8001F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008002F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008003F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008004F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008005
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008007M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008008L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009W: http://sourceforge.net/projects/tlan/
8010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008012F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008014TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008015M: Kentaro Takeda <takedakn@nttdata.co.jp>
8016M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008017L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8018L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008019L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8020L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8021W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008022T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008024F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008025
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008026TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008027M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008028L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008029S: Maintained
8030F: drivers/platform/x86/topstar-laptop.c
8031
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05008033L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008034S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008035F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036
8037TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008038M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039L: tlinux-users@tce.toshiba-dme.co.jp
8040W: http://www.buzzard.org.uk/toshiba/
8041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008042F: drivers/char/toshiba.c
8043F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008044F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045
Pierre Ossmand719f902009-03-24 21:06:09 +01008046TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008047M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008048M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008049L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008050S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008051F: drivers/mmc/host/tmio_mmc*
8052F: drivers/mmc/host/sh_mobile_sdhi.c
8053F: include/linux/mmc/tmio.h
8054F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008055
Hugh Dickins98f32602009-05-21 20:33:58 +01008056TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008057M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008058L: linux-mm@kvack.org
8059S: Maintained
8060F: include/linux/shmem_fs.h
8061F: mm/shmem.c
8062
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008063TM6000 VIDEO4LINUX DRIVER
8064M: Mauro Carvalho Chehab <mchehab@redhat.com>
8065L: linux-media@vger.kernel.org
8066W: http://linuxtv.org
8067T: git git://linuxtv.org/media_tree.git
8068S: Odd fixes
8069F: drivers/media/usb/tm6000/
8070
Alan Cox4e688522008-04-30 00:52:11 -07008071TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008072M: Kent Yoder <key@linux.vnet.ibm.com>
8073M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008074W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008075M: Marcel Selhorst <tpmdd@selhorst.net>
8076M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008077W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008078L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008080F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008081
Joe Perchesd6f005a2009-10-26 16:49:40 -07008082TRACING
8083M: Steven Rostedt <rostedt@goodmis.org>
8084M: Frederic Weisbecker <fweisbec@gmail.com>
8085M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008086T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008087S: Maintained
8088F: Documentation/trace/ftrace.txt
8089F: arch/*/*/*/ftrace.h
8090F: arch/*/kernel/ftrace.c
8091F: include/*/ftrace.h
8092F: include/linux/trace*.h
8093F: include/trace/
8094F: kernel/trace/
8095
Linus Torvalds1da177e2005-04-16 15:20:36 -07008096TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008098T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008100K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008101
Alan Cox4e688522008-04-30 00:52:11 -07008102TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008103M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008104M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008105S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008106T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008107F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008108F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008109F: include/linux/serial_core.h
8110F: include/linux/serial.h
8111F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008112F: include/uapi/linux/serial_core.h
8113F: include/uapi/linux/serial.h
8114F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008115
Antti Palosaari91952bc2012-10-01 12:28:46 -03008116TUA9001 MEDIA DRIVER
8117M: Antti Palosaari <crope@iki.fi>
8118L: linux-media@vger.kernel.org
8119W: http://linuxtv.org/
8120W: http://palosaari.fi/linux/
8121Q: http://patchwork.linuxtv.org/project/linux-media/list/
8122T: git git://linuxtv.org/anttip/media_tree.git
8123S: Maintained
8124F: drivers/media/tuners/tua9001*
8125
Grant Grundler740db6d2008-02-17 11:53:49 -07008126TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008127M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008128L: netdev@vger.kernel.org
8129S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008130F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
8132TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008133M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134W: http://vtun.sourceforge.net/tun
8135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008136F: Documentation/networking/tuntap.txt
8137F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008139TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008140M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008142F: drivers/tc/
8143F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008144
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008146M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147L: linux-scsi@vger.kernel.org
8148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008149F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008151UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008152M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008153M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008154L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008155T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008156W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008158F: Documentation/filesystems/ubifs.txt
8159F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008160
Alan Coxcc2020e2008-05-19 14:21:51 +01008161UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008162M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008163W: http://www.uclinux.org/
8164L: uclinux-dev@uclinux.org (subscribers-only)
8165S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008166F: arch/m68k/*/*_no.*
8167F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008168
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008169UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008170M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008171W: http://uclinux-h8.sourceforge.jp/
8172S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008173F: arch/h8300/
8174F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008175F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008176
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008178M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008180F: Documentation/filesystems/udf.txt
8181F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182
Alan Coxcc2020e2008-05-19 14:21:51 +01008183UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008184M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008186F: Documentation/filesystems/ufs.txt
8187F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008188
David Herrmann0a09d3a2012-06-10 15:16:28 +02008189UHID USERSPACE HID IO DRIVER:
8190M: David Herrmann <dh.herrmann@googlemail.com>
8191L: linux-input@vger.kernel.org
8192S: Maintained
8193F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008194F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008195
David Vrabel18332a82008-09-17 16:34:44 +01008196ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008197L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008198S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008199F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008200F: include/linux/uwb.h
8201F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008202
GuanXuetaob31d8272011-01-16 00:35:49 +08008203UNICORE32 ARCHITECTURE:
8204M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8205W: http://mprc.pku.edu.cn/~guanxuetao/linux
8206S: Maintained
8207T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8208F: arch/unicore32/
8209
Tony Finchd8379ab2009-11-27 15:50:30 +00008210UNIFDEF
8211M: Tony Finch <dot@dotat.at>
8212W: http://dotat.at/prog/unifdef
8213S: Maintained
8214F: scripts/unifdef.c
8215
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008217M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218W: http://www.kernel.dk
8219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008220F: Documentation/cdrom/
8221F: drivers/cdrom/cdrom.c
8222F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008223F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308225UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8226M: Vinayak Holikatti <vinholikatti@gmail.com>
8227M: Santosh Y <santoshsy@gmail.com>
8228L: linux-scsi@vger.kernel.org
8229S: Supported
8230F: Documentation/scsi/ufs.txt
8231F: drivers/scsi/ufs/
8232
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008233UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008234M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008235W: http://www.linux-mtd.infradead.org/
8236L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008237T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008238S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008239F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008240F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008241F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008242
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008243UNSORTED BLOCK IMAGES (UBI) Fastmap
8244M: Richard Weinberger <richard@nod.at>
8245L: linux-mtd@lists.infradead.org
8246S: Maintained
8247F: drivers/mtd/ubi/fastmap.c
8248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008250M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008251L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008253F: Documentation/usb/acm.txt
8254F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008256USB AR5523 WIRELESS DRIVER
8257M: Pontus Fuchs <pontus.fuchs@gmail.com>
8258L: linux-wireless@vger.kernel.org
8259S: Maintained
8260F: drivers/net/wireless/ath/ar5523/
8261
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008262USB ATTACHED SCSI
8263M: Matthew Wilcox <willy@linux.intel.com>
8264M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008265M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008266L: linux-usb@vger.kernel.org
8267L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008268S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008269F: drivers/usb/storage/uas.c
8270
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008272M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008273L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008275F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008276F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008278USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008279M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008280L: linux-usb@vger.kernel.org
8281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008282F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008283
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008284USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008285M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008286L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008287W: http://www.linux-usb.org/usbnet
8288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008289F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008290
Alan Coxcc2020e2008-05-19 14:21:51 +01008291USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008292M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008293L: rio500-users@lists.sourceforge.net
8294W: http://rio500.sourceforge.net
8295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008296F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008297
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008299M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008300L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008302F: Documentation/usb/ehci.txt
8303F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304
David Brownell69ae9e32006-11-14 02:03:31 -08008305USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008306M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008307L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008308W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008309T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008311F: drivers/usb/gadget/
8312F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008313
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008314USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008315M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008316L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008317T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008319F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008320F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
matt mooney857aab32011-06-17 15:50:46 -07008322USB/IP DRIVERS
8323M: Matt Mooney <mfm@muteddisk.com>
8324L: linux-usb@vger.kernel.org
8325S: Maintained
8326F: drivers/staging/usbip/
8327
Olav Kongas959eea22005-11-03 17:38:14 +02008328USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008329M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008330L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008332F: drivers/usb/host/isp116x*
8333F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008334
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008336M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008337L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008339F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340
8341USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008342M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008343L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008344L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345S: Maintained
8346W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008347F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348
Clemens Ladischaf399172011-01-10 16:32:54 +01008349USB MIDI DRIVER
8350M: Clemens Ladisch <clemens@ladisch.de>
8351L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8352T: git git://git.alsa-project.org/alsa-kernel.git
8353S: Maintained
8354F: sound/usb/midi.*
8355
Linus Torvalds1da177e2005-04-16 15:20:36 -07008356USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008357M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008358L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008360F: Documentation/usb/ohci.txt
8361F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362
Matthias Urlichsba460e42005-07-14 00:33:47 -07008363USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008364M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008365L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008367F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008368
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008370M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008371L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008372L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008373W: http://pegasus2.sourceforge.net/
8374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008375F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008376
Felipe Balbid3ad5582012-05-21 16:24:49 +03008377USB PHY LAYER
8378M: Felipe Balbi <balbi@ti.com>
8379L: linux-usb@vger.kernel.org
8380T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8381S: Maintained
8382F: drivers/usb/phy/
8383F: drivers/usb/otg/
8384
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008385USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008386M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008387L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008388S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008389F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390
8391USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008392M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008393L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008394L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395W: http://pegasus2.sourceforge.net/
8396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008397F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398
Alan Cox4e688522008-04-30 00:52:11 -07008399USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008400M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008401L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008403F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008404
8405USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008406M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008407L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008408S: Maintained
8409W: http://geocities.com/i0xox0i
8410W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008411F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008412
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008414M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008417F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418
8419USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008420M: Peter Berger <pberger@brimson.com>
8421M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008422L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008424F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425
8426USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008427M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008428L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008430F: Documentation/usb/usb-serial.txt
8431F: drivers/usb/serial/generic.c
8432F: drivers/usb/serial/usb-serial.c
8433F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434
Linus Torvalds1da177e2005-04-16 15:20:36 -07008435USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008436M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008437L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008439F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440
8441USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008442M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008443L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008445F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446
8447USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008448M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008449L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450W: http://www.connecttech.com
8451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008452F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008454USB SMSC75XX ETHERNET DRIVER
8455M: Steve Glendinning <steve.glendinning@shawell.net>
8456L: netdev@vger.kernel.org
8457S: Maintained
8458F: drivers/net/usb/smsc75xx.*
8459
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008460USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008461M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008462L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008464F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008465
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008466USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008467M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008468L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008469L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008470T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008471W: http://www.linux-projects.org
8472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008473F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008474F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475
8476USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008477M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008478L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008480T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008482F: Documentation/usb/
8483F: drivers/net/usb/
8484F: drivers/usb/
8485F: include/linux/usb.h
8486F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008487
8488USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008489M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008490L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008492F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493
David Brownell69ae9e32006-11-14 02:03:31 -08008494USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008495M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008496L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008497W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008499F: drivers/net/usb/usbnet.c
8500F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008502USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008503M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008504L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008505L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008506T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008507W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008508S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008509F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008510F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008512USB VISION DRIVER
8513M: Hans Verkuil <hverkuil@xs4all.nl>
8514L: linux-media@vger.kernel.org
8515T: git git://linuxtv.org/media_tree.git
8516W: http://linuxtv.org
8517S: Odd Fixes
8518F: drivers/media/usb/usbvision/
8519
Laurent Pinchart8282da42012-10-04 02:32:42 +02008520USB WEBCAM GADGET
8521M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8522L: linux-usb@vger.kernel.org
8523S: Maintained
8524F: drivers/usb/gadget/*uvc*.c
8525F: drivers/usb/gadget/webcam.c
8526
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008527USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008528M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008529L: linux-wireless@vger.kernel.org
8530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008531F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008532
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008533USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008534M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008535L: linux-usb@vger.kernel.org
8536S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008537F: drivers/usb/host/xhci*
8538F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008539
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008541L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008542W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008543S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008544F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008546USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008547M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008548L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008549L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008550T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008551W: http://royale.zerezo.com/zr364xx/
8552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008553F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008554F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008555
Randy Dunlape7839f22008-10-12 16:11:45 -07008556USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008557M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008558M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559L: user-mode-linux-devel@lists.sourceforge.net
8560L: user-mode-linux-user@lists.sourceforge.net
8561W: http://user-mode-linux.sourceforge.net
8562S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008563F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008564F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008565F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008566F: fs/hostfs/
8567F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008568
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008569USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008570M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008571M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008573F: Documentation/DocBook/uio-howto.tmpl
8574F: drivers/uio/
8575F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008576
Karel Zak256cccb2012-06-01 10:13:09 +02008577UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008578M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008579L: util-linux@vger.kernel.org
8580W: http://en.wikipedia.org/wiki/Util-linux
8581T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008582S: Maintained
8583
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008584UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008585M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008586L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008587W: http://dev.gentoo.org/~spock/projects/uvesafb/
8588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008589F: Documentation/fb/uvesafb.txt
8590F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008591
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008592VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008593M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008595F: Documentation/filesystems/vfat.txt
8596F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597
Alex Williamsoncba33452012-07-31 08:16:22 -06008598VFIO DRIVER
8599M: Alex Williamson <alex.williamson@redhat.com>
8600L: kvm@vger.kernel.org
8601S: Maintained
8602F: Documentation/vfio.txt
8603F: drivers/vfio/
8604F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008605F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008606
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008607VIDEOBUF2 FRAMEWORK
8608M: Pawel Osciak <pawel@osciak.com>
8609M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008610M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008611L: linux-media@vger.kernel.org
8612S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008613F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008614F: include/media/videobuf2-*
8615
Amit Shah9a824462010-03-23 18:23:09 +05308616VIRTIO CONSOLE DRIVER
8617M: Amit Shah <amit.shah@redhat.com>
8618L: virtualization@lists.linux-foundation.org
8619S: Maintained
8620F: drivers/char/virtio_console.c
8621F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008622F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308623
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308624VIRTIO CORE, NET AND BLOCK DRIVERS
8625M: Rusty Russell <rusty@rustcorp.com.au>
8626M: "Michael S. Tsirkin" <mst@redhat.com>
8627L: virtualization@lists.linux-foundation.org
8628S: Maintained
8629F: drivers/virtio/
8630F: drivers/net/virtio_net.c
8631F: drivers/block/virtio_blk.c
8632F: include/linux/virtio_*.h
8633
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008634VIRTIO HOST (VHOST)
8635M: "Michael S. Tsirkin" <mst@redhat.com>
8636L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008637L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008638L: netdev@vger.kernel.org
8639S: Maintained
8640F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008641F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008642
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008644M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008646F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008647
Harald Weltef0bf7f62009-06-17 20:22:39 +02008648VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008649M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008650M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008651S: Maintained
8652F: drivers/mmc/host/via-sdmmc.c
8653
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008654VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008655M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008656L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008657S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008658F: include/linux/via-core.h
8659F: include/linux/via-gpio.h
8660F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008661F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008662
Francois Romieu01f20732007-01-26 00:57:17 -08008663VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008664M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008665L: netdev@vger.kernel.org
8666S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008667F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008669VIVI VIRTUAL VIDEO DRIVER
8670M: Hans Verkuil <hverkuil@xs4all.nl>
8671L: linux-media@vger.kernel.org
8672T: git git://linuxtv.org/media_tree.git
8673W: http://linuxtv.org
8674S: Maintained
8675F: drivers/media/platform/vivi*
8676
Patrick McHardybe7f8272007-10-23 20:26:36 -07008677VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008678M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008679L: netdev@vger.kernel.org
8680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008681F: drivers/net/macvlan.c
8682F: include/linux/if_*vlan.h
8683F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008684
Florian Fainelli55e331c2009-06-16 15:33:53 -07008685VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008686M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008687L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008688S: Maintained
8689F: drivers/vlynq/vlynq.c
8690F: include/linux/vlynq.h
8691
Martyn Welch390beae2012-05-03 17:52:36 +01008692VME SUBSYSTEM
8693M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008694M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008695M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8696L: devel@driverdev.osuosl.org
8697S: Maintained
8698T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8699F: Documentation/vme_api.txt
8700F: drivers/staging/vme/
8701F: drivers/vme/
8702F: include/linux/vme*
8703
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008704VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008705M: Shreyas Bhatewara <sbhatewara@vmware.com>
8706M: "VMware, Inc." <pv-drivers@vmware.com>
8707L: netdev@vger.kernel.org
8708S: Maintained
8709F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008710
Alok Kataria851b1642009-10-13 14:51:05 -07008711VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008712M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008713M: VMware PV-Drivers <pv-drivers@vmware.com>
8714L: linux-scsi@vger.kernel.org
8715S: Maintained
8716F: drivers/scsi/vmw_pvscsi.c
8717F: drivers/scsi/vmw_pvscsi.h
8718
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008719VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008720M: Liam Girdwood <lrg@ti.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01008721M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008722W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008723W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008724T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008726F: drivers/regulator/
8727F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008728
Juerg Haefligerab413192006-09-24 20:54:04 +02008729VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008730M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008731L: lm-sensors@lm-sensors.org
8732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008733F: Documentation/hwmon/vt1211
8734F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008735
Roger Lucas1de9e372005-11-26 20:20:05 +01008736VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008737M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008738L: lm-sensors@lm-sensors.org
8739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008740F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008741
Tony Olech88095e72011-05-14 16:48:13 -04008742VUB300 USB to SDIO/SD/MMC bridge chip
8743M: Tony Olech <tony.olech@elandigitalsystems.com>
8744L: linux-mmc@vger.kernel.org
8745L: linux-usb@vger.kernel.org
8746S: Supported
8747F: drivers/mmc/host/vub300.c
8748
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008750M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008752F: Documentation/w1/
8753F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754
Charles Spirakis13927072006-07-05 18:05:15 +02008755W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008756M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008757L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008759F: Documentation/hwmon/w83791d
8760F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008761
Rudolf Marek61db0112006-12-12 18:18:30 +01008762W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008763M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008764L: lm-sensors@lm-sensors.org
8765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008766F: Documentation/hwmon/w83793
8767F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008768
Jean Delvaree3760b42010-10-28 20:31:49 +02008769W83795 HARDWARE MONITORING DRIVER
8770M: Jean Delvare <khali@linux-fr.org>
8771L: lm-sensors@lm-sensors.org
8772S: Maintained
8773F: drivers/hwmon/w83795.c
8774
Linus Torvalds1da177e2005-04-16 15:20:36 -07008775W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008776M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008778F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008779
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008780WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008781M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008782L: linux-watchdog@vger.kernel.org
8783W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008784T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008786F: Documentation/watchdog/
8787F: drivers/watchdog/
8788F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008789F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008790
Linus Torvalds1da177e2005-04-16 15:20:36 -07008791WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008792M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793L: linux-scsi@vger.kernel.org
8794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008795F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796
David Herrmannb22e00f2011-09-06 13:50:40 +02008797WIIMOTE HID DRIVER
8798M: David Herrmann <dh.herrmann@googlemail.com>
8799L: linux-input@vger.kernel.org
8800S: Maintained
8801F: drivers/hid/hid-wiimote*
8802
David Härdemane258b802009-09-21 17:04:53 -07008803WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008804M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008805S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008806F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008807
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008808WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008809M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008810M: linux-wimax@intel.com
8811L: wimax@linuxwimax.org
8812S: Supported
8813W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008814F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008815F: include/linux/wimax/debug.h
8816F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008817F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008818F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008819
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008820WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008821M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008823F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008824
Linus Torvalds1da177e2005-04-16 15:20:36 -07008825WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008826M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008827L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008828W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008830F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008831
Mark Brownfebf1df2008-04-02 00:51:09 -04008832WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008833M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8834M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008835L: linux-input@vger.kernel.org
8836T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8837W: http://opensource.wolfsonmicro.com/node/7
8838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008839F: drivers/input/touchscreen/*wm97*
8840F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008841
Mark Brown055bcbc2010-08-13 14:18:12 +01008842WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008843M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008844L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008845T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008846T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008847W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008848S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008849F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008850F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008851F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008852F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008853F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008854F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008855F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008856F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008857F: drivers/input/misc/wm831x-on.c
8858F: drivers/input/touchscreen/wm831x-ts.c
8859F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008860F: drivers/mfd/arizona*
8861F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008862F: drivers/power/wm83*.c
8863F: drivers/rtc/rtc-wm83*.c
8864F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008865F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008866F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008867F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008868F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008869F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008870F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008871F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008872F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008873F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008874F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008875
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008876WORKQUEUE
8877M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008878T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8879S: Maintained
8880F: include/linux/workqueue.h
8881F: kernel/workqueue.c
8882F: Documentation/workqueue.txt
8883
Linus Torvalds1da177e2005-04-16 15:20:36 -07008884X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008885M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008887S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008888F: Documentation/networking/x25*
8889F: include/net/x25*
8890F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008891
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008892X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008893M: Thomas Gleixner <tglx@linutronix.de>
8894M: Ingo Molnar <mingo@redhat.com>
8895M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008896M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008897T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008899F: Documentation/x86/
8900F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008901
Matthew Garrettd09448532010-02-11 10:40:13 -05008902X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008903M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05008904L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008905T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008906S: Maintained
8907F: drivers/platform/x86
8908
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008909X86 MCE INFRASTRUCTURE
8910M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008911M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008912L: linux-edac@vger.kernel.org
8913S: Maintained
8914F: arch/x86/kernel/cpu/mcheck/*
8915
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008916XC2028/3028 TUNER DRIVER
8917M: Mauro Carvalho Chehab <mchehab@redhat.com>
8918L: linux-media@vger.kernel.org
8919W: http://linuxtv.org
8920T: git git://linuxtv.org/media_tree.git
8921S: Maintained
8922F: drivers/media/tuners/tuner-xc2028.*
8923
Ian Campbellc4468082011-04-27 15:26:46 -07008924XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008925M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008926M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008927L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8928L: virtualization@lists.linux-foundation.org
8929S: Supported
8930F: arch/x86/xen/
8931F: drivers/*/xen-*front.c
8932F: drivers/xen/
8933F: arch/x86/include/asm/xen/
8934F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008935F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008936
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008937XEN HYPERVISOR ARM
8938M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8939L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8940S: Supported
8941F: arch/arm/xen/
8942F: arch/arm/include/asm/xen/
8943
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008944XEN NETWORK BACKEND DRIVER
8945M: Ian Campbell <ian.campbell@citrix.com>
8946L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8947L: netdev@vger.kernel.org
8948S: Supported
8949F: drivers/net/xen-netback/*
8950
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008951XEN PCI SUBSYSTEM
8952M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008953L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008954S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008955F: arch/x86/pci/*xen*
8956F: drivers/pci/*xen*
8957
8958XEN SWIOTLB SUBSYSTEM
8959M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008960L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008961S: Supported
8962F: arch/x86/xen/*swiotlb*
8963F: drivers/xen/*swiotlb*
8964
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965XFS FILESYSTEM
8966P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008967M: Ben Myers <bpm@sgi.com>
8968M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008969M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008970L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008971W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008972T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008974F: Documentation/filesystems/xfs.txt
8975F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008977XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008978M: Anirudha Sarangi <anirudh@xilinx.com>
8979M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008980S: Maintained
8981F: drivers/net/ethernet/xilinx/xilinx_axienet*
8982
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008983XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008984M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008985W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008987F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008988
Peter Korsgaard238b8722006-12-06 20:35:17 -08008989XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008990M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008991L: linux-serial@vger.kernel.org
8992S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008993F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008994
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008996M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008997L: linux-hams@vger.kernel.org
8998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008999F: drivers/net/hamradio/yam*
9000F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009001
Henkaf64a5e2005-10-12 15:02:56 +02009002YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009003M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009004L: usbb2k-api-dev@nongnu.org
9005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009006F: Documentation/input/yealink.txt
9007F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009009Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009010M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011W: http://yaina.de/jreuter/
9012W: http://www.qsl.net/dl1bke/
9013L: linux-hams@vger.kernel.org
9014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009015F: Documentation/networking/z8530drv.txt
9016F: drivers/net/hamradio/*scc.c
9017F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009018
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009019ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009020M: Daniel Drake <dsd@gentoo.org>
9021M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009022W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009023L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009024L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009026F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009027
Linus Torvalds1da177e2005-04-16 15:20:36 -07009028ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009029L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009030L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009032T: Mercurial http://linuxtv.org/hg/v4l-dvb
9033S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009034F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009035
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009036ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009037M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009038S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009039F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009040
Linus Torvalds1da177e2005-04-16 15:20:36 -07009041THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009042M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009043L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009044Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009045T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009046S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009047F: *
9048F: */