blob: 8197fbd70a3ef465fae3f180015cbc5ff11edf00 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
Stephen Warrenbbbe96e2013-04-29 16:17:23 -070093 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070096 X: Files and directories that are NOT maintained, same rules as F:
97 Files exclusions are tested before file matches.
98 Can be useful for excluding a specific subdirectory, for instance:
99 F: net/
100 X: net/ipv6/
101 matches all files in and below net excluding net/ipv6/
102 K: Keyword perl extended regex pattern to match content in a
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700103 patch or file. For instance:
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700104 K: of_get_profile
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700105 matches patches or files that contain "of_get_profile"
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700106 K: \b(printk|pr_(info|err))\b
Stephen Warrenbbbe96e2013-04-29 16:17:23 -0700107 matches patches or files that contain one or more of the words
108 printk, pr_info or pr_err
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700109 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111Note: For the hard of thinking, this list is meant to remain in alphabetical
112order. If you could add yourselves to it in alphabetical order that would be
113so much easier [Ed]
114
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700115Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700117 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700118
Steffen Klasserta6d89912007-08-10 14:05:27 -07001193C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700121L: netdev@vger.kernel.org
122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700123F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700124F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700127M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700128L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700130F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
adam radfordc4de0ce2010-03-08 12:40:36 -08001323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
133M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800135W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800137F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
13953C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700146M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-hams@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700152M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700153M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700156F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700162S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800164F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000169S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700170F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001729P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Eric Van Hensbergen <ericvh@gmail.com>
174M: Ron Minnich <rminnich@sandia.gov>
175M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100176L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500177W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800178Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700181F: Documentation/filesystems/9p.txt
182F: fs/9p/
Rob Landley2315cb12013-05-28 13:47:58 -0500183F: net/9p/
184F: include/net/9p/
185F: include/uapi/linux/virtio_9p.h
186F: include/trace/events/9p.h
187
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800188
Antti Palosaari91952bc2012-10-01 12:28:46 -0300189A8293 MEDIA DRIVER
190M: Antti Palosaari <crope@iki.fi>
191L: linux-media@vger.kernel.org
192W: http://linuxtv.org/
193W: http://palosaari.fi/linux/
194Q: http://patchwork.linuxtv.org/project/linux-media/list/
195T: git git://linuxtv.org/anttip/media_tree.git
196S: Maintained
197F: drivers/media/dvb-frontends/a8293*
198
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700200M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700201L: linux-scsi@vger.kernel.org
202W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700204F: Documentation/scsi/aacraid.txt
205F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100208M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200209L: lm-sensors@lm-sensors.org
210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700211F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200212
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700214M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700220M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221L: linux-acenic@sunsite.dk
222S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700223F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Peter Feuerere86435e2009-06-21 18:53:03 +0200225ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700226M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700228W: http://piie.net/?section=acerhdf
229S: Maintained
230F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200231
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800233M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500234L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700236F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700239M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200240M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500241L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400242W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800243Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400244T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700246F: drivers/acpi/
247F: drivers/pnp/pnpacpi/
248F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700249F: include/acpi/
Lv Zheng994b942f2013-06-20 08:02:20 +0800250F: Documentation/acpi
Lv Zheng89ca78a2013-06-20 08:02:44 +0800251F: Documentation/ABI/testing/sysfs-bus-acpi
Bjorn Helgaas15fd8302013-06-26 13:38:37 -0600252F: drivers/pci/*acpi*
253F: drivers/pci/*/*acpi*
254F: drivers/pci/*/*/*acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI FAN 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/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Len Brown8b59a452007-01-08 19:03:28 -0500263ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700269
Len Brown359acec2007-02-10 01:59:24 -0500270ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700271M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500272L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300273W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500276
Carlos Corbachobff431e2008-02-05 02:17:04 +0000277ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500278L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100279S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700280F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000281
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100282AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700283M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200284W: http://wiki.parisc-linux.org/AD1889
285L: linux-parisc@vger.kernel.org
286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700287F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100288
Michael Hennerich527a1a82010-10-28 11:31:28 +0000289AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
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/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/misc/ad525x_dpot.c
295
296AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
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/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/regulator/ad5398.c
302
303AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
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/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/misc/ad714x.c
309
310AD7877 TOUCHSCREEN DRIVER
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/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7877.c
316
317AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
318M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100319L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700320W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000321S: Supported
322F: drivers/input/touchscreen/ad7879.c
323
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700324ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
325M: Jiri Kosina <jkosina@suse.cz>
326S: Maintained
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200330L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: Documentation/hwmon/adm1025
333F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Corentin Labbecae2caa2007-02-14 21:15:04 +0100335ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700336M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100337L: lm-sensors@lm-sensors.org
338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100340
Michael Wucc0b88c2007-08-31 01:15:25 -0400341ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400342L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200343W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400344S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700345F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400346
Sakari Ailuse8e31622012-11-12 18:14:39 -0300347ADP1653 FLASH CONTROLLER DRIVER
348M: Sakari Ailus <sakari.ailus@iki.fi>
349L: linux-media@vger.kernel.org
350S: Maintained
351F: drivers/media/i2c/adp1653.c
352F: include/media/adp1653.h
353
Michael Hennerich527a1a82010-10-28 11:31:28 +0000354ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
355M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100356L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700357W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358S: Supported
359F: drivers/mfd/adp5520.c
360F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700361F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800362F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363F: drivers/input/keyboard/adp5520-keys.c
364
365ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
366M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100367L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700368W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000369S: Supported
370F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800371F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000372
373ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
374M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100375L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700376W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000377S: Supported
378F: drivers/video/backlight/adp8860_bl.c
379
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100380ADS1015 HARDWARE MONITOR DRIVER
381M: Dirk Eibach <eibach@gdsys.de>
382L: lm-sensors@lm-sensors.org
383S: Maintained
384F: Documentation/hwmon/ads1015
385F: drivers/hwmon/ads1015.c
386F: include/linux/i2c/ads1015.h
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700389M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Jean Delvareb058b852009-12-09 20:36:08 +0100393ADT7475 HARDWARE MONITOR DRIVER
394M: Jean Delvare <khali@linux-fr.org>
395L: lm-sensors@lm-sensors.org
396S: Maintained
397F: Documentation/hwmon/adt7475
398F: drivers/hwmon/adt7475.c
399
Michael Hennerich527a1a82010-10-28 11:31:28 +0000400ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
401M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100402L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700403W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000404S: Supported
405F: drivers/input/misc/adxl34x.c
406
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400407ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400409L: linux-scsi@vger.kernel.org
410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700411F: Documentation/scsi/advansys.txt
412F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700417F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Antti Palosaari91952bc2012-10-01 12:28:46 -0300419AF9013 MEDIA DRIVER
420M: Antti Palosaari <crope@iki.fi>
421L: linux-media@vger.kernel.org
422W: http://linuxtv.org/
423W: http://palosaari.fi/linux/
424Q: http://patchwork.linuxtv.org/project/linux-media/list/
425T: git git://linuxtv.org/anttip/media_tree.git
426S: Maintained
427F: drivers/media/dvb-frontends/af9013*
428
429AF9033 MEDIA DRIVER
430M: Antti Palosaari <crope@iki.fi>
431L: linux-media@vger.kernel.org
432W: http://linuxtv.org/
433W: http://palosaari.fi/linux/
434Q: http://patchwork.linuxtv.org/project/linux-media/list/
435T: git git://linuxtv.org/anttip/media_tree.git
436S: Maintained
437F: drivers/media/dvb-frontends/af9033*
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200440L: linux-fsdevel@vger.kernel.org
441S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700442F: Documentation/filesystems/affs.txt
443F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700447L: linux-afs@lists.infradead.org
448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700449F: fs/afs/
450F: include/net/af_rxrpc.h
451F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700455T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/char/agp/
458F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800459F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aha152x*
466F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Hannes Reinecke64624d42007-10-19 10:32:29 +0200468AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200470L: linux-scsi@vger.kernel.org
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/scsi/aic7xxx/
473F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200474
Hans Verkuil450500a2012-11-23 07:11:33 -0300475AIMSLAB FM RADIO RECEIVER DRIVER
476M: Hans Verkuil <hverkuil@xs4all.nl>
477L: linux-media@vger.kernel.org
478T: git git://linuxtv.org/media_tree.git
479W: http://linuxtv.org
480S: Maintained
481F: drivers/media/radio/radio-aimslab*
482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700483AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700485L: linux-aio@kvack.org
486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700487F: fs/aio.c
488F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700492L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493W: http://www.linux-usb.org/SpeedTouch/
494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700495F: drivers/usb/atm/speedtch.c
496F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Pierre Ossman272f1332007-05-14 21:25:26 +0200498ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700501F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200502
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000503ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100505L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700507F: Documentation/i2c/busses/i2c-ali1563
508F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700511M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700512M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500513M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700514S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700515L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700516F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Tobias Klauseradf92512011-02-09 10:58:29 +0100518ALTERA UART/JTAG UART SERIAL DRIVERS
519M: Tobias Klauser <tklauser@distanz.ch>
520L: linux-serial@vger.kernel.org
521L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
522S: Maintained
523F: drivers/tty/serial/altera_uart.c
524F: drivers/tty/serial/altera_jtaguart.c
525F: include/linux/altera_uart.h
526F: include/linux/altera_jtaguart.h
527
Andreas Herrmann512d1022011-05-25 20:43:31 +0200528AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100529M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200530L: lm-sensors@lm-sensors.org
531S: Maintained
532F: Documentation/hwmon/fam15h_power
533F: drivers/hwmon/fam15h_power.c
534
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700535AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700537L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700540
Jordan Crousef90b8112006-01-06 00:12:14 -0800541AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800542P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700543L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800544W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700546F: drivers/char/hw_random/geode-rng.c
547F: drivers/crypto/geode*
548F: drivers/video/geode/
549F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800550
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200551AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200552M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200553L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100554T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200555S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800556F: drivers/iommu/amd_iommu*.[ch]
557F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200558
Peter Orubae7f5b302008-07-28 18:44:11 +0200559AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100560M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700561L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200564
Stelian Pop284f42b2006-12-12 18:18:31 +0100565AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700566M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100567S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200568F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100569
Tom Tuckerf94b5332006-09-22 15:22:48 -0700570AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700571M: Tom Tucker <tom@opengridcomputing.com>
572M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700573L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700575F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700576
Hans Verkuil531fca12012-11-23 06:53:24 -0300577ANALOG DEVICES INC AD9389B DRIVER
578M: Hans Verkuil <hans.verkuil@cisco.com>
579L: linux-media@vger.kernel.org
580S: Maintained
581F: drivers/media/i2c/ad9389b*
582
583ANALOG DEVICES INC ADV7604 DRIVER
584M: Hans Verkuil <hans.verkuil@cisco.com>
585L: linux-media@vger.kernel.org
586S: Maintained
587F: drivers/media/i2c/adv7604*
588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000589ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200590M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100591L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000592L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700593W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000594S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100595F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200596F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000597F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000598F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100599F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000600
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400601ANALOG DEVICES INC ASOC DRIVERS
602L: uclinux-dist-devel@blackfin.uclinux.org
603L: alsa-devel@alsa-project.org (moderated for non-subscribers)
604W: http://blackfin.uclinux.org/
605S: Supported
606F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400607
Johannes Berg42269062006-07-25 16:15:50 +0200608AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000610L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700611L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700613F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200616M: Jiri Kosina <jkosina@suse.cz>
617S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700618F: arch/x86/kernel/apm_32.c
619F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800620F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200621F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700623APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700625L: linux-input@vger.kernel.org
626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700627F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700628
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700629APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200630M: Henrik Rydberg <rydberg@euromail.se>
631L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700633F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700636M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700638F: drivers/net/appletalk/
639F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Viresh Kumara4801672011-02-22 15:46:07 +0530641ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700642M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530643L: linux-ide@vger.kernel.org
644S: Maintained
645F: include/linux/pata_arasan_cf_data.h
646F: drivers/ata/pata_arasan_cf.c
647
Jaya Kumar1154ea72005-06-21 17:17:04 -0700648ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700649M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700651F: drivers/video/arcfb.c
652F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700655M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700657F: arch/arm/lib/floppydma.S
658F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Will Deacon6f965212011-07-01 14:38:53 +0100660ARM PMU PROFILING AND DEBUGGING
661M: Will Deacon <will.deacon@arm.com>
662S: Maintained
663F: arch/arm/kernel/perf_event*
664F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100665F: arch/arm/include/asm/pmu.h
666F: arch/arm/kernel/hw_breakpoint.c
667F: arch/arm/include/asm/hw_breakpoint.h
668
Russell Kingd4275352009-04-16 14:05:27 +0100669ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100672W: http://www.arm.linux.org.uk/
673S: Maintained
674F: arch/arm/
675
Stephen Boydd323c2432012-10-24 11:00:29 -0700676ARM SUB-ARCHITECTURES
677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800678S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700679F: arch/arm/mach-*/
680F: arch/arm/plat-*/
681T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
682
Russell Kingcefbf4e2009-11-22 17:40:28 +0000683ARM PRIMECELL AACI PL041 DRIVER
684M: Russell King <linux@arm.linux.org.uk>
685S: Maintained
686F: sound/arm/aaci.*
687
688ARM PRIMECELL CLCD PL110 DRIVER
689M: Russell King <linux@arm.linux.org.uk>
690S: Maintained
691F: drivers/video/amba-clcd.*
692
693ARM PRIMECELL KMI PL050 DRIVER
694M: Russell King <linux@arm.linux.org.uk>
695S: Maintained
696F: drivers/input/serio/ambakmi.*
697F: include/linux/amba/kmi.h
698
Russell King2761f5c2007-05-24 06:56:08 +0200699ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000700M: Russell King <linux@arm.linux.org.uk>
701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700702F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000703F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200704
Russell King1b4304e2013-02-11 15:26:27 +0000705ARM PRIMECELL UART PL010 AND PL011 DRIVERS
706M: Russell King <linux@arm.linux.org.uk>
707S: Maintained
708F: drivers/tty/serial/amba-pl01*.c
709F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710
Russell Kingcefbf4e2009-11-22 17:40:28 +0000711ARM PRIMECELL BUS SUPPORT
712M: Russell King <linux@arm.linux.org.uk>
713S: Maintained
714F: drivers/amba/
715F: include/linux/amba/bus.h
716
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700718M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
721
Sergey Lapin9c784f92008-08-03 02:29:48 +0100722ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700723M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100725S: Maintained
726
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700728M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700729L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800730S: Maintained
731
Maxime Ripard1b106692012-11-15 21:51:26 +0100732ARM/Allwinner A1X SoC support
733M: Maxime Ripard <maxime.ripard@free-electrons.com>
734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
735S: Maintained
736F: arch/arm/mach-sunxi/
737
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800738ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700739M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800740M: Nicolas Ferre <nicolas.ferre@atmel.com>
741M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200743W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800744W: http://www.linux4sam.org
745S: Supported
746F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100747
Rob Herring986cf2e2011-06-22 11:28:53 -0500748ARM/CALXEDA HIGHBANK ARCHITECTURE
749M: Rob Herring <rob.herring@calxeda.com>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Maintained
752F: arch/arm/mach-highbank/
753
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300754ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -0700755M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300756S: Maintained
757F: arch/arm/mach-cns3xxx/
758T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
759
Alexander Shiyan386ab512012-11-17 17:57:24 +0400760ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
761M: Alexander Shiyan <shc_work@mail.ru>
762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
763S: Odd Fixes
764F: arch/arm/mach-clps711x/
765
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800766ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100767M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000768M: Ryan Mallon <rmallon@gmail.com>
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
Hartley Sweetend19d3662009-07-10 23:02:59 +0100771F: arch/arm/mach-ep93xx/
772F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800773
774ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700775M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800777S: Maintained
778
Russell Kingd4275352009-04-16 14:05:27 +0100779ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700782S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100783F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700784F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100785
Mike Rapoportd48134e2008-08-20 09:03:26 +0100786ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100789S: Maintained
790
Hubert Feurstein94150092009-10-07 08:36:07 +0100791ARM/CONTEC MICRO9 MACHINE SUPPORT
792M: Hubert Feurstein <hubert.feurstein@contec.at>
793S: Maintained
794F: arch/arm/mach-ep93xx/micro9.c
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798S: Maintained
799
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200800ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100803T: git git://git.berlios.de/gemini-board
804S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300805F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200806
Barry Songa990cbd2011-07-12 21:44:10 +0800807ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
808M: Barry Song <baohua.song@csr.com>
809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Barry Song85529d12013-06-17 09:44:26 +0800810T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
Barry Songa990cbd2011-07-12 21:44:10 +0800811S: Maintained
812F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800813F: drivers/dma/sirf-dma.c
814F: drivers/i2c/busses/i2c-sirf.c
Barry Songb3b665b2013-03-21 16:27:19 +0800815F: drivers/mmc/host/sdhci-sirf.c
Barry Song47ac3e42012-04-30 11:23:23 +0800816F: drivers/pinctrl/pinctrl-sirf.c
817F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800818
Russell Kingd4275352009-04-16 14:05:27 +0100819ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700820M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700821L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100822W: http://www.arm.linux.org.uk/
823S: Maintained
824F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700825F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100826
Russell Kinga9da4f72008-07-12 21:42:04 +0100827ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Daniel Ribeiro <drwyrm@gmail.com>
829M: Stefan Schmidt <stefan@openezx.org>
830M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200831L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100832W: http://www.openezx.org/
833S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200834T: topgit git://git.openezx.org/openezx.git
835F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100836
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200837ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100838M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100840S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700841T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300842F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200843
Russell Kingd4275352009-04-16 14:05:27 +0100844ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700845M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100847W: http://www.arm.linux.org.uk/
848S: Maintained
849F: arch/arm/include/asm/hardware/dec21285.h
850F: arch/arm/mach-footbridge/
851
Sascha Hauer86183a52008-07-24 23:50:35 +0200852ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700853M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200855S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700856T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100857F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700858F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200859
Shawn Guo8bcb9762011-10-07 22:24:18 +0800860ARM/FREESCALE IMX6
861M: Shawn Guo <shawn.guo@linaro.org>
862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
863S: Maintained
864T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
865F: arch/arm/mach-imx/*imx6*
866
Shawn Guoa9866a092011-10-21 11:53:34 +0800867ARM/FREESCALE MXS ARM ARCHITECTURE
868M: Shawn Guo <shawn.guo@linaro.org>
869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
870S: Maintained
871T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
872F: arch/arm/mach-mxs/
873
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800874ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700875M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877S: Maintained
878
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100879ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100882S: Maintained
883
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200884ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700885M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100886M: Paul Parsons <lost.distance@yahoo.com>
887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200888S: Maintained
889F: arch/arm/mach-pxa/hx4700.c
890F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100891F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200892
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100893ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700894M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200895W: www.jlime.com
896S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700897T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
898F: arch/arm/mach-sa1100/jornada720.c
899F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100900
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200901ARM/IGEP MACHINE SUPPORT
902M: Enric Balletbo i Serra <eballetbo@gmail.com>
903M: Javier Martinez Canillas <javier@dowhile0.org>
904L: linux-omap@vger.kernel.org
905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
906S: Maintained
907F: arch/arm/mach-omap2/board-igep0020.c
908
Marek Vasut403d2972010-05-22 00:29:39 +0200909ARM/INCOME PXA270 SUPPORT
910M: Marek Vasut <marek.vasut@gmail.com>
911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700913F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200914
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800915ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700917M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700919S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100920
921ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
926ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700928M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700930S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800931
932ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700933M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700934M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700936S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800937
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800938ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700939M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800941S: Maintained
942
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200943ARM/INTEL IXP4XX ARM ARCHITECTURE
944M: Imre Kaloz <kaloz@openwrt.org>
945M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200947S: Maintained
948F: arch/arm/mach-ixp4xx/
949
Joe Perches838553c2010-10-26 14:22:59 -0700950ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100951M: Jonathan Cameron <jic23@cam.ac.uk>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953S: Maintained
954F: arch/arm/mach-pxa/stargate2.c
955F: drivers/pcmcia/pxa2xx_stargate2.c
956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800957ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700958M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700959M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700961S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800962
963ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700964M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700965L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800966S: Maintained
967
Santosh Shilimkar1154f852013-08-05 14:11:14 -0400968ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
969M: Santosh Shilimkar <santosh.shilimkar@ti.com>
970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971S: Maintained
972F: arch/arm/mach-keystone/
973
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800974ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700975M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800977S: Maintained
978
Philipp Zabel3b8861712008-07-09 21:27:15 +0100979ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100981S: Maintained
982
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200983ARM/Marvell Armada 370 and Armada XP SOC support
984M: Jason Cooper <jason@lakedaemon.net>
985M: Andrew Lunn <andrew@lunn.ch>
986M: Gregory Clement <gregory.clement@free-electrons.com>
987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988S: Maintained
989F: arch/arm/mach-mvebu/
990
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400991ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
992M: Jason Cooper <jason@lakedaemon.net>
993M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400995S: Maintained
996F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400997F: arch/arm/mach-kirkwood/
998F: arch/arm/mach-mv78xx0/
999F: arch/arm/mach-orion5x/
1000F: arch/arm/plat-orion/
1001
Alexander Clouterd69ac132011-04-14 15:22:02 -07001002ARM/Orion SoC/Technologic Systems TS-78xx platform support
1003M: Alexander Clouter <alex@digriz.org.uk>
1004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005W: http://www.digriz.org.uk/ts78xx/kernel
1006S: Maintained
1007F: arch/arm/mach-orion5x/ts78xx-*
1008
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001009ARM/MICREL KS8695 ARCHITECTURE
1010M: Greg Ungerer <gerg@uclinux.org>
1011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012F: arch/arm/mach-ks8695
1013S: Odd Fixes
1014
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001015ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001017L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001018F: arch/arm/mach-pxa/mioa701.c
1019S: Maintained
1020
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001021ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001022M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001023S: Maintained
1024
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001025ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001026M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001027M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001028M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1029L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030S: Maintained
1031F: arch/arm/mach-nomadik/
1032F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001033F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001034T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001035
Andy Green9d762952009-05-19 06:41:42 -03001036ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001038L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1039W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1040S: Supported
1041
Daniel Walker0c19d212009-12-07 16:53:51 -08001042ARM/QUALCOMM MSM MACHINE SUPPORT
1043M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001044M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001045M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001046L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001047F: arch/arm/mach-msm/
1048F: drivers/video/msm/
1049F: drivers/mmc/host/msm_sdcc.c
1050F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001051F: drivers/tty/serial/msm_serial.h
1052F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001053F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001054F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001055F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001056T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001057S: Maintained
1058
Dirk Opfer8459c152005-11-06 14:27:52 +00001059ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1061M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001062S: Maintained
1063
Marek Vasut5d783a22009-07-16 13:26:48 +02001064ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001065M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001066L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001067W: http://hackndev.com
1068S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001069F: arch/arm/mach-pxa/include/mach/palmtx.h
1070F: arch/arm/mach-pxa/palmtx.c
1071F: arch/arm/mach-pxa/include/mach/palmt5.h
1072F: arch/arm/mach-pxa/palmt5.c
1073F: arch/arm/mach-pxa/include/mach/palmld.h
1074F: arch/arm/mach-pxa/palmld.c
1075F: arch/arm/mach-pxa/include/mach/palmte2.h
1076F: arch/arm/mach-pxa/palmte2.c
1077F: arch/arm/mach-pxa/include/mach/palmtc.h
1078F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001079
Joe Perchesb57fe922009-12-14 18:00:52 -08001080ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001081M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001082L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001083W: http://hackndev.com
1084S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001085F: arch/arm/mach-pxa/include/mach/palmtreo.h
1086F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001087
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001088ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001090L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001091W: http://hackndev.com
1092S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001093F: arch/arm/mach-pxa/include/mach/palmz72.h
1094F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1099S: Maintained
1100
1101ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001102M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001103L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104W: http://www.arm.linux.org.uk/
1105S: Maintained
1106
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001107ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001108M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001109L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001110S: Maintained
1111
Russell Kingd4275352009-04-16 14:05:27 +01001112ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001115W: http://www.arm.linux.org.uk/
1116S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001117F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1118F: arch/arm/include/asm/hardware/ioc.h
1119F: arch/arm/include/asm/hardware/iomd.h
1120F: arch/arm/include/asm/hardware/memc.h
1121F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001122F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001123F: drivers/net/ethernet/i825xx/ether1*
1124F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001125F: drivers/scsi/arm/
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001128M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129W: http://www.shark-linux.de/shark.html
1130S: Maintained
1131
Ben Dooksb21477f2009-06-13 10:46:34 +01001132ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001133M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001134M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001135L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001136L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001137W: http://www.fluff.org/ben/linux/
1138S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001139F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001140F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001141F: arch/arm/mach-s3c24*/
1142F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001143F: drivers/*/*s3c2410*
1144F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001145F: drivers/spi/spi-s3c*
1146F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001148ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001149M: Kukjin Kim <kgene.kim@samsung.com>
1150L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1152S: Maintained
1153F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001154F: arch/arm/mach-exynos*/
Doug Anderson33d43cd2013-06-18 07:02:23 +09001155N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001156
Kyungmin Park10ffa962011-03-04 17:36:26 -08001157ARM/SAMSUNG MOBILE MACHINE SUPPORT
1158M: Kyungmin Park <kyungmin.park@samsung.com>
1159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160S: Maintained
1161F: arch/arm/mach-s5pv210/mach-aquila.c
1162F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001163F: arch/arm/mach-exynos/mach-universal_c210.c
1164F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001165
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001166ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1167M: Kyungmin Park <kyungmin.park@samsung.com>
1168M: Kamil Debski <k.debski@samsung.com>
1169L: linux-arm-kernel@lists.infradead.org
1170L: linux-media@vger.kernel.org
1171S: Maintained
1172F: drivers/media/platform/s5p-g2d/
1173
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001174ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1175M: Kyungmin Park <kyungmin.park@samsung.com>
1176M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001177M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001178L: linux-arm-kernel@lists.infradead.org
1179L: linux-media@vger.kernel.org
1180S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001181F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001182F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001183
1184ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1185M: Kyungmin Park <kyungmin.park@samsung.com>
1186M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1187L: linux-arm-kernel@lists.infradead.org
1188L: linux-media@vger.kernel.org
1189S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001190F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001191
Paul Mundtd48d38e2010-02-08 12:50:24 +09001192ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001193M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001194M: Magnus Damm <magnus.damm@gmail.com>
1195L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001196W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001197Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001199S: Supported
1200F: arch/arm/mach-shmobile/
1201F: drivers/sh/
1202
Dinh Nguyen66314222012-07-18 16:07:18 -06001203ARM/SOCFPGA ARCHITECTURE
1204M: Dinh Nguyen <dinguyen@altera.com>
1205S: Maintained
1206F: arch/arm/mach-socfpga/
1207
1208ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1209M: Dinh Nguyen <dinguyen@altera.com>
1210S: Maintained
1211F: drivers/clk/socfpga/
1212
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001213ARM/STI ARCHITECTURE
1214M: Srinivas Kandagatla <srinivas.kandagatla@st.com>
1215M: Stuart Menefy <stuart.menefy@st.com>
1216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217L: kernel@stlinux.com
1218W: http://www.stlinux.com
1219S: Maintained
1220F: arch/arm/mach-sti/
1221
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001222ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001223M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001224L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001225S: Maintained
1226
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001227ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001228M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1230S: Maintained
1231
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001232ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001233M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001235S: Maintained
1236
wanzongshun98ad6e32009-02-13 06:04:32 +01001237ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001238M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001239L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001240W: http://www.mcuos.com
1241S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001242F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001243F: drivers/input/keyboard/w90p910_keypad.c
1244F: drivers/input/touchscreen/w90p910_ts.c
1245F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001246F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001247F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001248F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001249F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001250F: drivers/usb/host/ehci-w90x900.c
1251F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001252
Linus Walleij54274d72010-04-04 10:58:03 +01001253ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001254M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001255L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256S: Supported
1257F: arch/arm/mach-u300/
1258F: drivers/i2c/busses/i2c-stu300.c
1259F: drivers/rtc/rtc-coh901331.c
1260F: drivers/watchdog/coh901327_wdt.c
1261F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001262F: drivers/mfd/ab3100*
1263F: drivers/rtc/rtc-ab3100.c
1264F: drivers/rtc/rtc-coh901331.c
1265T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001266
Linus Walleij87572882010-12-22 09:18:29 +01001267ARM/Ux500 ARM ARCHITECTURE
Linus Walleije4651a92012-08-06 09:52:52 +02001268M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270S: Maintained
1271F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001272F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001273F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001274F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001275F: drivers/mfd/abx500*
1276F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001277F: drivers/mfd/dbx500*
1278F: drivers/mfd/db8500*
1279F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001280F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001281F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001282T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001283
Russell Kingd4275352009-04-16 14:05:27 +01001284ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001285M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001286L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001287W: http://www.arm.linux.org.uk/
1288S: Maintained
1289F: arch/arm/vfp/
1290
Marek Vasute66b6d82010-03-26 06:51:32 +01001291ARM/VOIPAC PXA270 SUPPORT
1292M: Marek Vasut <marek.vasut@gmail.com>
1293L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294S: Maintained
1295F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001296F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001297
Tony Prisk04529fe2012-07-24 04:19:37 +12001298ARM/VT8500 ARM ARCHITECTURE
1299M: Tony Prisk <linux@prisktech.co.nz>
1300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301S: Maintained
1302F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001303F: drivers/clocksource/vt8500_timer.c
1304F: drivers/gpio/gpio-vt8500.c
Tony Prisk560746e2013-06-15 09:52:16 +12001305F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001306F: drivers/mmc/host/wmt-sdmmc.c
1307F: drivers/pwm/pwm-vt8500.c
1308F: drivers/rtc/rtc-vt8500.c
1309F: drivers/tty/serial/vt8500_serial.c
1310F: drivers/usb/host/ehci-vt8500.c
1311F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001312F: drivers/video/vt8500lcdfb.*
1313F: drivers/video/wm8505fb*
1314F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001315
Marek Vasute66b6d82010-03-26 06:51:32 +01001316ARM/ZIPIT Z2 SUPPORT
1317M: Marek Vasut <marek.vasut@gmail.com>
1318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319S: Maintained
1320F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001321F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001322
Michal Simek51f29d42013-01-21 17:41:46 +01001323ARM/ZYNQ ARCHITECTURE
1324M: Michal Simek <michal.simek@xilinx.com>
1325L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1326W: http://wiki.xilinx.com
1327T: git git://git.xilinx.com/linux-xlnx.git
1328S: Supported
1329F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001330F: drivers/cpuidle/cpuidle-zynq.c
Michal Simek51f29d42013-01-21 17:41:46 +01001331
Will Deaconb8f98792013-06-24 18:31:26 +01001332ARM SMMU DRIVER
1333M: Will Deacon <will.deacon@arm.com>
1334L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335S: Maintained
1336F: drivers/iommu/arm-smmu.c
1337
Catalin Marinas38074222012-03-05 11:49:34 +00001338ARM64 PORT (AARCH64 ARCHITECTURE)
1339M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001340M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001341L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342S: Maintained
1343F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001344F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001345
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001346AS3645A LED FLASH CONTROLLER DRIVER
1347M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1348L: linux-media@vger.kernel.org
1349T: git git://linuxtv.org/media_tree.git
1350S: Maintained
1351F: drivers/media/i2c/as3645a.c
1352F: include/media/as3645a.h
1353
George Josephd58de032010-03-05 22:17:25 +01001354ASC7621 HARDWARE MONITOR DRIVER
1355M: George Joseph <george.joseph@fairview5.com>
1356L: lm-sensors@lm-sensors.org
1357S: Maintained
1358F: Documentation/hwmon/asc7621
1359F: drivers/hwmon/asc7621.c
1360
Corentin Charyb229ece2011-02-26 10:20:40 +01001361ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001362M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001364L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001365W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001367F: drivers/platform/x86/asus*.c
1368F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Andrew Morton953a6472008-11-06 12:53:28 -08001370ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001371M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001372W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001374F: Documentation/crypto/async-tx-api.txt
1375F: crypto/async_tx/
1376F: drivers/dma/
1377F: include/linux/dmaengine.h
1378F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001379
Wolfram Sanga1867d32009-09-18 22:45:51 +02001380AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001381M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001382L: linux-i2c@vger.kernel.org
1383S: Maintained
1384F: drivers/misc/eeprom/at24.c
1385F: include/linux/i2c/at24.h
1386
Randy Dunlape7839f22008-10-12 16:11:45 -07001387ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001388M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001389W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001391F: Documentation/aoe/
1392F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Joe Perches9a10a872010-12-01 09:37:55 -08001394ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001395M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001396L: linux-wireless@vger.kernel.org
1397S: Supported
1398F: drivers/net/wireless/ath/*
1399
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001400ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001401M: Jiri Slaby <jirislaby@gmail.com>
1402M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001403M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001404L: linux-wireless@vger.kernel.org
1405L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001406W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001407S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001408F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001409
Kalle Valo12e62d62011-09-13 10:21:25 +03001410ATHEROS ATH6KL WIRELESS DRIVER
1411M: Kalle Valo <kvalo@qca.qualcomm.com>
1412L: linux-wireless@vger.kernel.org
1413W: http://wireless.kernel.org/en/users/Drivers/ath6kl
Kalle Valo58cfb682013-07-22 12:26:12 +03001414T: git git://github.com/kvalo/ath.git
Kalle Valo12e62d62011-09-13 10:21:25 +03001415S: Supported
1416F: drivers/net/wireless/ath/ath6kl/
1417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001418ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001419M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1420M: Jouni Malinen <jouni@qca.qualcomm.com>
1421M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1422M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423L: linux-wireless@vger.kernel.org
1424L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001425W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001427F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001429WILOCITY WIL6210 WIRELESS DRIVER
1430M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1431L: linux-wireless@vger.kernel.org
1432L: wil6210@qca.qualcomm.com
1433S: Supported
1434W: http://wireless.kernel.org/en/users/Drivers/wil6210
1435F: drivers/net/wireless/ath/wil6210/
1436
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001437CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1438M: Christian Lamparter <chunkeey@googlemail.com>
1439L: linux-wireless@vger.kernel.org
1440W: http://wireless.kernel.org/en/users/Drivers/carl9170
1441S: Maintained
1442F: drivers/net/wireless/ath/carl9170/
1443
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001444ATK0110 HWMON DRIVER
1445M: Luca Tettamanti <kronos.it@gmail.com>
1446L: lm-sensors@lm-sensors.org
1447S: Maintained
1448F: drivers/hwmon/asus_atk0110.c
1449
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001450ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001451M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001454
Chris Snook7ae115b2008-09-09 03:26:57 -04001455ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001456M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001457M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001458L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001459W: http://sourceforge.net/projects/atl1
1460W: http://atl1.sourceforge.net
1461S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001462F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001465M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001466L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001467L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468W: http://linux-atm.sourceforge.net
1469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: drivers/atm/
1471F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001472F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001474ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001475M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001476S: Maintained
1477F: drivers/mmc/host/atmel-mci.c
1478F: drivers/mmc/host/atmel-mci-regs.h
1479
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001480ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001481M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001482S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001483F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001484
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001485ATMEL DMA DRIVER
1486M: Nicolas Ferre <nicolas.ferre@atmel.com>
1487L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488S: Supported
1489F: drivers/dma/at_hdmac.c
1490F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001491F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001492
Ludovic Desroches888f2802013-03-15 05:32:57 +00001493ATMEL I2C DRIVER
1494M: Ludovic Desroches <ludovic.desroches@atmel.com>
1495L: linux-i2c@vger.kernel.org
1496S: Supported
1497F: drivers/i2c/busses/i2c-at91.c
1498
Josh Wu15515542012-03-23 17:56:29 +08001499ATMEL ISI DRIVER
1500M: Josh Wu <josh.wu@atmel.com>
1501L: linux-media@vger.kernel.org
1502S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001503F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001504F: include/media/atmel-isi.h
1505
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001506ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001507M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001508L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001510F: drivers/video/atmel_lcdfb.c
1511F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001512
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001513ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001514M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001515S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001516F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001517
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001518ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001519M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001520S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001521F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001522
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001523ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1524M: Nicolas Ferre <nicolas.ferre@atmel.com>
1525L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526S: Supported
1527F: drivers/misc/atmel_tclib.c
1528F: drivers/clocksource/tcb_clksrc.c
1529
Josh Wuff2675d2012-03-23 17:56:55 +08001530ATMEL TSADCC DRIVER
1531M: Josh Wu <josh.wu@atmel.com>
1532L: linux-input@vger.kernel.org
1533S: Supported
1534F: drivers/input/touchscreen/atmel_tsadcc.c
1535
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001536ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001537M: Nicolas Ferre <nicolas.ferre@atmel.com>
1538L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001544L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545W: http://www.thekelleys.org.uk/atmel
1546W: http://atmelwlandriver.sourceforge.net/
1547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001548F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Chris Wrighta92b7b82005-07-07 18:12:23 -07001550AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001551M: Al Viro <viro@zeniv.linux.org.uk>
1552M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001553L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001554W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001555T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001558F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001559F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001560
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001561AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001563W: http://miguelojeda.es/auxdisplay.htm
1564W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001566F: drivers/auxdisplay/
1567F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001568
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001569AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001570M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1571M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001572W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001573W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001574W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001576F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001577
1578AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001579M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1580M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001582F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001587W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001589F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001590F: include/net/ax25.h
1591F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001593AZ6007 DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001594M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001595L: linux-media@vger.kernel.org
1596W: http://linuxtv.org
1597T: git git://linuxtv.org/media_tree.git
1598S: Maintained
1599F: drivers/media/usb/dvb-usb-v2/az6007.c
1600
Hans Verkuil67773762012-11-23 07:09:23 -03001601AZTECH FM RADIO RECEIVER DRIVER
1602M: Hans Verkuil <hverkuil@xs4all.nl>
1603L: linux-media@vger.kernel.org
1604T: git git://linuxtv.org/media_tree.git
1605W: http://linuxtv.org
1606S: Maintained
1607F: drivers/media/radio/radio-aztech*
1608
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001609B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001610M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001611L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001612L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001613W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001615F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616
1617B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001618M: Larry Finger <Larry.Finger@lwfinger.net>
1619M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001620L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001621L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001622W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001625
Richard Purdie300abeb2007-02-07 22:21:07 +00001626BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Richard Purdie <rpurdie@rpsys.net>
Jingoo Han6212de82013-07-03 15:05:15 -07001628M: Jingoo Han <jg1.han@samsung.com>
Richard Purdie300abeb2007-02-07 22:21:07 +00001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: drivers/video/backlight/
1631F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001632
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001633BATMAN ADVANCED
1634M: Marek Lindner <lindner_marek@yahoo.de>
1635M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001636M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001637L: b.a.t.m.a.n@lists.open-mesh.org
1638W: http://www.open-mesh.org/
1639S: Maintained
1640F: net/batman-adv/
1641
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001642BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001643M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001644L: linux-hams@vger.kernel.org
1645W: http://www.baycom.org/~tom/ham/ham.html
1646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001647F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001648
Kent Overstreetcafe5632013-03-23 16:11:31 -07001649BCACHE (BLOCK LAYER CACHE)
Kent Overstreet47cd2eb2013-07-01 12:19:55 -07001650M: Kent Overstreet <kmo@daterainc.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07001651L: linux-bcache@vger.kernel.org
1652W: http://bcache.evilpiepirate.org
1653S: Maintained:
1654F: drivers/md/bcache/
1655
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001656BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001658F: Documentation/filesystems/befs.txt
1659F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001660
1661BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: Documentation/filesystems/bfs.txt
1665F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001666F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001667
Bryan Wu1394f032007-05-06 14:50:22 -07001668BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001670L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001671W: http://blackfin.uclinux.org
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001674
Bryan Wue190d6b2007-07-17 14:43:44 +08001675BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001676L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001677W: http://blackfin.uclinux.org
1678S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001679F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001680
Mike Frysinger566da5b2007-06-11 15:31:30 +08001681BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001683L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001684W: http://blackfin.uclinux.org
1685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001687
Mike Frysinger936ed492010-03-10 15:20:38 -08001688BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001689M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001690L: uclinux-dist-devel@blackfin.uclinux.org
1691W: http://blackfin.uclinux.org
1692S: Supported
1693F: drivers/mmc/host/bfin_sdh.c
1694
Bryan Wu1394f032007-05-06 14:50:22 -07001695BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001697L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001698W: http://blackfin.uclinux.org
1699S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001700F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001701
Bryan Wu1e6d3202007-07-15 02:50:02 +08001702BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001704L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001705W: http://blackfin.uclinux.org
1706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001707F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001708
Bryan Wud24ecfc2007-05-01 23:26:32 +02001709BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001711L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001712W: http://blackfin.uclinux.org/
1713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001714F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001715
Scott Jiang1e204372013-01-18 17:09:47 -03001716BLACKFIN MEDIA DRIVER
1717M: Scott Jiang <scott.jiang.linux@gmail.com>
1718L: uclinux-dist-devel@blackfin.uclinux.org
1719W: http://blackfin.uclinux.org/
1720S: Supported
1721F: drivers/media/platform/blackfin/
1722F: drivers/media/i2c/adv7183*
1723F: drivers/media/i2c/vs6624*
1724
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001725BLINKM RGB LED DRIVER
1726M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1727S: Maintained
1728F: drivers/leds/leds-blinkm.c
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001731M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001732T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001734F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Joern Engel2b54aae2008-02-06 01:38:02 -08001736BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001737M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001738L: linux-mtd@lists.infradead.org
1739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001741
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001742BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001743M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001744M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001745M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001746L: linux-bluetooth@vger.kernel.org
1747W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001748T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1749T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001751F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001755M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001756M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001757L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001758W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001759T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1760T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001762F: net/bluetooth/
1763F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001767M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001768L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001769W: http://sourceforge.net/projects/bonding/
1770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001772F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Gary Zambrano39105892006-06-22 17:26:20 -07001774BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001775M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001776L: netdev@vger.kernel.org
1777S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001778F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001779
Michael Chan948c51e2006-06-04 02:51:39 -07001780BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001782L: netdev@vger.kernel.org
1783S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001784F: drivers/net/ethernet/broadcom/bnx2.*
1785F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001786
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001787BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001788M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001789L: netdev@vger.kernel.org
1790S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001791F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001792
Stephen Warrenf680f252012-09-15 00:18:54 -06001793BROADCOM BCM2835 ARM ARCHICTURE
1794M: Stephen Warren <swarren@wwwdotorg.org>
1795L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1796T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1797S: Maintained
1798F: arch/arm/mach-bcm2835/
1799F: arch/arm/boot/dts/bcm2835*
1800F: arch/arm/configs/bcm2835_defconfig
1801F: drivers/*/*bcm2835*
1802
Michael Chan948c51e2006-06-04 02:51:39 -07001803BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001804M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001805M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001806L: netdev@vger.kernel.org
1807S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001808F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001809
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001810BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1811M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001812M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001813M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001814M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001815L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001816L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001817S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001818F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001819
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001820BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1821M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1822L: linux-scsi@vger.kernel.org
1823S: Supported
1824F: drivers/scsi/bnx2fc/
1825
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001826BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1827M: Rafał Miłecki <zajec5@gmail.com>
1828L: linux-wireless@vger.kernel.org
1829S: Maintained
1830F: drivers/bcma/
1831F: include/linux/bcma/
1832
Jing Huang7725ccf2009-09-23 17:46:15 -07001833BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001834M: Anil Gurumurthy <agurumur@brocade.com>
1835M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001836L: linux-scsi@vger.kernel.org
1837S: Supported
1838F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001839
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001840BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1841M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001842L: netdev@vger.kernel.org
1843S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001844F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001845
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001846BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001847M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001848L: linux-scsi@vger.kernel.org
1849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001850F: block/bsg.c
1851F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001852F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001853
Clemens Ladischaf399172011-01-10 16:32:54 +01001854BT87X AUDIO DRIVER
1855M: Clemens Ladisch <clemens@ladisch.de>
1856L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1857T: git git://git.alsa-project.org/alsa-kernel.git
1858S: Maintained
1859F: Documentation/sound/alsa/Bt87x.txt
1860F: sound/pci/bt87x.c
1861
Michael Bueschff1d5c22008-07-25 01:46:10 -07001862BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001863M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001864W: http://bu3sch.de/btgpio.php
1865S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001866F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001867
Joe Percheseb1eb042009-01-21 10:49:16 -05001868BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001869M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001870L: linux-btrfs@vger.kernel.org
1871W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001872Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001873T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: Documentation/filesystems/btrfs.txt
1876F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001879M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001880L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001881W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001882T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001883S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001884F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001885F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Khalid Aziz1f349232013-06-25 09:57:27 -06001887BUSLOGIC SCSI DRIVER
1888M: Khalid Aziz <khalid@gonehiking.org>
1889L: linux-scsi@vger.kernel.org
1890S: Maintained
1891F: drivers/scsi/BusLogic.*
1892F: drivers/scsi/FlashPoint.*
1893
Clemens Ladischaf399172011-01-10 16:32:54 +01001894C-MEDIA CMI8788 DRIVER
1895M: Clemens Ladisch <clemens@ladisch.de>
1896L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1897T: git git://git.alsa-project.org/alsa-kernel.git
1898S: Maintained
1899F: sound/pci/oxygen/
1900
Mark Salter21413552011-10-04 11:21:42 -04001901C6X ARCHITECTURE
1902M: Mark Salter <msalter@redhat.com>
1903M: Aurelien Jacquiot <a-jacquiot@ti.com>
1904L: linux-c6x-dev@linux-c6x.org
1905W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1906S: Maintained
1907F: arch/c6x/
1908
David Howellsa5432f52009-04-20 15:46:45 +01001909CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001911L: linux-cachefs@redhat.com
1912S: Supported
1913F: Documentation/filesystems/caching/cachefiles.txt
1914F: fs/cachefiles/
1915
Hans Verkuilc815ca32012-11-23 07:05:54 -03001916CADET FM/AM RADIO RECEIVER DRIVER
1917M: Hans Verkuil <hverkuil@xs4all.nl>
1918L: linux-media@vger.kernel.org
1919T: git git://linuxtv.org/media_tree.git
1920W: http://linuxtv.org
1921S: Maintained
1922F: drivers/media/radio/radio-cadet*
1923
Jonathan Corbet77d51402007-03-22 19:44:17 -03001924CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001926L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001927T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001929F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001930F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001931
Joe Perches201b6ba2010-09-07 20:33:24 +00001932CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001933M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001934L: netdev@vger.kernel.org
1935S: Supported
1936F: Documentation/networking/caif/
1937F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001938F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001939F: include/net/caif/
1940F: net/caif/
1941
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001942CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001943M: Muli Ben-Yehuda <muli@il.ibm.com>
1944M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001945L: discuss@x86-64.org
1946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: arch/x86/kernel/pci-calgary_64.c
1948F: arch/x86/kernel/tce_64.c
1949F: arch/x86/include/asm/calgary.h
1950F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001951
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001952CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001953M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001954L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001955W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001956T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001957S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001958F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001959F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001960F: include/uapi/linux/can.h
1961F: include/uapi/linux/can/bcm.h
1962F: include/uapi/linux/can/raw.h
1963F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001964
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001965CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001967M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001968L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001969W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001970T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001971S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001972F: drivers/net/can/
1973F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001974F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001975F: include/uapi/linux/can/error.h
1976F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001977
James Morris95d16c72012-03-16 12:05:48 +11001978CAPABILITIES
1979M: Serge Hallyn <serge.hallyn@canonical.com>
1980L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001981S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001982F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001983F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001984F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001985F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001986F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001987
Arnd Bergmannb8154542008-05-16 11:10:59 +02001988CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001990L: linuxppc-dev@lists.ozlabs.org
1991L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001992W: http://www.ibm.com/developerworks/power/cell/
1993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001994F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001995F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001996F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001997F: arch/powerpc/oprofile/*cell*
1998F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001999
Sage Weil9030aaf2009-10-06 11:31:15 -07002000CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07002001M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07002002L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07002003W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002005S: Supported
2006F: Documentation/filesystems/ceph.txt
2007F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002008F: net/ceph
2009F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07002010F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07002011
David Vrabel18332a82008-09-17 16:34:44 +01002012CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002013L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002014S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002015F: Documentation/usb/WUSB-Design-overview.txt
2016F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002017F: drivers/usb/host/hwa-hc.c
2018F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/usb/wusbcore/
2020F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002021
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002022CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002023M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002024W: http://miguelojeda.es/auxdisplay.htm
2025W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/auxdisplay/cfag12864b.c
2028F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002029
2030CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002031M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002032W: http://miguelojeda.es/auxdisplay.htm
2033W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/auxdisplay/cfag12864bfb.c
2036F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002037
Johannes Berg704232c2007-04-23 12:20:05 -07002038CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002040L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002041W: http://wireless.kernel.org/
2042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2043T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002044S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002045F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002046F: include/net/cfg80211.h
2047F: net/wireless/*
2048X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002049
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002050CHAR and MISC DRIVERS
2051M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002052M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002053T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002054S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002055F: drivers/char/*
2056F: drivers/misc/*
2057
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002058CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002060M: Joe Perches <joe@perches.com>
2061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002063
Harry Weif8407f262011-02-25 14:44:15 -08002064CHINESE DOCUMENTATION
2065M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002066L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002067L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2068S: Maintained
2069F: Documentation/zh_CN/
2070
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002071CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2072M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2073L: linux-usb@vger.kernel.org
2074S: Maintained
2075F: drivers/usb/chipidea/
2076
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002077CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002078M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002079M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002080M: Neel Patel <neepatel@cisco.com>
2081M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002082S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002083F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002084
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002085CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002086M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002087L: netdev@vger.kernel.org
2088S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002089F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002090
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002091CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002093L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002096
Timur Tabid9e9d822008-04-24 08:45:26 +10002097CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002098M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002099L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002100S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002101F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002102
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002103CLEANCACHE API
2104M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2105L: linux-kernel@vger.kernel.org
2106S: Maintained
2107F: mm/cleancache.c
2108F: include/linux/cleancache.h
2109
Russell Kingd4275352009-04-16 14:05:27 +01002110CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002112S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002113F: include/linux/clk.h
2114
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002115CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002116M: Hiral Patel <hiralpat@cisco.com>
2117M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002118M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002119L: linux-scsi@vger.kernel.org
2120S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002121F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002122
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002123CMPC ACPI DRIVER
2124M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2125M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002126L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002127S: Supported
2128F: drivers/platform/x86/classmate-laptop.c
2129
Nicolas Palix74425ee2010-06-06 17:15:01 +02002130COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002131M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002132M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002133M: Nicolas Palix <nicolas.palix@imag.fr>
Nicolas Palixc00b5112013-06-06 23:39:53 +02002134M: Michal Marek <mmarek@suse.cz>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002135L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002136T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002137W: http://coccinelle.lip6.fr/
2138S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002139F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002140F: scripts/coccinelle/
2141F: scripts/coccicheck
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002144M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145M: coda@cs.cmu.edu
2146L: codalist@coda.cs.cmu.edu
2147W: http://www.coda.cs.cmu.edu/
2148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: Documentation/filesystems/coda.txt
2150F: fs/coda/
2151F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002152F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Mike Turquette7704add2012-05-02 18:37:45 -07002154COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002155M: Mike Turquette <mturquette@linaro.org>
2156L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2157T: git git://git.linaro.org/people/mturquette/linux.git
2158S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002159F: drivers/clk/
2160X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002161F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002162F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002163
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002165M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002166L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002167L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002168W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002169Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002170T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002172F: Documentation/filesystems/cifs.txt
2173F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002176M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002177L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002179F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002182M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002183L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002185F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002188M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002189L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002191F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002193COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002194M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002195L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002198
Simon Arlott949be0f2007-03-06 02:47:46 -08002199CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002200M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002201L: accessrunner-general@lists.sourceforge.net
2202W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002204F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002205
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002206CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002207M: Joel Becker <jlbec@evilplan.org>
2208T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002210F: fs/configfs/
2211F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002212
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002213CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002214M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002215L: netdev@vger.kernel.org
2216S: Maintained
2217F: drivers/connector/
2218
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002219CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002220M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002221M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002222L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002223L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002224T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: include/linux/cgroup*
2227F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002228F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002229
Rudolf Marekbebe4672007-05-08 17:22:02 +02002230CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002231M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002232L: lm-sensors@lm-sensors.org
2233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002234F: Documentation/hwmon/coretemp
2235F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002238M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239W: http://www.fi.muni.cz/~kas/cosa/
2240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Florian Fainelli4371ee32009-06-01 02:43:17 -07002243CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002244M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002245L: netdev@vger.kernel.org
2246S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002247F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002250M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002251M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002252L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002253L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302255T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2256T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002257F: drivers/cpufreq/
2258F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002260CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2261M: Viresh Kumar <viresh.kumar@linaro.org>
2262M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2263L: cpufreq@vger.kernel.org
2264L: linux-pm@vger.kernel.org
2265W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2266S: Maintained
2267F: drivers/cpufreq/arm_big_little.h
2268F: drivers/cpufreq/arm_big_little.c
2269F: drivers/cpufreq/arm_big_little_dt.c
2270
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002271CPUIDLE DRIVERS
2272M: Rafael J. Wysocki <rjw@sisk.pl>
2273M: Daniel Lezcano <daniel.lezcano@linaro.org>
2274L: linux-pm@vger.kernel.org
2275S: Maintained
2276T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2277F: drivers/cpuidle/*
2278F: include/linux/cpuidle.h
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002281M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002283F: arch/x86/kernel/cpuid.c
2284F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002286CPU POWER MONITORING SUBSYSTEM
2287M: Dominik Brodowski <linux@dominikbrodowski.net>
2288M: Thomas Renninger <trenn@suse.de>
2289S: Maintained
2290F: tools/power/cpupower
2291
Paul Jacksoned90fb42005-09-27 21:45:37 -07002292CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002293M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002294W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002295W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002297F: Documentation/cgroups/cpusets.txt
2298F: include/linux/cpuset.h
2299F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002302W: http://sourceforge.net/projects/cramfs/
2303S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002304F: Documentation/filesystems/cramfs.txt
2305F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002308M: Mikael Starvik <starvik@axis.com>
2309M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002310L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311W: http://developer.axis.com
2312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002314F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Herbert Xu <herbert@gondor.apana.org.au>
2318M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002320T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002322F: Documentation/crypto/
2323F: arch/*/crypto/
2324F: crypto/
2325F: drivers/crypto/
2326F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Neil Horman5b07bd52009-02-05 16:03:04 +11002328CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002329M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002330L: linux-crypto@vger.kernel.org
2331S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002332F: crypto/ansi_cprng.c
2333F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002334
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002335CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002338F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002339
Solomon Peachya910e4a2013-05-24 20:04:38 -04002340CW1200 WLAN driver
2341M: Solomon Peachy <pizza@shaftnet.org>
2342S: Maintained
2343F: drivers/net/wireless/cw1200/
2344
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002345CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002346M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002347L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002348L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002349T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002350W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002351W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002353F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002354F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002355F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002356
Hans Verkuil3f101d92012-11-23 07:00:02 -03002357CX2341X MPEG ENCODER HELPER MODULE
2358M: Hans Verkuil <hverkuil@xs4all.nl>
2359L: linux-media@vger.kernel.org
2360T: git git://linuxtv.org/media_tree.git
2361W: http://linuxtv.org
2362S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002363F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002364F: include/media/cx2341x*
2365
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002366CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002367M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002368L: linux-media@vger.kernel.org
2369W: http://linuxtv.org
2370T: git git://linuxtv.org/media_tree.git
2371S: Odd fixes
2372F: Documentation/video4linux/cx88/
2373F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002374
Antti Palosaari91952bc2012-10-01 12:28:46 -03002375CXD2820R MEDIA DRIVER
2376M: Antti Palosaari <crope@iki.fi>
2377L: linux-media@vger.kernel.org
2378W: http://linuxtv.org/
2379W: http://palosaari.fi/linux/
2380Q: http://patchwork.linuxtv.org/project/linux-media/list/
2381T: git git://linuxtv.org/anttip/media_tree.git
2382S: Maintained
2383F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002384
Steve Wisee5ec3782008-05-20 14:06:33 -07002385CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002387L: netdev@vger.kernel.org
2388W: http://www.chelsio.com
2389S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002390F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002391
2392CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002393M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002394L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002395W: http://www.openfabrics.org
2396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002397F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002398
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002399CXGB4 ETHERNET DRIVER (CXGB4)
2400M: Dimitris Michailidis <dm@chelsio.com>
2401L: netdev@vger.kernel.org
2402W: http://www.chelsio.com
2403S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002404F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002405
2406CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2407M: Steve Wise <swise@chelsio.com>
2408L: linux-rdma@vger.kernel.org
2409W: http://www.openfabrics.org
2410S: Supported
2411F: drivers/infiniband/hw/cxgb4/
2412
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002413CXGB4VF ETHERNET DRIVER (CXGB4VF)
2414M: Casey Leedom <leedom@chelsio.com>
2415L: netdev@vger.kernel.org
2416W: http://www.chelsio.com
2417S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002418F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002419
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002420STMMAC ETHERNET DRIVER
2421M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2422L: netdev@vger.kernel.org
2423W: http://www.stlinux.com
2424S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002425F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002429L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430W: http://www.arm.linux.org.uk/
2431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002432F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002436S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002437F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002438F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002439F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002443S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002444F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002446CYPRESS_FIRMWARE MEDIA DRIVER
2447M: Antti Palosaari <crope@iki.fi>
2448L: linux-media@vger.kernel.org
2449W: http://linuxtv.org/
2450W: http://palosaari.fi/linux/
2451Q: http://patchwork.linuxtv.org/project/linux-media/list/
2452T: git git://linuxtv.org/anttip/media_tree.git
2453S: Maintained
2454F: drivers/media/common/cypress_firmware*
2455
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002456CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002457M: Javier Martinez Canillas <javier@dowhile0.org>
2458L: linux-input@vger.kernel.org
2459S: Maintained
2460F: drivers/input/touchscreen/cyttsp*
2461F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002464M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465W: http://yaina.de/jreuter/
2466W: http://www.qsl.net/dl1bke/
2467L: linux-hams@vger.kernel.org
2468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002469F: net/ax25/af_ax25.c
2470F: net/ax25/ax25_dev.c
2471F: net/ax25/ax25_ds_*
2472F: net/ax25/ax25_in.c
2473F: net/ax25/ax25_out.c
2474F: net/ax25/ax25_timer.c
2475F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002477DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002478L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002479S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002480F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002481F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002482
2483DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002484M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002485W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002491M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002492M: Ali Akcaagac <aliakc@web.de>
2493M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002495L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496L: http://lists.twibble.org/mailman/listinfo/dc395x/
2497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002498F: Documentation/scsi/dc395x.txt
2499F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002501DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002502M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002503L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002504W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002507F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002508F: include/linux/tfrc.h
2509F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512W: http://linux-decnet.sourceforge.net
2513L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002514S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002515F: Documentation/networking/decnet.txt
2516F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002519M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002521F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002523DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002524M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002525L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002527F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002530S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002531F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002532F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Doug Warzecha90563ec2005-09-06 15:17:15 -07002534DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002535M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: Documentation/dcdbas.txt
2538F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002539
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002540DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002542S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002543F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002544
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002545DESIGNWARE USB2 DRD IP DRIVER
2546M: Paul Zimmerman <paulz@synopsys.com>
2547L: linux-usb@vger.kernel.org
2548S: Maintained
2549F: drivers/staging/dwc2/
2550
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002551DESIGNWARE USB3 DRD IP DRIVER
2552M: Felipe Balbi <balbi@ti.com>
2553L: linux-usb@vger.kernel.org
2554L: linux-omap@vger.kernel.org
2555T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2556S: Maintained
2557F: drivers/usb/dwc3/
2558
Kyungmin Park89d07762012-01-10 15:09:09 -08002559DEVICE FREQUENCY (DEVFREQ)
2560M: MyungJoo Ham <myungjoo.ham@samsung.com>
2561M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09002562L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08002563S: Maintained
2564F: drivers/devfreq/
2565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002567M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569S: Maintained
2570
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002571DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002572M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002573M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002574M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002575L: dm-devel@redhat.com
2576W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002577Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002578T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002580F: Documentation/device-mapper/
2581F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002582F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002583F: include/linux/device-mapper.h
2584F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002585F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002586
Guenter Roeck335d7c52011-01-26 11:45:49 -08002587DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002588M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002589L: linux-i2c@vger.kernel.org
2590S: Maintained
2591F: drivers/i2c/busses/i2c-diolan-u2c.c
2592
Randy Dunlape7839f22008-10-12 16:11:45 -07002593DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002594M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002596F: Documentation/filesystems/dnotify.txt
2597F: fs/notify/dnotify/
2598F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2603W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2604W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2605S: Maintained
2606
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002607DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002608M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002610F: Documentation/filesystems/quota.txt
2611F: fs/quota/
2612F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002613F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Bernie Thompson702686a2012-03-01 13:52:13 -08002615DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2616M: Bernie Thompson <bernie@plugable.com>
2617L: linux-fbdev@vger.kernel.org
2618S: Maintained
2619W: http://plugable.com/category/projects/udlfb/
2620F: drivers/video/udlfb.c
2621F: include/video/udlfb.h
2622F: Documentation/fb/udlfb.txt
2623
Randy Dunlape7839f22008-10-12 16:11:45 -07002624DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002625M: Christine Caulfield <ccaulfie@redhat.com>
2626M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002627L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002628W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002629T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002631F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002632
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302633DMA BUFFER SHARING FRAMEWORK
2634M: Sumit Semwal <sumit.semwal@linaro.org>
2635S: Maintained
2636L: linux-media@vger.kernel.org
2637L: dri-devel@lists.freedesktop.org
2638L: linaro-mm-sig@lists.linaro.org
2639F: drivers/base/dma-buf*
2640F: include/linux/dma-buf*
2641F: Documentation/dma-buf-sharing.txt
2642T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2643
Dan Williamsb3e5f262007-08-07 10:26:35 -07002644DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002645M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002646M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002648F: drivers/dma/
2649F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302650T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2651T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002652
Juerg Haefligerb8250372007-06-09 10:11:16 -04002653DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002654M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002655L: lm-sensors@lm-sensors.org
2656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002657F: Documentation/hwmon/dme1737
2658F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002659
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002660DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002662L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002664F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002665
Joe Perches7d2c86b2009-04-07 20:59:01 -07002666DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002667M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002668L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002669T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675L: blinux-list@redhat.com
2676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/char/dtlk.c
2678F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002680DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002681M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002682L: linux-scsi@vger.kernel.org
2683W: http://www.adaptec.com/
2684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002685F: drivers/scsi/dpt*
2686F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002687
Philipp Reisnerb411b362009-09-25 16:07:19 -07002688DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002689P: Philipp Reisner
2690P: Lars Ellenberg
2691M: drbd-dev@lists.linbit.com
2692L: drbd-user@lists.linbit.com
2693W: http://www.drbd.org
2694T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2695T: git git://git.drbd.org/drbd-8.3.git
2696S: Supported
2697F: drivers/block/drbd/
2698F: lib/lru_cache.c
2699F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002700
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002701DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002702M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002703T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002705F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002706F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002707F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002708F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002709F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002710F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002711F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002714M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002715L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002716T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002718F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002719F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002720F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Chris Wilson8daf7472010-09-28 14:07:26 +01002722INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002723M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002724L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002725L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002726T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002727S: Supported
2728F: drivers/gpu/drm/i915
2729F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002730F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002731
Kyungmin Park398a6d42011-11-02 11:33:16 +09002732DRM DRIVERS FOR EXYNOS
2733M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002734M: Joonyoung Shim <jy0922.shim@samsung.com>
2735M: Seung-Woo Kim <sw0312.kim@samsung.com>
2736M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002737L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002738T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002739S: Supported
2740F: drivers/gpu/drm/exynos
2741F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002742F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002743
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002744DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002745M: Thierry Reding <thierry.reding@gmail.com>
2746M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002747L: dri-devel@lists.freedesktop.org
2748L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002749T: git git://anongit.freedesktop.org/tegra/linux.git
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002750S: Maintained
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002751F: drivers/gpu/host1x/
2752F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002753F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2754
Alexey Klimov598df1a2012-11-28 17:16:32 -03002755DSBR100 USB FM RADIO DRIVER
2756M: Alexey Klimov <klimov.linux@gmail.com>
2757L: linux-media@vger.kernel.org
2758T: git git://linuxtv.org/media_tree.git
2759S: Maintained
2760F: drivers/media/radio/dsbr100.c
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002764L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002766F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Antti Palosaari91952bc2012-10-01 12:28:46 -03002768DVB_USB_AF9015 MEDIA DRIVER
2769M: Antti Palosaari <crope@iki.fi>
2770L: linux-media@vger.kernel.org
2771W: http://linuxtv.org/
2772W: http://palosaari.fi/linux/
2773Q: http://patchwork.linuxtv.org/project/linux-media/list/
2774T: git git://linuxtv.org/anttip/media_tree.git
2775S: Maintained
2776F: drivers/media/usb/dvb-usb-v2/af9015*
2777
2778DVB_USB_AF9035 MEDIA DRIVER
2779M: Antti Palosaari <crope@iki.fi>
2780L: linux-media@vger.kernel.org
2781W: http://linuxtv.org/
2782W: http://palosaari.fi/linux/
2783Q: http://patchwork.linuxtv.org/project/linux-media/list/
2784T: git git://linuxtv.org/anttip/media_tree.git
2785S: Maintained
2786F: drivers/media/usb/dvb-usb-v2/af9035*
2787
2788DVB_USB_ANYSEE MEDIA DRIVER
2789M: Antti Palosaari <crope@iki.fi>
2790L: linux-media@vger.kernel.org
2791W: http://linuxtv.org/
2792W: http://palosaari.fi/linux/
2793Q: http://patchwork.linuxtv.org/project/linux-media/list/
2794T: git git://linuxtv.org/anttip/media_tree.git
2795S: Maintained
2796F: drivers/media/usb/dvb-usb-v2/anysee*
2797
2798DVB_USB_AU6610 MEDIA DRIVER
2799M: Antti Palosaari <crope@iki.fi>
2800L: linux-media@vger.kernel.org
2801W: http://linuxtv.org/
2802W: http://palosaari.fi/linux/
2803Q: http://patchwork.linuxtv.org/project/linux-media/list/
2804T: git git://linuxtv.org/anttip/media_tree.git
2805S: Maintained
2806F: drivers/media/usb/dvb-usb-v2/au6610*
2807
2808DVB_USB_CE6230 MEDIA DRIVER
2809M: Antti Palosaari <crope@iki.fi>
2810L: linux-media@vger.kernel.org
2811W: http://linuxtv.org/
2812W: http://palosaari.fi/linux/
2813Q: http://patchwork.linuxtv.org/project/linux-media/list/
2814T: git git://linuxtv.org/anttip/media_tree.git
2815S: Maintained
2816F: drivers/media/usb/dvb-usb-v2/ce6230*
2817
Michael Krufkyd099dea2012-10-02 00:56:20 -03002818DVB_USB_CXUSB MEDIA DRIVER
2819M: Michael Krufky <mkrufky@linuxtv.org>
2820L: linux-media@vger.kernel.org
2821W: http://linuxtv.org/
2822W: http://github.com/mkrufky
2823Q: http://patchwork.linuxtv.org/project/linux-media/list/
2824T: git git://linuxtv.org/media_tree.git
2825S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002826F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002827
Antti Palosaari91952bc2012-10-01 12:28:46 -03002828DVB_USB_EC168 MEDIA DRIVER
2829M: Antti Palosaari <crope@iki.fi>
2830L: linux-media@vger.kernel.org
2831W: http://linuxtv.org/
2832W: http://palosaari.fi/linux/
2833Q: http://patchwork.linuxtv.org/project/linux-media/list/
2834T: git git://linuxtv.org/anttip/media_tree.git
2835S: Maintained
2836F: drivers/media/usb/dvb-usb-v2/ec168*
2837
Antti Palosaari55609832013-04-09 20:30:42 -03002838DVB_USB_GL861 MEDIA DRIVER
2839M: Antti Palosaari <crope@iki.fi>
2840L: linux-media@vger.kernel.org
2841W: http://linuxtv.org/
2842Q: http://patchwork.linuxtv.org/project/linux-media/list/
2843T: git git://linuxtv.org/anttip/media_tree.git
2844S: Maintained
2845F: drivers/media/usb/dvb-usb-v2/gl861*
2846
Michael Krufky8856f5f2012-10-02 00:55:50 -03002847DVB_USB_MXL111SF MEDIA DRIVER
2848M: Michael Krufky <mkrufky@linuxtv.org>
2849L: linux-media@vger.kernel.org
2850W: http://linuxtv.org/
2851W: http://github.com/mkrufky
2852Q: http://patchwork.linuxtv.org/project/linux-media/list/
2853T: git git://linuxtv.org/mkrufky/mxl111sf.git
2854S: Maintained
2855F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2856
Antti Palosaari91952bc2012-10-01 12:28:46 -03002857DVB_USB_RTL28XXU MEDIA DRIVER
2858M: Antti Palosaari <crope@iki.fi>
2859L: linux-media@vger.kernel.org
2860W: http://linuxtv.org/
2861W: http://palosaari.fi/linux/
2862Q: http://patchwork.linuxtv.org/project/linux-media/list/
2863T: git git://linuxtv.org/anttip/media_tree.git
2864S: Maintained
2865F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2866
2867DVB_USB_V2 MEDIA DRIVER
2868M: Antti Palosaari <crope@iki.fi>
2869L: linux-media@vger.kernel.org
2870W: http://linuxtv.org/
2871W: http://palosaari.fi/linux/
2872Q: http://patchwork.linuxtv.org/project/linux-media/list/
2873T: git git://linuxtv.org/anttip/media_tree.git
2874S: Maintained
2875F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2876F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2877
Jason Baronac0ac382011-08-11 14:36:43 -04002878DYNAMIC DEBUG
Joe Perches5c4a97d2013-07-31 13:53:32 -07002879M: Jason Baron <jbaron@akamai.com>
Jason Baronac0ac382011-08-11 14:36:43 -04002880S: Maintained
2881F: lib/dynamic_debug.c
2882F: include/linux/dynamic_debug.h
2883
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002884DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002885M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002886S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002887F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002888
Antti Palosaari91952bc2012-10-01 12:28:46 -03002889E4000 MEDIA DRIVER
2890M: Antti Palosaari <crope@iki.fi>
2891L: linux-media@vger.kernel.org
2892W: http://linuxtv.org/
2893W: http://palosaari.fi/linux/
2894Q: http://patchwork.linuxtv.org/project/linux-media/list/
2895T: git git://linuxtv.org/anttip/media_tree.git
2896S: Maintained
2897F: drivers/media/tuners/e4000*
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002900M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002901L: linux-eata@i-connect.net
2902L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002904F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908L: linux-scsi@vger.kernel.org
2909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002910F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002913M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002914L: linux-eata@i-connect.net
2915L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002917F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002920M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002921L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922W: http://ebtables.sourceforge.net/
2923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002924F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002925F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002926F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
Antti Palosaari91952bc2012-10-01 12:28:46 -03002928EC100 MEDIA DRIVER
2929M: Antti Palosaari <crope@iki.fi>
2930L: linux-media@vger.kernel.org
2931W: http://linuxtv.org/
2932W: http://palosaari.fi/linux/
2933Q: http://patchwork.linuxtv.org/project/linux-media/list/
2934T: git git://linuxtv.org/anttip/media_tree.git
2935S: Maintained
2936F: drivers/media/dvb-frontends/ec100*
2937
Michael Halcrow237fead2006-10-04 02:16:22 -07002938ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002939M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002940L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05002941W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002942W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002944F: Documentation/filesystems/ecryptfs.txt
2945F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002946
Alan Coxda9bb1d2006-01-18 17:44:13 -08002947EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002949L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002950W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002952F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002953F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002954F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002955
Borislav Petkovc476c232009-05-20 20:31:58 +02002956EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002958M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002959L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002960W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002961S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002962F: drivers/edac/amd64_edac*
2963
Ralf Baechlef65aad42012-10-17 00:39:09 +02002964EDAC-CAVIUM
2965M: Ralf Baechle <ralf@linux-mips.org>
2966M: David Daney <david.daney@cavium.com>
2967L: linux-edac@vger.kernel.org
2968L: linux-mips@linux-mips.org
2969W: bluesmoke.sourceforge.net
2970S: Supported
2971F: drivers/edac/octeon_edac*
2972
Dave Peterson0e438e32006-03-26 01:38:55 -08002973EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002974M: Mark Gross <mark.gross@intel.com>
2975M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002976L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002977W: bluesmoke.sourceforge.net
2978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002979F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002980
2981EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002982M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002983L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002984W: bluesmoke.sourceforge.net
2985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002986F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002987
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002988EDAC-GHES
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002989M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002990L: linux-edac@vger.kernel.org
2991W: bluesmoke.sourceforge.net
2992S: Maintained
2993F: drivers/edac/ghes-edac.c
2994
Douglas Thompson6bc78402007-07-19 01:50:12 -07002995EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002997L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002998W: bluesmoke.sourceforge.net
2999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003000F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003001
3002EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003004L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003005W: bluesmoke.sourceforge.net
3006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003007F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003008
3009EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003010M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003011L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003012W: bluesmoke.sourceforge.net
3013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003014F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003015
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003016EDAC-I5400
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003017M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003018L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003019W: bluesmoke.sourceforge.net
3020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003021F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003022
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003023EDAC-I7300
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003024M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003025L: linux-edac@vger.kernel.org
3026W: bluesmoke.sourceforge.net
3027S: Maintained
3028F: drivers/edac/i7300_edac.c
3029
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003030EDAC-I7CORE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003031M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003032L: linux-edac@vger.kernel.org
3033W: bluesmoke.sourceforge.net
3034S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003035F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003036
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003037EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303039M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003040L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003041W: bluesmoke.sourceforge.net
3042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003043F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003044
3045EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003046M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003047L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003048W: bluesmoke.sourceforge.net
3049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003050F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003051
Dave Peterson0e438e32006-03-26 01:38:55 -08003052EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003053M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003054L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003055W: bluesmoke.sourceforge.net
3056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003057F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003058
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003059EDAC-SBRIDGE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003060M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003061L: linux-edac@vger.kernel.org
3062W: bluesmoke.sourceforge.net
3063S: Maintained
3064F: drivers/edac/sb_edac.c
3065
Clemens Ladischaf399172011-01-10 16:32:54 +01003066EDIROL UA-101/UA-1000 DRIVER
3067M: Clemens Ladisch <clemens@ladisch.de>
3068L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3069T: git git://git.alsa-project.org/alsa-kernel.git
3070S: Maintained
3071F: sound/usb/misc/ua101.c
3072
Matt Fleming1f7df952012-10-03 10:04:02 +01003073EXTENSIBLE FIRMWARE INTERFACE (EFI)
3074M: Matt Fleming <matt.fleming@intel.com>
3075L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003076T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003077S: Maintained
3078F: Documentation/x86/efi-stub.txt
3079F: arch/ia64/kernel/efi.c
3080F: arch/x86/boot/compressed/eboot.[ch]
3081F: arch/x86/include/asm/efi.h
3082F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003083F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003084F: include/linux/efi*.h
3085
Matt Flemingd68772b2013-02-08 16:27:24 +00003086EFI VARIABLE FILESYSTEM
3087M: Matthew Garrett <matthew.garrett@nebula.com>
3088M: Jeremy Kerr <jk@ozlabs.org>
3089M: Matt Fleming <matt.fleming@intel.com>
3090T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3091L: linux-efi@vger.kernel.org
3092S: Maintained
3093F: fs/efivarfs/
3094
Peter Jones85a00d92010-09-22 13:05:04 -07003095EFIFB FRAMEBUFFER DRIVER
3096L: linux-fbdev@vger.kernel.org
3097M: Peter Jones <pjones@redhat.com>
3098S: Maintained
3099F: drivers/video/efifb.c
3100
Josh Triplett0bee8d22006-07-30 03:03:58 -07003101EFS FILESYSTEM
3102W: http://aeschi.ch.eu.org/efs/
3103S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003104F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003105
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003106EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003107M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3108M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003109L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003111F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003112
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003113EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003114M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003115L: netdev@vger.kernel.org
3116S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003117F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003118
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003119EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003120M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003121L: linux-media@vger.kernel.org
3122W: http://linuxtv.org
3123T: git git://linuxtv.org/media_tree.git
3124S: Maintained
3125F: drivers/media/usb/em28xx/
3126
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003127EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003128M: Paul Gortmaker <paul.gortmaker@windriver.com>
3129M: Matt Mackall <mpm@selenic.com>
3130M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003131L: linux-embedded@vger.kernel.org
3132S: Maintained
3133
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003134EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003135M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003136L: linux-scsi@vger.kernel.org
3137W: http://sourceforge.net/projects/lpfcxxxx
3138S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003139F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003140
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003141ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003143S: Maintained
3144F: drivers/misc/cb710/
3145F: drivers/mmc/host/cb710-mmc.*
3146F: include/linux/cb710.h
3147
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003148ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3149M: Maxim Levitsky <maximlevitsky@gmail.com>
3150S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003151F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003152
Gavin Shanec207dc2013-06-28 21:12:14 +08003153ENHANCED ERROR HANDLING (EEH)
3154M: Gavin Shan <shangw@linux.vnet.ibm.com>
3155L: linuxppc-dev@lists.ozlabs.org
3156S: Supported
3157F: Documentation/powerpc/eeh-pci-error-recovery.txt
3158F: arch/powerpc/kernel/eeh*.c
3159
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003160EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003161M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003162S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003163T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/video/s1d13xxxfb.c
3165F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003168M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003169L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003170L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003171W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: include/linux/netfilter_bridge/
3174F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003177M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003178L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003180F: Documentation/filesystems/ext2.txt
3181F: fs/ext2/
3182F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003185M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003186M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003187M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003188L: linux-ext4@vger.kernel.org
3189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003190F: Documentation/filesystems/ext3.txt
3191F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003192
3193EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003194M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003195M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003196L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003197W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003198Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003200F: Documentation/filesystems/ext4.txt
3201F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Mimi Zoharc5532b02011-08-17 18:52:24 -04003203Extended Verification Module (EVM)
3204M: Mimi Zohar <zohar@us.ibm.com>
3205S: Supported
3206F: security/integrity/evm/
3207
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003208EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3209M: MyungJoo Ham <myungjoo.ham@samsung.com>
3210M: Chanwoo Choi <cw00.choi@samsung.com>
3211L: linux-kernel@vger.kernel.org
3212S: Maintained
3213F: drivers/extcon/
3214F: Documentation/extcon/
3215
Jingoo Han0a799512012-02-06 11:30:39 +09003216EXYNOS DP DRIVER
3217M: Jingoo Han <jg1.han@samsung.com>
3218L: linux-fbdev@vger.kernel.org
3219S: Maintained
3220F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003221F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003222
Donghwa Lee33ad3912012-03-06 11:44:58 +09003223EXYNOS MIPI DISPLAY DRIVERS
3224M: Inki Dae <inki.dae@samsung.com>
3225M: Donghwa Lee <dh09.lee@samsung.com>
3226M: Kyungmin Park <kyungmin.park@samsung.com>
3227L: linux-fbdev@vger.kernel.org
3228S: Maintained
3229F: drivers/video/exynos/exynos_mipi*
3230F: include/video/exynos_mipi*
3231
Jean Delvaree53004e2006-01-09 23:26:14 +01003232F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003234L: lm-sensors@lm-sensors.org
3235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003236F: Documentation/hwmon/f71805f
3237F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003238
Michael Büscheea977e2012-04-02 12:14:32 -03003239FC0011 TUNER DRIVER
3240M: Michael Buesch <m@bues.ch>
3241L: linux-media@vger.kernel.org
3242S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003243F: drivers/media/tuners/fc0011.h
3244F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003245
Antti Palosaari91952bc2012-10-01 12:28:46 -03003246FC2580 MEDIA DRIVER
3247M: Antti Palosaari <crope@iki.fi>
3248L: linux-media@vger.kernel.org
3249W: http://linuxtv.org/
3250W: http://palosaari.fi/linux/
3251Q: http://patchwork.linuxtv.org/project/linux-media/list/
3252T: git git://linuxtv.org/anttip/media_tree.git
3253S: Maintained
3254F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Eric Paris88b2dbd2010-08-18 12:25:50 -04003256FANOTIFY
3257M: Eric Paris <eparis@redhat.com>
3258S: Maintained
3259F: fs/notify/fanotify/
3260F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003261F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003264M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265W: http://www.farsite.co.uk/
3266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003267F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Akinobu Mitac5408b82007-04-23 14:41:20 -07003269FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003270M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003272F: Documentation/fault-injection/
3273F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003274
Robert Lovecae727d2010-02-16 12:16:00 -08003275FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3276M: Robert Love <robert.w.love@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00003277L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08003278W: www.Open-FCoE.org
3279S: Supported
3280F: drivers/scsi/libfc/
3281F: drivers/scsi/fcoe/
3282F: include/scsi/fc/
3283F: include/scsi/libfc.h
3284F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003285F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003286
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003287FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003288M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003289L: linux-fsdevel@vger.kernel.org
3290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003291F: include/linux/fcntl.h
3292F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003293F: include/uapi/linux/fcntl.h
3294F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003295F: fs/fcntl.c
3296F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003297
3298FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003299M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003300L: linux-fsdevel@vger.kernel.org
3301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003303
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003304FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003305M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003306L: lm-sensors@lm-sensors.org
3307S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003308F: drivers/hwmon/f75375s.c
3309F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003310
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003311FIREWIRE AUDIO DRIVERS
3312M: Clemens Ladisch <clemens@ladisch.de>
3313L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3314T: git git://git.alsa-project.org/alsa-kernel.git
3315S: Maintained
3316F: sound/firewire/
3317
Stefan Richtereb86ec52012-11-03 09:25:20 +01003318FIREWIRE MEDIA DRIVERS (firedtv)
3319M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3320L: linux-media@vger.kernel.org
3321L: linux1394-devel@lists.sourceforge.net
3322T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3323S: Maintained
3324F: drivers/media/firewire/
3325
Chris Boota511ce32012-04-14 17:50:35 -07003326FIREWIRE SBP-2 TARGET
3327M: Chris Boot <bootc@bootc.net>
3328L: linux-scsi@vger.kernel.org
3329L: target-devel@vger.kernel.org
3330L: linux1394-devel@lists.sourceforge.net
3331T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3332S: Maintained
3333F: drivers/target/sbp/
3334
Joe Perches7d2c86b2009-04-07 20:59:01 -07003335FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003336M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003337L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003338W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003339T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003341F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003342F: include/linux/firewire.h
3343F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003344F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003345
3346FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003347M: Ming Lei <ming.lei@canonical.com>
3348L: linux-kernel@vger.kernel.org
3349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003350F: Documentation/firmware_class/
3351F: drivers/base/firmware*.c
3352F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003353
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05003354FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003355M: Joshua Morris <josh.h.morris@us.ibm.com>
3356M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3357S: Maintained
3358F: drivers/block/rsxx/
3359
Jiri Kosina8206f662012-05-18 13:52:29 +02003360FLOPPY DRIVER
3361M: Jiri Kosina <jkosina@suse.cz>
3362T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3363S: Odd fixes
3364F: drivers/block/floppy.c
3365
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02003366FMC SUBSYSTEM
3367M: Alessandro Rubini <rubini@gnudd.com>
3368W: http://www.ohwr.org/projects/fmc-bus
3369S: Supported
3370F: drivers/fmc/
3371F: include/linux/fmc*.h
3372F: include/linux/ipmi-fru.h
3373K: fmc_d.*register
3374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003375FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003376M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003377W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003379F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003380
3381FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003382L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003383S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003384F: drivers/net/wan/dlci.c
3385F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003388M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3389M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003390L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003392Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003393T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09003394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003395F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003396F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003397F: drivers/video/
3398F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003399F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003400F: include/uapi/video/
3401F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Timur Tabia57c1882012-10-16 17:33:42 -05003403FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003404M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003405L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003406S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003407F: drivers/video/fsl-diu-fb.*
3408
Zhang Wei173acc72008-03-01 07:42:48 -07003409FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003410M: Li Yang <leoli@freescale.com>
3411M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003412L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003414F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003415
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003416FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003417M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003418L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003419L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003421F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003422
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003423FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003424M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003425L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003426L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003427S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003428F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003429F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003430
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003431FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003432M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3433M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003434L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003435L: netdev@vger.kernel.org
3436S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003437F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003438F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003439
Timur Tabid9e9d822008-04-24 08:45:26 +10003440FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003441L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003442S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003443F: arch/powerpc/sysdev/qe_lib/
3444F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003445
Joe Perchesb55ef9292009-10-26 16:49:46 -07003446FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003447M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003448L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003449L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003450S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003451F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003452
Li Yangbeaf53b2007-05-25 13:54:02 +08003453FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003454M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003455L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003456L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003457S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003458F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003459
Timur Tabid9e9d822008-04-24 08:45:26 +10003460FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003461M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003462L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003463S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003464F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003465
3466FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003467M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003468L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003469L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003470S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003471F: sound/soc/fsl/fsl*
3472F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003475M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003478F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Pavel Machek71038f52009-01-15 13:51:02 -08003480FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003481M: Pavel Machek <pavel@ucw.cz>
3482M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003483L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003485F: Documentation/power/freezing-of-tasks.txt
3486F: include/linux/freezer.h
3487F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003488
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003489FRONTSWAP API
3490M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3491L: linux-kernel@vger.kernel.org
3492S: Maintained
3493F: mm/frontswap.c
3494F: include/linux/frontswap.h
3495
David Howellsa5432f52009-04-20 15:46:45 +01003496FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003497M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003498L: linux-cachefs@redhat.com
3499S: Supported
3500F: Documentation/filesystems/caching/
3501F: fs/fscache/
3502F: include/linux/fscache*.h
3503
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003504F2FS FILE SYSTEM
3505M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3506L: linux-f2fs-devel@lists.sourceforge.net
3507W: http://en.wikipedia.org/wiki/F2FS
3508T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3509S: Maintained
3510F: Documentation/filesystems/f2fs.txt
3511F: fs/f2fs/
3512F: include/linux/f2fs_fs.h
3513
David Howells5ab7ffe2007-04-10 15:10:45 +01003514FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003515M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003517F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Jonathan Woithe20b93732008-06-11 10:14:56 +09303519FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303520M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003521L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303524
Heungjun Kim4da621b2011-11-11 08:05:33 -03003525FUJITSU M-5MO LS CAMERA ISP DRIVER
3526M: Kyungmin Park <kyungmin.park@samsung.com>
3527M: Heungjun Kim <riverful.kim@samsung.com>
3528L: linux-media@vger.kernel.org
3529S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003530F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003531F: include/media/m5mols.h
3532
Robert Gerlach2d24c492012-01-18 14:26:22 +01003533FUJITSU TABLET EXTRAS
3534M: Robert Gerlach <khnz@gmx.de>
3535L: platform-driver-x86@vger.kernel.org
3536S: Maintained
3537F: drivers/platform/x86/fujitsu-tablet.c
3538
Miklos Szeredi04578f12005-09-09 13:10:22 -07003539FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003540M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003541L: fuse-devel@lists.sourceforge.net
3542W: http://fuse.sourceforge.net/
3543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003545F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003550S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003551F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555L: linux-scsi@vger.kernel.org
3556W: http://www.icp-vortex.com/
3557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003558F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003560GEMTEK FM RADIO RECEIVER DRIVER
3561M: Hans Verkuil <hverkuil@xs4all.nl>
3562L: linux-media@vger.kernel.org
3563T: git git://linuxtv.org/media_tree.git
3564W: http://linuxtv.org
3565S: Maintained
3566F: drivers/media/radio/radio-gemtek*
3567
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003568GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003569M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003571F: drivers/i2c/busses/i2c-gpio.c
3572F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003573
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003574GENERIC GPIO I2C MULTIPLEXER DRIVER
3575M: Peter Korsgaard <peter.korsgaard@barco.com>
3576L: linux-i2c@vger.kernel.org
3577S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003578F: drivers/i2c/muxes/i2c-mux-gpio.c
3579F: include/linux/i2c-mux-gpio.h
3580F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003581
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003582GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003583M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003586F: drivers/net/wan/c101.c
3587F: drivers/net/wan/hd6457*
3588F: drivers/net/wan/hdlc*
3589F: drivers/net/wan/n2.c
3590F: drivers/net/wan/pc300too.c
3591F: drivers/net/wan/pci200syn.c
3592F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003594GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003595M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003596L: linux-arch@vger.kernel.org
3597T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3598S: Maintained
3599F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003600F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003601
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003602GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003603M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003604L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003605S: Supported
3606F: drivers/uio/uio_pci_generic.c
3607
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003608GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003609M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003610L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003611W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003612T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3613T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003615F: Documentation/filesystems/gfs2*.txt
3616F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003617F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003618
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003619GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003620M: Hansjoerg Lipp <hjlipp@web.de>
3621M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003622L: gigaset307x-common@lists.sourceforge.net
3623W: http://gigaset307x.sourceforge.net/
3624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/isdn/README.gigaset
3626F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003627F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003628
Grant Likelya0dc00b2011-02-12 01:48:14 -07003629GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02003630M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003631S: Maintained
Alexandre Courbotd15b7172013-05-26 11:50:54 +09003632L: linux-gpio@vger.kernel.org
Kukjin Kim98909cf2011-04-27 15:26:47 -07003633F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003634F: drivers/gpio/
3635F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003636F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003637
Harry Wei71a6d0a2011-05-11 15:13:33 -07003638GRE DEMULTIPLEXER DRIVER
3639M: Dmitry Kozlov <xeb@mail.ru>
3640L: netdev@vger.kernel.org
3641S: Maintained
3642F: net/ipv4/gre.c
3643F: include/net/gre.h
3644
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003645GRETH 10/100/1G Ethernet MAC device driver
3646M: Kristoffer Glembo <kristoffer@gaisler.com>
3647L: netdev@vger.kernel.org
3648S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003649F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003650
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003651GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003653L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003654T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003655S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003656F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003657
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003658GSPCA GL860 SUBDRIVER
3659M: Olivier Lorin <o.lorin@laposte.net>
3660L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003661T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003662S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003663F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003664
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003665GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003666M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003667L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003668T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003669S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003670F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003671
3672GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003673M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003674L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003675T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003676S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003677F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003678
Brian Johnson261982f2009-07-19 15:58:56 -03003679GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003680M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003681L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003682T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003683S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003684F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003685
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003686GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003687M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003688L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003689T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003690S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003691F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003692
3693GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003694M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003695L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003696T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003697S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003698F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003699
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003700STK1160 USB VIDEO CAPTURE DRIVER
3701M: Ezequiel Garcia <elezegarcia@gmail.com>
3702L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003703T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003704S: Maintained
3705F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003706
Harry Wei71a6d0a2011-05-11 15:13:33 -07003707HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3708M: Frank Seidel <frank@f-seidel.de>
3709L: platform-driver-x86@vger.kernel.org
3710W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3711S: Maintained
3712F: drivers/platform/x86/hdaps.c
3713
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003714HDPVR USB VIDEO ENCODER DRIVER
3715M: Hans Verkuil <hverkuil@xs4all.nl>
3716L: linux-media@vger.kernel.org
3717T: git git://linuxtv.org/media_tree.git
3718W: http://linuxtv.org
3719S: Odd Fixes
3720F: drivers/media/usb/hdpvr
3721
Harry Wei71a6d0a2011-05-11 15:13:33 -07003722HWPOISON MEMORY FAILURE HANDLING
3723M: Andi Kleen <andi@firstfloor.org>
3724L: linux-mm@kvack.org
3725T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3726S: Maintained
3727F: mm/memory-failure.c
3728F: mm/hwpoison-inject.c
3729
3730HYPERVISOR VIRTUAL CONSOLE DRIVER
3731L: linuxppc-dev@lists.ozlabs.org
3732S: Odd Fixes
3733F: drivers/tty/hvc/
3734
Michael Buesch844dd052006-06-26 00:24:59 -07003735HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003736M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003737M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003738L: lm-sensors@lm-sensors.org
3739W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003740T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003741T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003742S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003743F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003744F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003745F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003746
3747HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003748M: Matt Mackall <mpm@selenic.com>
3749M: Herbert Xu <herbert@gondor.apana.org.au>
3750S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003751F: Documentation/hw_random.txt
3752F: drivers/char/hw_random/
3753F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003754
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003755HARDWARE SPINLOCK CORE
3756M: Ohad Ben-Cohen <ohad@wizery.com>
3757S: Maintained
3758F: Documentation/hwspinlock.txt
3759F: drivers/hwspinlock/hwspinlock_*
3760F: include/linux/hwspinlock.h
3761
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003763L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003765F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
Antti Palosaari91952bc2012-10-01 12:28:46 -03003767HD29L2 MEDIA DRIVER
3768M: Antti Palosaari <crope@iki.fi>
3769L: linux-media@vger.kernel.org
3770W: http://linuxtv.org/
3771W: http://palosaari.fi/linux/
3772Q: http://patchwork.linuxtv.org/project/linux-media/list/
3773T: git git://linuxtv.org/anttip/media_tree.git
3774S: Maintained
3775F: drivers/media/dvb-frontends/hd29l2*
3776
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003777HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003779L: iss_storagedev@hp.com
3780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: Documentation/blockdev/cpqarray.txt
3782F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003783
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003784HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003785M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003786L: iss_storagedev@hp.com
3787S: Supported
3788F: Documentation/scsi/hpsa.txt
3789F: drivers/scsi/hpsa*.[ch]
3790F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003791F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003792
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003793HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003795L: iss_storagedev@hp.com
3796S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003797F: Documentation/blockdev/cciss.txt
3798F: drivers/block/cciss*
3799F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003800F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003803L: linux-fsdevel@vger.kernel.org
3804S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003805F: Documentation/filesystems/hfs.txt
3806F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
3808HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003809M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810L: linux-nvidia@lists.surfsouth.com
3811W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003813F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003815HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003816M: Pavel Machek <pavel@ucw.cz>
3817M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003818L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003820F: arch/x86/power/
3821F: drivers/base/power/
3822F: kernel/power/
3823F: include/linux/suspend.h
3824F: include/linux/freezer.h
3825F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003826F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003827
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003828HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003829M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003830L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003831T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: drivers/hid/
3834F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003835F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003836
Ingo Molnar38bed542007-02-22 09:09:34 +01003837HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003838M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003839T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: Documentation/timers/
3842F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003843F: kernel/time/clockevents.c
3844F: kernel/time/tick*.*
3845F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003846F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003847F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003851S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003852F: drivers/net/hamradio/dmascc.c
3853F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003855HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003856M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003857W: http://www.highpoint-tech.com
3858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003859F: Documentation/scsi/hptiop.txt
3860F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003861
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864L: linux-hippi@sunsite.dk
3865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003867F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003868F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003869F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Jouni Malinenff1d2762005-05-12 22:54:16 -04003871HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003873L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003874L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003875W: http://hostap.epitest.fi/
3876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003877F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003878
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003879HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003880L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003881S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003882F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003883
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003884HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003885M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003886S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003887F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003888
Joe Perches7d2c86b2009-04-07 20:59:01 -07003889HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: Documentation/timers/hpet.txt
3893F: drivers/char/hpet.c
3894F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003895F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003896
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003897HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003898M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: arch/x86/kernel/hpet.c
3901F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003907F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Joe Perches7d2c86b2009-04-07 20:59:01 -07003909HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003910M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003911W: http://www.pharscape.org
3912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003914
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003915HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003917L: linux-input@vger.kernel.org
3918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003920
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003922M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003924F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003926Hyper-V CORE AND DRIVERS
3927M: K. Y. Srinivasan <kys@microsoft.com>
3928M: Haiyang Zhang <haiyangz@microsoft.com>
3929L: devel@linuxdriverproject.org
3930S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07003931F: arch/x86/include/asm/mshyperv.h
3932F: arch/x86/include/uapi/asm/hyperv.h
3933F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003934F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07003935F: drivers/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003936F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07003937F: drivers/scsi/storvsc_drv.c
3938F: drivers/video/hyperv_fb.c
3939F: include/linux/hyperv.h
3940F: tools/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003941
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003942I2C OVER PARALLEL PORT
3943M: Jean Delvare <khali@linux-fr.org>
3944L: linux-i2c@vger.kernel.org
3945S: Maintained
3946F: Documentation/i2c/busses/i2c-parport
3947F: Documentation/i2c/busses/i2c-parport-light
3948F: drivers/i2c/busses/i2c-parport.c
3949F: drivers/i2c/busses/i2c-parport-light.c
3950
3951I2C/SMBUS CONTROLLER DRIVERS FOR PC
3952M: Jean Delvare <khali@linux-fr.org>
3953L: linux-i2c@vger.kernel.org
3954S: Maintained
3955F: Documentation/i2c/busses/i2c-ali1535
3956F: Documentation/i2c/busses/i2c-ali1563
3957F: Documentation/i2c/busses/i2c-ali15x3
3958F: Documentation/i2c/busses/i2c-amd756
3959F: Documentation/i2c/busses/i2c-amd8111
3960F: Documentation/i2c/busses/i2c-i801
3961F: Documentation/i2c/busses/i2c-nforce2
3962F: Documentation/i2c/busses/i2c-piix4
3963F: Documentation/i2c/busses/i2c-sis5595
3964F: Documentation/i2c/busses/i2c-sis630
3965F: Documentation/i2c/busses/i2c-sis96x
3966F: Documentation/i2c/busses/i2c-via
3967F: Documentation/i2c/busses/i2c-viapro
3968F: drivers/i2c/busses/i2c-ali1535.c
3969F: drivers/i2c/busses/i2c-ali1563.c
3970F: drivers/i2c/busses/i2c-ali15x3.c
3971F: drivers/i2c/busses/i2c-amd756.c
3972F: drivers/i2c/busses/i2c-amd756-s4882.c
3973F: drivers/i2c/busses/i2c-amd8111.c
3974F: drivers/i2c/busses/i2c-i801.c
3975F: drivers/i2c/busses/i2c-isch.c
3976F: drivers/i2c/busses/i2c-nforce2.c
3977F: drivers/i2c/busses/i2c-nforce2-s4985.c
3978F: drivers/i2c/busses/i2c-piix4.c
3979F: drivers/i2c/busses/i2c-sis5595.c
3980F: drivers/i2c/busses/i2c-sis630.c
3981F: drivers/i2c/busses/i2c-sis96x.c
3982F: drivers/i2c/busses/i2c-via.c
3983F: drivers/i2c/busses/i2c-viapro.c
3984
Neil Hormancb7f07a2013-02-10 11:59:03 -05003985I2C/SMBUS ISMT DRIVER
3986M: Seth Heasley <seth.heasley@intel.com>
3987M: Neil Horman <nhorman@tuxdriver.com>
3988L: linux-i2c@vger.kernel.org
3989F: drivers/i2c/busses/i2c-ismt.c
3990F: Documentation/i2c/busses/i2c-ismt
3991
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003992I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003993M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003994L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003995S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003996F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003997
Jean Delvare5b543962005-08-15 19:51:02 +02003998I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003999M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01004000L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01004001W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01004002T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004004F: Documentation/i2c/
4005F: drivers/i2c/
4006F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01004007F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004008F: include/uapi/linux/i2c.h
4009F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
Jean Delvared85c8a6a2012-11-13 22:27:19 +01004011I2C-TAOS-EVM DRIVER
4012M: Jean Delvare <khali@linux-fr.org>
4013L: linux-i2c@vger.kernel.org
4014S: Maintained
4015F: Documentation/i2c/busses/i2c-taos-evm
4016F: drivers/i2c/busses/i2c-taos-evm.c
4017
Till Harbaume8c76ee2007-05-01 23:26:35 +02004018I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01004020L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07004021W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02004022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004023F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07004026M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004028F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07004032T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033S: Maintained
4034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Tony Luck <tony.luck@intel.com>
4037M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07004039T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004041F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Kent Yoder956c2032012-09-07 04:17:01 +08004043IBM Power in-Nest Crypto Acceleration
Kent Yoder5b88e272013-05-22 10:56:58 -05004044M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4045M: Fionnuala Gunter <fin@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08004046L: linux-crypto@vger.kernel.org
4047S: Supported
4048F: drivers/crypto/nx/
4049
Seth Jennings0e16aaf2012-07-19 09:42:40 -05004050IBM Power 842 compression accelerator
4051M: Robert Jennings <rcj@linux.vnet.ibm.com>
4052S: Supported
4053F: drivers/crypto/nx/nx-842.c
4054F: include/linux/nx842.h
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
Santiago Leon9d348af2010-09-03 18:29:53 +00004061IBM Power Virtual Ethernet Device Driver
4062M: Santiago Leon <santil@linux.vnet.ibm.com>
4063L: netdev@vger.kernel.org
4064S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004065F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00004066
Robert Jennings4b7652c2012-07-31 12:34:36 -05004067IBM Power Virtual SCSI/FC Device Drivers
4068M: Robert Jennings <rcj@linux.vnet.ibm.com>
4069L: linux-scsi@vger.kernel.org
4070S: Supported
4071F: drivers/scsi/ibmvscsi/
4072X: drivers/scsi/ibmvscsi/ibmvstgt.c
4073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074IBM ServeRAID RAID DRIVER
4075P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004079F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004081ICH LPC AND GPIO DRIVER
4082M: Peter Tyser <ptyser@xes-inc.com>
4083S: Maintained
4084F: drivers/mfd/lpc_ich.c
4085F: drivers/gpio/gpio-ich.c
4086
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004087IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004088M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004090Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004091T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004093F: Documentation/ide/
4094F: drivers/ide/
4095F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Ike Panhc6cb8c132011-08-25 22:28:45 +08004097IDEAPAD LAPTOP EXTRAS DRIVER
4098M: Ike Panhc <ike.pan@canonical.com>
4099L: platform-driver-x86@vger.kernel.org
4100W: http://launchpad.net/ideapad-laptop
4101S: Maintained
4102F: drivers/platform/x86/ideapad-laptop.c
4103
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004104IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004105M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004106L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004108F: Documentation/cdrom/ide-cd
4109F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Andy Henroid27471fd2008-10-09 11:45:22 -07004111IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004113L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004115F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004116
Sergey Lapin02cf2282009-06-08 12:18:50 +00004117IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004118M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004119M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004120L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004121W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004122T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004123S: Maintained
4124F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004125F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004126F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004127
Sean Young40ad4a32012-11-19 10:32:53 -03004128IGUANAWORKS USB IR TRANSCEIVER
4129M: Sean Young <sean@mess.org>
4130L: linux-media@vger.kernel.org
4131S: Maintained
4132F: drivers/media/rc/iguanair.c
4133
Ameya Palande9545f862012-01-10 09:00:58 -08004134IIO SUBSYSTEM AND DRIVERS
4135M: Jonathan Cameron <jic23@cam.ac.uk>
4136L: linux-iio@vger.kernel.org
4137S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004138F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004139F: drivers/staging/iio/
4140
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004141IKANOS/ADI EAGLE ADSL USB DRIVER
4142M: Matthieu Castet <castet.matthieu@free.fr>
4143M: Stanislaw Gruszka <stf_xl@wp.pl>
4144S: Maintained
4145F: drivers/usb/atm/ueagle-atm.c
4146
Guenter Roecke89ab512013-03-08 08:13:09 -08004147INA209 HARDWARE MONITOR DRIVER
4148M: Guenter Roeck <linux@roeck-us.net>
4149L: lm-sensors@lm-sensors.org
4150S: Maintained
4151F: Documentation/hwmon/ina209
4152F: Documentation/devicetree/bindings/i2c/ina209.txt
4153F: drivers/hwmon/ina209.c
4154
4155INA2XX HARDWARE MONITOR DRIVER
4156M: Guenter Roeck <linux@roeck-us.net>
4157L: lm-sensors@lm-sensors.org
4158S: Maintained
4159F: Documentation/hwmon/ina2xx
4160F: drivers/hwmon/ina2xx.c
4161F: include/linux/platform_data/ina2xx.h
4162
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004163INDUSTRY PACK SUBSYSTEM (IPACK)
4164M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4165M: Jens Taprogge <jens.taprogge@taprogge.org>
4166M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4167L: industrypack-devel@lists.sourceforge.net
4168W: http://industrypack.sourceforge.net
4169S: Maintained
4170F: drivers/ipack/
4171
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004172INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zohar89121762013-06-20 07:43:40 -04004174M: Dmitry Kasatkin <d.kasatkin@samsung.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004176F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004177
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004179L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004180S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004181F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
4183INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004184M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004185M: Sean Hefty <sean.hefty@intel.com>
4186M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004187L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004188W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004189Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004190T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004192F: Documentation/infiniband/
4193F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004194F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Robert Lovec9f04f52005-07-15 12:21:07 -04004196INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: John McCutchan <john@johnmccutchan.com>
4198M: Robert Love <rlove@rlove.org>
4199M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/filesystems/inotify.txt
4202F: fs/notify/inotify/
4203F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004204F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004205
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004206INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4208M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004209L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004210Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004211T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004213F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004214F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004215F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004216F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004217
Henrik Rydberg3267a872010-06-24 19:10:40 -07004218INPUT MULTITOUCH (MT) PROTOCOL
4219M: Henrik Rydberg <rydberg@euromail.se>
4220L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004221T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004222S: Maintained
4223F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004224F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004225K: \b(ABS|SYN)_MT_
4226
Dave Jiang4ac13e12011-07-29 17:16:55 -07004227INTEL C600 SERIES SAS CONTROLLER DRIVER
4228M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004229M: Lukasz Dorau <lukasz.dorau@intel.com>
4230M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004231M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004232L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004233T: git git://git.code.sf.net/p/intel-sas/isci
4234S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004235F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004236
Len Brown26717172010-03-08 14:07:30 -05004237INTEL IDLE DRIVER
4238M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004239L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004240T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004241S: Supported
4242F: drivers/idle/intel_idle.c
4243
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004244INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004245M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004246L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/fb/intelfb.txt
4249F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004252M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004253L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004255F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304257INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004258M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004259L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304260W: http://www.lesswatts.org/projects/acpi/
4261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004262F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304263
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004265M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004267F: arch/x86/kernel/microcode_core.c
4268F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004270INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004271M: Dan Williams <djbw@fb.com>
4272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004273F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004274
David Woodhouse6c8909b2008-10-18 16:12:17 +01004275INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004276M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004277L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004278T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004279S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004280F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004281F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004282
Dan Williamsb3e5f262007-08-07 10:26:35 -07004283INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004284M: Dan Williams <djbw@fb.com>
4285S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004287
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004288INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004291F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4292F: arch/arm/mach-ixp4xx/include/mach/npe.h
4293F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4294F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004295F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004296F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004297
Michael Buesch844dd052006-06-26 00:24:59 -07004298INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004299M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004302
Jeff Kirsher0d164402010-10-05 01:15:17 +00004303INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4305M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4306M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004307M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4308M: Don Skidmore <donald.c.skidmore@intel.com>
4309M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004310M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004311M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004312M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004313M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004314L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004315W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004316W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004317T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4318T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004320F: Documentation/networking/e100.txt
4321F: Documentation/networking/e1000.txt
4322F: Documentation/networking/e1000e.txt
4323F: Documentation/networking/igb.txt
4324F: Documentation/networking/igbvf.txt
4325F: Documentation/networking/ixgb.txt
4326F: Documentation/networking/ixgbe.txt
4327F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004328F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004330INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4331M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004332L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004334F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004336F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004337
Shane Wang4bd96a72010-03-10 14:36:10 +08004338INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004339M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4340M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004341M: Shane Wang <shane.wang@intel.com>
4342L: tboot-devel@lists.sourceforge.net
4343W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004344T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004345S: Supported
4346F: Documentation/intel_txt.txt
4347F: include/linux/tboot.h
4348F: arch/x86/kernel/tboot.c
4349
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004350INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004351M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004352M: linux-wimax@intel.com
4353L: wimax@linuxwimax.org
4354S: Supported
4355W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004356F: Documentation/wimax/README.i2400m
4357F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004358F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004359
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004360INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4361M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004362L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004363S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004364F: drivers/net/wireless/iwlegacy/
4365
Zhu Yib481de92007-09-25 17:54:57 -07004366INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004367M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004368M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004369M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004370L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004371W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004372T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004374F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004375
Tomas Winklerde8fe022012-05-09 16:39:02 +03004376INTEL MANAGEMENT ENGINE (mei)
4377M: Tomas Winkler <tomas.winkler@intel.com>
4378L: linux-kernel@vger.kernel.org
4379S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004380F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004381F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004382F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004383
Ralf Baechlecb109a02007-08-30 23:56:30 -07004384IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004385M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386L: linux-mips@linux-mips.org
4387S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004388F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Ralf Baechlecb109a02007-08-30 23:56:30 -07004390IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004391M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004392L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004393S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004394F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004395
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004396IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Francois Romieu1202d6f2007-09-17 17:13:55 -07004401IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Francois Romieu <romieu@fr.zoreil.com>
4403M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004404L: netdev@vger.kernel.org
4405S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004406F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004407
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004408IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004409M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004410L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004412F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004413
Corey Minyard4409ebe2006-04-20 02:43:12 -07004414IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004415M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004416L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004417W: http://openipmi.sourceforge.net/
4418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004419F: Documentation/IPMI.txt
4420F: drivers/char/ipmi/
4421F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004422F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004423
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004424IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004425M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004426L: linux-scsi@vger.kernel.org
4427W: http://www.adaptec.com/
4428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004429F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004430
4431IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004432M: Wensong Zhang <wensong@linux-vs.org>
4433M: Simon Horman <horms@verge.net.au>
4434M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004435L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004436L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004438F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004439F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004440F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004441F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Randy Dunlape7839f22008-10-12 16:11:45 -07004443IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Jiri Kosina <jkosina@suse.cz>
4445M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004446S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004447F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004448
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004449IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004451L: netdev@vger.kernel.org
4452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004454F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004455F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004456
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004459L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004460L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004462S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004463T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004464F: Documentation/networking/irda.txt
4465F: drivers/net/irda/
4466F: include/net/irda/
4467F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004469IRQ SUBSYSTEM
4470M: Thomas Gleixner <tglx@linutronix.de>
4471S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004472T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004473F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004474F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004475
Grant Likely7ab3a832012-02-14 14:06:47 -07004476IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4477M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004478S: Maintained
4479F: Documentation/IRQ-domain.txt
4480F: include/linux/irqdomain.h
4481F: kernel/irq/irqdomain.c
4482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004483ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004486F: Documentation/isapnp.txt
4487F: drivers/pnp/isapnp/
4488F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004489
Hans Verkuild39b8422012-11-23 07:07:02 -03004490ISA RADIO MODULE
4491M: Hans Verkuil <hverkuil@xs4all.nl>
4492L: linux-media@vger.kernel.org
4493T: git git://linuxtv.org/media_tree.git
4494W: http://linuxtv.org
4495S: Maintained
4496F: drivers/media/radio/radio-isa*
4497
Harry Wei71a6d0a2011-05-11 15:13:33 -07004498iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4499M: Peter Jones <pjones@redhat.com>
4500M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4501S: Maintained
4502F: drivers/firmware/iscsi_ibft*
4503
Mike Christie14816b1e2007-11-28 16:22:06 -08004504ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004506L: open-iscsi@googlegroups.com
4507W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004508T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004510F: drivers/scsi/*iscsi*
4511F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004512
Or Gerlitz1e65eb42013-05-08 12:21:19 +00004513ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
4514M: Or Gerlitz <ogerlitz@mellanox.com>
4515M: Roi Dayan <roid@mellanox.com>
4516L: linux-rdma@vger.kernel.org
4517S: Supported
4518W: http://www.openfabrics.org
4519W: www.open-iscsi.org
4520Q: http://patchwork.kernel.org/project/linux-rdma/list/
4521F: drivers/infiniband/ulp/iser
4522
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004524M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004525L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004526L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004528T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: Documentation/isdn/
4531F: drivers/isdn/
4532F: include/linux/isdn.h
4533F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004534F: include/uapi/linux/isdn.h
4535F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
4537ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004539L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540W: http://www.melware.de
4541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004542F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Jean Delvared6248702010-03-05 22:17:20 +01004544IT87 HARDWARE MONITORING DRIVER
4545M: Jean Delvare <khali@linux-fr.org>
4546L: lm-sensors@lm-sensors.org
4547S: Maintained
4548F: Documentation/hwmon/it87
4549F: drivers/hwmon/it87.c
4550
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004551IT913X MEDIA DRIVER
4552M: Malcolm Priestley <tvboxspy@gmail.com>
4553L: linux-media@vger.kernel.org
4554W: http://linuxtv.org/
4555Q: http://patchwork.linuxtv.org/project/linux-media/list/
4556S: Maintained
4557F: drivers/media/usb/dvb-usb-v2/it913x*
4558
4559IT913X FE MEDIA DRIVER
4560M: Malcolm Priestley <tvboxspy@gmail.com>
4561L: linux-media@vger.kernel.org
4562W: http://linuxtv.org/
4563Q: http://patchwork.linuxtv.org/project/linux-media/list/
4564S: Maintained
4565F: drivers/media/dvb-frontends/it913x-fe*
4566
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004567IT913X MEDIA DRIVER
4568M: Antti Palosaari <crope@iki.fi>
4569L: linux-media@vger.kernel.org
4570W: http://linuxtv.org/
4571W: http://palosaari.fi/linux/
4572Q: http://patchwork.linuxtv.org/project/linux-media/list/
4573T: git git://linuxtv.org/anttip/media_tree.git
4574S: Maintained
4575F: drivers/media/tuners/it913x*
4576
Hans Verkuil91821ff2007-12-02 09:35:33 -03004577IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004578M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004579L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004580L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004581T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004582W: http://www.ivtvdriver.org
4583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004584F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004585F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004586F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004587
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004588IX2505V MEDIA DRIVER
4589M: Malcolm Priestley <tvboxspy@gmail.com>
4590L: linux-media@vger.kernel.org
4591W: http://linuxtv.org/
4592Q: http://patchwork.linuxtv.org/project/linux-media/list/
4593S: Maintained
4594F: drivers/media/dvb-frontends/ix2505v*
4595
Guenter Roeck4453d732010-08-09 17:21:08 -07004596JC42.4 TEMPERATURE SENSOR DRIVER
4597M: Guenter Roeck <linux@roeck-us.net>
4598L: lm-sensors@lm-sensors.org
4599S: Maintained
4600F: drivers/hwmon/jc42.c
4601F: Documentation/hwmon/jc42
4602
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004603JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004604M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004605L: jfs-discussion@lists.sourceforge.net
4606W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004607T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004609F: Documentation/filesystems/jfs.txt
4610F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004611
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004612JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004613M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004614L: netdev@vger.kernel.org
4615S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004616F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004619M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004620L: linux-mtd@lists.infradead.org
4621W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004623F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004624F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
Josh Triplettde456d32006-07-30 03:04:00 -07004626JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004627M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004628M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004629L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004630S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004631F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004632F: include/linux/jbd.h
4633
4634JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4635M: "Theodore Ts'o" <tytso@mit.edu>
4636L: linux-ext4@vger.kernel.org
4637S: Maintained
4638F: fs/jbd2/
4639F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004640
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004641JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03004642M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004643L: linux-serial@vger.kernel.org
4644S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004645F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004646
Clemens Ladischaf399172011-01-10 16:32:54 +01004647K10TEMP HARDWARE MONITORING DRIVER
4648M: Clemens Ladisch <clemens@ladisch.de>
4649L: lm-sensors@lm-sensors.org
4650S: Maintained
4651F: Documentation/hwmon/k10temp
4652F: drivers/hwmon/k10temp.c
4653
Rudolf Marek4660cb32006-10-08 22:01:26 +02004654K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004655M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004656L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004658F: Documentation/hwmon/k8temp
4659F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
4661KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004662M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004663L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004664S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004665F: Documentation/kbuild/kconfig-language.txt
4666F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
Vivek Goyalea6c2082006-05-20 14:59:55 -07004668KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Vivek Goyal <vgoyal@redhat.com>
4670M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004671L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004672W: http://lse.sourceforge.net/kdump/
4673S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004674F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004675
Hans Verkuilf41bf022012-11-23 07:04:36 -03004676KEENE FM RADIO TRANSMITTER DRIVER
4677M: Hans Verkuil <hverkuil@xs4all.nl>
4678L: linux-media@vger.kernel.org
4679T: git git://linuxtv.org/media_tree.git
4680W: http://linuxtv.org
4681S: Maintained
4682F: drivers/media/radio/radio-keene*
4683
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004685M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004686L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004688F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
Michal Marek70fb7ba2010-01-29 14:22:43 +01004690KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004691M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004692T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4693T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004694L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004696F: Documentation/kbuild/
4697F: Makefile
4698F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004699F: scripts/basic/
4700F: scripts/mk*
4701F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
4703KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004704L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004705W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004706S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004708KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004709M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004710L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004713F: fs/nfsd/
4714F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004715F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004716F: fs/lockd/
4717F: fs/nfs_common/
4718F: net/sunrpc/
4719F: include/linux/lockd/
4720F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004721F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722
Avi Kivity426d62e2006-12-13 00:34:03 -08004723KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004724M: Gleb Natapov <gleb@redhat.com>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004725M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004726L: kvm@vger.kernel.org
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004727W: http://linux-kvm.org
Avi Kivity426d62e2006-12-13 00:34:03 -08004728S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004729F: Documentation/*/kvm*.txt
4730F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07004731F: arch/*/kvm/
4732F: arch/*/include/asm/kvm*
4733F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004734F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004735F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004736
Joerg Roedelad8003d2008-09-10 20:01:07 +02004737KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004738M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004739L: kvm@vger.kernel.org
4740W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004742F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004743F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004744
Hollis Blanchard513014b2008-04-16 23:28:08 -05004745KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004746M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004747L: kvm-ppc@vger.kernel.org
4748W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004749T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004751F: arch/powerpc/include/asm/kvm*
4752F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004753
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004754KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004756L: kvm-ia64@vger.kernel.org
4757W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004759F: Documentation/ia64/kvm.txt
4760F: arch/ia64/include/asm/kvm*
4761F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004762
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004763KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004764M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004765M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004766M: linux390@de.ibm.com
4767L: linux-s390@vger.kernel.org
4768W: http://www.ibm.com/developerworks/linux/linux390/
4769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004770F: Documentation/s390/kvm.txt
4771F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004772F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004773F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004774
Christoffer Dalla7494742013-01-20 18:42:26 -05004775KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004776M: Christoffer Dall <christoffer.dall@linaro.org>
Christoffer Dalla7494742013-01-20 18:42:26 -05004777L: kvmarm@lists.cs.columbia.edu
4778W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004779S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05004780F: arch/arm/include/uapi/asm/kvm*
4781F: arch/arm/include/asm/kvm*
4782F: arch/arm/kvm/
4783
Marc Zyngier6394a3e2013-04-02 17:49:40 +01004784KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
4785M: Marc Zyngier <marc.zyngier@arm.com>
4786L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4787L: kvmarm@lists.cs.columbia.edu
4788S: Maintained
4789F: arch/arm64/include/uapi/asm/kvm*
4790F: arch/arm64/include/asm/kvm*
4791F: arch/arm64/kvm/
4792
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004793KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004795W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004796L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004799F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004800F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004801
David Howellse9714612010-03-29 23:42:09 +01004802KEYS/KEYRINGS:
4803M: David Howells <dhowells@redhat.com>
4804L: keyrings@linux-nfs.org
4805S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004806F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004807F: include/linux/key.h
4808F: include/linux/key-type.h
4809F: include/keys/
4810F: security/keys/
4811
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004812KEYS-TRUSTED
4813M: David Safford <safford@watson.ibm.com>
4814M: Mimi Zohar <zohar@us.ibm.com>
4815L: linux-security-module@vger.kernel.org
4816L: keyrings@linux-nfs.org
4817S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004818F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004819F: include/keys/trusted-type.h
4820F: security/keys/trusted.c
4821F: security/keys/trusted.h
4822
4823KEYS-ENCRYPTED
4824M: Mimi Zohar <zohar@us.ibm.com>
4825M: David Safford <safford@watson.ibm.com>
4826L: linux-security-module@vger.kernel.org
4827L: keyrings@linux-nfs.org
4828S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004829F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004830F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004831F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004832
Jason Wessel5b778da2010-05-20 21:04:28 -05004833KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004834M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004835W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004836L: kgdb-bugreport@lists.sourceforge.net
4837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: Documentation/DocBook/kgdb.tmpl
4839F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004840F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004841F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004842F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004843F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004844
Pekka Enberg456db8c2008-04-28 22:47:29 +03004845KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004846M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004847M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004848S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004849F: Documentation/kmemcheck.txt
4850F: arch/x86/include/asm/kmemcheck.h
4851F: arch/x86/mm/kmemcheck/
4852F: include/linux/kmemcheck.h
4853F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004854
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004855KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004857S: Maintained
4858F: Documentation/kmemleak.txt
4859F: include/linux/kmemleak.h
4860F: mm/kmemleak.c
4861F: mm/kmemleak-test.c
4862
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004863KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4865M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4866M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004867M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/kprobes.txt
4870F: include/linux/kprobes.h
4871F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004872
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004873KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004875W: http://miguelojeda.es/auxdisplay.htm
4876W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004878F: Documentation/auxdisplay/ks0108
4879F: drivers/auxdisplay/ks0108.c
4880F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004884S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004885F: Documentation/networking/lapb-module.txt
4886F: include/*/lapb.h
4887F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
4889LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004890M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891L: linux-scsi@vger.kernel.org
4892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004893F: Documentation/scsi/53c700.txt
4894F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
Richard Purdie263de9b2006-05-15 09:44:16 -07004896LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004897M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004899L: linux-leds@vger.kernel.org
4900T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004902F: drivers/leds/
4903F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004904
Jean Delvareb0461a42011-06-15 15:08:46 -07004905LEGACY EEPROM DRIVER
4906M: Jean Delvare <khali@linux-fr.org>
4907S: Maintained
4908F: Documentation/misc-devices/eeprom
4909F: drivers/misc/eeprom/eeprom.c
4910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913L: legousb-devel@lists.sourceforge.net
4914W: http://legousb.sourceforge.net/
4915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004916F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
Michael Krufky055616a2012-10-02 00:56:06 -03004918LG2160 MEDIA DRIVER
4919M: Michael Krufky <mkrufky@linuxtv.org>
4920L: linux-media@vger.kernel.org
4921W: http://linuxtv.org/
4922W: http://github.com/mkrufky
4923Q: http://patchwork.linuxtv.org/project/linux-media/list/
4924T: git git://linuxtv.org/mkrufky/tuners.git
4925S: Maintained
4926F: drivers/media/dvb-frontends/lg2160.*
4927
Michael Krufky6f0e7722012-10-02 00:56:00 -03004928LGDT3305 MEDIA DRIVER
4929M: Michael Krufky <mkrufky@linuxtv.org>
4930L: linux-media@vger.kernel.org
4931W: http://linuxtv.org/
4932W: http://github.com/mkrufky
4933Q: http://patchwork.linuxtv.org/project/linux-media/list/
4934T: git git://linuxtv.org/mkrufky/tuners.git
4935S: Maintained
4936F: drivers/media/dvb-frontends/lgdt3305.*
4937
Rusty Russell568a17f2007-10-25 14:12:24 +10004938LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004939M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004940L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004941W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004942S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004943F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004944F: arch/x86/lguest/
4945F: drivers/lguest/
4946F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004947F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004948
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004950M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951W: http://www.ibm.com/linux/ltc/projects/ppc
4952S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004953F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004955LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004956M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4957M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004959L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004960Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004961T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004963F: Documentation/powerpc/
4964F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
4966LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004967M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004969L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004971F: arch/powerpc/platforms/powermac/
4972F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
Grant Likely77a76362008-07-12 12:11:43 -06004974LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004975M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004976L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004977T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004979F: arch/powerpc/platforms/512x/
4980F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
4982LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004983M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004984M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004986L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004987T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004989F: arch/powerpc/platforms/40x/
4990F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Grant Likely260c02a2007-10-02 12:15:34 +10004992LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004993L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01004994S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00004995F: arch/powerpc/*/*virtex*
4996F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Tom Rinie93adf12005-07-26 12:49:53 -07004998LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Vitaly Bordug <vitb@kernel.crashing.org>
5000M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07005001W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005002L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07005003S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07005004F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07005005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07005007M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01005008W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005009L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01005010S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005011F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03005012F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
Olof Johanssonab06ff32006-09-06 14:44:54 -05005014LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005016L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00005017S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005018F: arch/powerpc/platforms/pasemi/
5019F: drivers/*/*pasemi*
5020F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05005021
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005023M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08005024L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025S: Supported
5026
Harry Weia23ce6d2011-02-11 16:52:20 +01005027LIS3LV02D ACCELEROMETER DRIVER
5028M: Eric Piel <eric.piel@tremplin-utc.net>
5029S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01005030F: Documentation/misc-devices/lis3lv02d
5031F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07005032F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01005033
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005034LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07005035M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005037F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005038F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07005039F: include/net/llc*
5040F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005041
Adrien Demarez4e233cb2009-12-09 20:35:50 +01005042LM73 HARDWARE MONITOR DRIVER
5043M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
5044L: lm-sensors@lm-sensors.org
5045S: Maintained
5046F: drivers/hwmon/lm73.c
5047
Jean Delvare156e2d12011-07-25 21:46:11 +02005048LM78 HARDWARE MONITOR DRIVER
5049M: Jean Delvare <khali@linux-fr.org>
5050L: lm-sensors@lm-sensors.org
5051S: Maintained
5052F: Documentation/hwmon/lm78
5053F: drivers/hwmon/lm78.c
5054
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005056M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005057L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005059F: Documentation/hwmon/lm83
5060F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
5062LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005063M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005064L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: Documentation/hwmon/lm90
5067F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
Guenter Roeck917cc4e2013-05-19 20:44:27 -07005069LM95234 HARDWARE MONITOR DRIVER
5070M: Guenter Roeck <linux@roeck-us.net>
5071L: lm-sensors@lm-sensors.org
5072S: Maintained
5073F: Documentation/hwmon/lm95234
5074F: drivers/hwmon/lm95234.c
5075
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005076LME2510 MEDIA DRIVER
5077M: Malcolm Priestley <tvboxspy@gmail.com>
5078L: linux-media@vger.kernel.org
5079W: http://linuxtv.org/
5080Q: http://patchwork.linuxtv.org/project/linux-media/list/
5081S: Maintained
5082F: drivers/media/usb/dvb-usb-v2/lmedm04*
5083
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005084LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07005085M: Peter Zijlstra <peterz@infradead.org>
5086M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005087T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005089F: Documentation/lockdep*.txt
5090F: Documentation/lockstat.txt
5091F: include/linux/lockdep.h
5092F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005093
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005094LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005095M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005096L: linux-ntfs-dev@lists.sourceforge.net
5097W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005100F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
Joern Engelef6ada32009-11-20 22:17:12 +01005102LogFS
5103M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305104M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005105L: logfs@logfs.org
5106W: logfs.org
5107S: Maintained
5108F: fs/logfs/
5109
Roland Stiggeb62d7942013-04-02 19:37:11 +02005110LPC32XX MACHINE SUPPORT
5111M: Roland Stigge <stigge@antcom.de>
5112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5113S: Maintained
5114F: arch/arm/mach-lpc32xx/
5115
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005116LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305117M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5118M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005119M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005120L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005121L: linux-scsi@vger.kernel.org
5122W: http://www.lsilogic.com/support
5123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005124F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305125F: drivers/scsi/mpt2sas/
5126F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005127
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130L: linux-scsi@vger.kernel.org
5131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005132F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
Guenter Roecke5f5c992010-06-25 11:59:54 -07005134LTC4261 HARDWARE MONITOR DRIVER
5135M: Guenter Roeck <linux@roeck-us.net>
5136L: lm-sensors@lm-sensors.org
5137S: Maintained
5138F: Documentation/hwmon/ltc4261
5139F: drivers/hwmon/ltc4261.c
5140
Mike Frysinger81365c32008-10-29 14:01:12 -07005141LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005142M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005143M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005144M: Cyril Hrubis <chrubis@suse.cz>
5145M: Caspar Zhang <caspar@casparzhang.com>
5146M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005147L: ltp-list@lists.sourceforge.net (subscribers-only)
5148W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005149T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005150T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005151S: Maintained
5152
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005153M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005154M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005155L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005156L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5157W: http://www.linux-m32r.org/
5158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005159F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005160
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005162M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163L: linux-m68k@lists.linux-m68k.org
5164W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005165T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005168F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
5170M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005173L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005175F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005178M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179W: http://www.tazenda.demon.co.uk/phil/linux-hp
5180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005181F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005183M88RS2000 MEDIA DRIVER
5184M: Malcolm Priestley <tvboxspy@gmail.com>
5185L: linux-media@vger.kernel.org
5186W: http://linuxtv.org/
5187Q: http://patchwork.linuxtv.org/project/linux-media/list/
5188S: Maintained
5189F: drivers/media/dvb-frontends/m88rs2000*
5190
Alexey Klimov07a092f2012-11-12 02:57:32 -03005191MA901 MASTERKIT USB FM RADIO DRIVER
5192M: Alexey Klimov <klimov.linux@gmail.com>
5193L: linux-media@vger.kernel.org
5194T: git git://linuxtv.org/media_tree.git
5195S: Maintained
5196F: drivers/media/radio/radio-ma901.c
5197
Jiri Benc64a327a2007-05-05 11:47:08 -07005198MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005200L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005201W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005202T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5203T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005205F: Documentation/networking/mac80211-injection.txt
5206F: include/net/mac80211.h
5207F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005208
Stefano Brivio1036d862007-12-23 04:46:27 +01005209MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005210M: Stefano Brivio <stefano.brivio@polimi.it>
5211M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005212L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005213W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005214T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5215T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005217F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005218
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005219MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005220M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005221L: netdev@vger.kernel.org
5222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005223F: drivers/net/macvlan.c
5224F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005225
Michael Kerriskfaf16682005-07-31 22:34:47 -07005226MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005228W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005229L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005230S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005231
stephen hemminger44c14c12012-04-02 12:59:47 +00005232MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5233M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005234M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005235L: netdev@vger.kernel.org
5236S: Maintained
5237F: drivers/net/ethernet/marvell/sk*
5238
Stefano Brivio74cda162007-11-19 20:27:46 +01005239MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005240L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005241S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005242F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005243
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005244MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005245M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005246L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005247S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005248F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005249F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005251MARVELL MVNETA ETHERNET DRIVER
5252M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5253L: netdev@vger.kernel.org
5254S: Maintained
5255F: drivers/net/ethernet/marvell/mvneta.*
5256
Bing Zhaofcad5842011-07-13 13:11:58 -07005257MARVELL MWIFIEX WIRELESS DRIVER
5258M: Bing Zhao <bzhao@marvell.com>
5259L: linux-wireless@vger.kernel.org
5260S: Maintained
5261F: drivers/net/wireless/mwifiex/
5262
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005263MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005264M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005265L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005266S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005267F: drivers/net/wireless/mwl8k.c
5268
Pierre Ossman2a695672009-03-16 19:52:26 +01005269MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005270M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005271S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005272F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005273
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005275L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005276S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005277F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005278F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
Guenter Roeckca462082012-06-01 23:28:23 -07005280MAX16065 HARDWARE MONITOR DRIVER
5281M: Guenter Roeck <linux@roeck-us.net>
5282L: lm-sensors@lm-sensors.org
5283S: Maintained
5284F: Documentation/hwmon/max16065
5285F: drivers/hwmon/max16065.c
5286
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005287MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005288M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005289L: lm-sensors@lm-sensors.org
5290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005291F: Documentation/hwmon/max6650
5292F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005293
Guenter Roecke89ab512013-03-08 08:13:09 -08005294MAX6697 HARDWARE MONITOR DRIVER
5295M: Guenter Roeck <linux@roeck-us.net>
5296L: lm-sensors@lm-sensors.org
5297S: Maintained
5298F: Documentation/hwmon/max6697
5299F: Documentation/devicetree/bindings/i2c/max6697.txt
5300F: drivers/hwmon/max6697.c
5301F: include/linux/platform_data/max6697.h
5302
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005303MAXIRADIO FM RADIO RECEIVER DRIVER
5304M: Hans Verkuil <hverkuil@xs4all.nl>
5305L: linux-media@vger.kernel.org
5306T: git git://linuxtv.org/media_tree.git
5307W: http://linuxtv.org
5308S: Maintained
5309F: drivers/media/radio/radio-maxiradio*
5310
Joe Perches127c49a2009-04-08 08:34:04 -07005311MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03005312M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005313P: LinuxTV.org Project
5314L: linux-media@vger.kernel.org
5315W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005316Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005317T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005318S: Maintained
5319F: Documentation/dvb/
5320F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005321F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005322F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005323F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005324F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005325F: include/uapi/linux/dvb/
5326F: include/uapi/linux/videodev2.h
5327F: include/uapi/linux/media.h
5328F: include/uapi/linux/v4l2-*
5329F: include/uapi/linux/meye.h
5330F: include/uapi/linux/ivtv*
5331F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005332
Hans Verkuil6149a932012-11-23 07:21:19 -03005333MEDIAVISION PRO MOVIE STUDIO DRIVER
5334M: Hans Verkuil <hverkuil@xs4all.nl>
5335L: linux-media@vger.kernel.org
5336T: git git://linuxtv.org/media_tree.git
5337W: http://linuxtv.org
5338S: Odd Fixes
5339F: drivers/media/parport/pms*
5340
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005341MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005342M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005343L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005344W: http://megaraid.lsilogic.com
5345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005346F: Documentation/scsi/megaraid.txt
5347F: drivers/scsi/megaraid.*
5348F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005349
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005350MELLANOX ETHERNET DRIVER (mlx4_en)
5351M: Amir Vadai <amirv@mellanox.com>
5352L: netdev@vger.kernel.org
5353S: Supported
5354W: http://www.mellanox.com
5355Q: http://patchwork.ozlabs.org/project/netdev/list/
5356F: drivers/net/ethernet/mellanox/mlx4/en_*
5357
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005358MEMORY MANAGEMENT
5359L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005360W: http://www.linux-mm.org
5361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005363F: include/linux/gfp.h
5364F: include/linux/mmzone.h
5365F: include/linux/memory_hotplug.h
5366F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005367F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005368
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005369MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005370M: Johannes Weiner <hannes@cmpxchg.org>
5371M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005372M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005374L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005375L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005378F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005379
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005380MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005381M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005383W: http://www.linux-mtd.infradead.org/
5384Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005385T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005387F: drivers/mtd/
5388F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005389F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02005391MEN A21 WATCHDOG DRIVER
5392M: Johannes Thumshirn <johannes.thumshirn@men.de>
5393L: linux-watchdog@vger.kernel.org
5394S: Supported
5395F: drivers/watchdog/mena21_wdt.c
5396
James Hogan12285942012-10-10 12:59:49 +01005397METAG ARCHITECTURE
5398M: James Hogan <james.hogan@imgtec.com>
5399S: Supported
5400F: arch/metag/
5401F: Documentation/metag/
5402F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005403F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005404F: drivers/irqchip/irq-metag.c
5405F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005406F: drivers/tty/metag_da.c
5407F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005408
Michal Simekc6375b02009-03-27 14:25:52 +01005409MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005411L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005412W: http://www.monstr.eu/fdt/
5413T: git git://git.monstr.eu/linux-2.6-microblaze.git
5414S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005415F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005418M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005420F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
5422MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005423M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005425W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005426T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005427Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005429F: Documentation/mips/
5430F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431
Hans Verkuil08b76202012-11-23 07:15:42 -03005432MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5433M: Hans Verkuil <hverkuil@xs4all.nl>
5434L: linux-media@vger.kernel.org
5435T: git git://linuxtv.org/media_tree.git
5436W: http://linuxtv.org
5437S: Odd Fixes
5438F: drivers/media/radio/radio-miropcm20*
5439
Eli Cohene126ba92013-07-07 17:25:49 +03005440Mellanox MLX5 core VPI driver
5441M: Eli Cohen <eli@mellanox.com>
5442L: netdev@vger.kernel.org
5443L: linux-rdma@vger.kernel.org
5444W: http://www.mellanox.com
5445Q: http://patchwork.ozlabs.org/project/netdev/list/
5446Q: http://patchwork.kernel.org/project/linux-rdma/list/
5447T: git://openfabrics.org/~eli/connect-ib.git
5448S: Supported
5449F: drivers/net/ethernet/mellanox/mlx5/core/
5450F: include/linux/mlx5/
5451
5452Mellanox MLX5 IB driver
5453M: Eli Cohen <eli@mellanox.com>
5454L: linux-rdma@vger.kernel.org
5455W: http://www.mellanox.com
5456Q: http://patchwork.kernel.org/project/linux-rdma/list/
5457T: git://openfabrics.org/~eli/connect-ib.git
5458S: Supported
5459F: include/linux/mlx5/
5460F: drivers/infiniband/hw/mlx5/
5461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005463M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005465F: include/linux/module.h
5466F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
5468MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005470S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005471F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005472F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005473F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
Jiri Slabyb9705b62008-04-30 00:53:48 -07005475MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005478F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005479F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005480
Alexey Klimov889b2f82012-11-16 17:43:59 -03005481MR800 AVERMEDIA USB FM RADIO DRIVER
5482M: Alexey Klimov <klimov.linux@gmail.com>
5483L: linux-media@vger.kernel.org
5484T: git git://linuxtv.org/media_tree.git
5485S: Maintained
5486F: drivers/media/radio/radio-mr800.c
5487
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005488MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005489M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005490L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005492F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005493
Anisse Astier0f1006b2009-12-17 11:28:49 +01005494MSI WMI SUPPORT
5495M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005496L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005497S: Supported
5498F: drivers/platform/x86/msi-wmi.c
5499
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005500MT9M032 SENSOR DRIVER
5501M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5502L: linux-media@vger.kernel.org
5503T: git git://linuxtv.org/media_tree.git
5504S: Maintained
5505F: drivers/media/i2c/mt9m032.c
5506F: include/media/mt9m032.h
5507
5508MT9P031 SENSOR DRIVER
5509M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5510L: linux-media@vger.kernel.org
5511T: git git://linuxtv.org/media_tree.git
5512S: Maintained
5513F: drivers/media/i2c/mt9p031.c
5514F: include/media/mt9p031.h
5515
5516MT9T001 SENSOR DRIVER
5517M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5518L: linux-media@vger.kernel.org
5519T: git git://linuxtv.org/media_tree.git
5520S: Maintained
5521F: drivers/media/i2c/mt9t001.c
5522F: include/media/mt9t001.h
5523
5524MT9V032 SENSOR DRIVER
5525M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5526L: linux-media@vger.kernel.org
5527T: git git://linuxtv.org/media_tree.git
5528S: Maintained
5529F: drivers/media/i2c/mt9v032.c
5530F: include/media/mt9v032.h
5531
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005532MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005533M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02005534M: Lee Jones <lee.jones@linaro.org>
5535T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git
5536T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01005539F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005540
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005541MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005542M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005543L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005544T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: drivers/mmc/
5547F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005548F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005549
David Brownell15a05802007-08-08 09:12:54 -07005550MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005551S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/mmc/host/mmc_spi.c
5553F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005554
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005558F: Documentation/sound/oss/MultiSound
5559F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Jiri Slabyd7354102006-12-08 02:38:35 -08005561MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005562S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005563F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005564F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005565
Felipe Balbi550a7372008-07-24 12:27:36 +03005566MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005567M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005568L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005569T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005571F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005572
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005573MXL5007T MEDIA DRIVER
5574M: Michael Krufky <mkrufky@linuxtv.org>
5575L: linux-media@vger.kernel.org
5576W: http://linuxtv.org/
5577W: http://github.com/mkrufky
5578Q: http://patchwork.linuxtv.org/project/linux-media/list/
5579T: git git://linuxtv.org/mkrufky/tuners.git
5580S: Maintained
5581F: drivers/media/tuners/mxl5007t.*
5582
Brice Goglin2d3cf582008-05-17 12:45:36 +02005583MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07005584M: Hyong-Youb Kim <hykim@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005585L: netdev@vger.kernel.org
Hyong-Youb Kim205057a2013-08-12 02:20:02 -07005586W: https://www.myricom.com/support/downloads/myri10ge.html
Brice Goglin2d3cf582008-05-17 12:45:36 +02005587S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005588F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005589
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005591S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005592F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
Daniel Mack23dc05a2011-05-18 11:28:38 +02005594NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5595M: Daniel Mack <zonque@gmail.com>
5596S: Maintained
5597L: alsa-devel@alsa-project.org
5598W: http://www.native-instruments.com
5599F: sound/usb/caiaq/
5600
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005602M: Petr Vandrovec <petr@vandrovec.name>
5603S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005604F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608L: linux-scsi@vger.kernel.org
5609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005610F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005612NCT6775 HARDWARE MONITOR DRIVER
5613M: Guenter Roeck <linux@roeck-us.net>
5614L: lm-sensors@lm-sensors.org
5615S: Maintained
5616F: Documentation/hwmon/nct6775
5617F: drivers/hwmon/nct6775.c
5618
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005619NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005621L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005622W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005623S: Supported
5624F: drivers/infiniband/hw/nes/
5625
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005626NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005627M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005628L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005630F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005631
Jon Masonb2f5a052010-07-15 08:47:27 +00005632NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005633M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005634L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005636F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005637F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005638F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005639
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005640NETFILTER/IPTABLES
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005641M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005642M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005643M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005644L: netfilter-devel@vger.kernel.org
5645L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005646L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647W: http://www.netfilter.org/
5648W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005649Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
5650T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
5651T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005653F: include/linux/netfilter*
5654F: include/linux/netfilter/
5655F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005656F: include/uapi/linux/netfilter*
5657F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005658F: net/*/netfilter.c
5659F: net/*/netfilter/
5660F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661
Paul Moore4cc67732006-09-25 15:57:13 -07005662NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005663M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005664W: http://netlabel.sf.net
5665L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005666S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005667F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005668F: include/net/netlabel.h
5669F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005670
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005672M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005674W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005676F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005677F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005678F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005680NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005681M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005683L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005684F: Documentation/blockdev/nbd.txt
5685F: drivers/block/nbd.c
5686F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005687F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Neil Horman6e436502009-10-05 03:56:55 +00005689NETWORK DROP MONITOR
5690M: Neil Horman <nhorman@tuxdriver.com>
5691L: netdev@vger.kernel.org
5692S: Maintained
5693W: https://fedorahosted.org/dropwatch/
5694F: net/core/drop_monitor.c
5695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005698L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005699W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005700Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005701T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5702T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: net/
5705F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005706F: include/linux/in.h
5707F: include/linux/net.h
5708F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005709F: include/uapi/linux/in.h
5710F: include/uapi/linux/net.h
5711F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
5713NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: "David S. Miller" <davem@davemloft.net>
5715M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005716M: James Morris <jmorris@namei.org>
5717M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5718M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005719L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005720T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005722F: net/ipv4/
5723F: net/ipv6/
5724F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005725F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
David S. Miller73b76562012-10-16 14:08:40 -04005727NETWORKING [IPSEC]
5728M: Steffen Klassert <steffen.klassert@secunet.com>
5729M: Herbert Xu <herbert@gondor.apana.org.au>
5730M: "David S. Miller" <davem@davemloft.net>
5731L: netdev@vger.kernel.org
5732T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5733S: Maintained
5734F: net/xfrm/
5735F: net/key/
5736F: net/ipv4/xfrm*
5737F: net/ipv6/xfrm*
5738F: include/uapi/linux/xfrm.h
5739F: include/net/xfrm.h
5740
James Morris10e2ff12007-08-25 14:41:28 -07005741NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005742M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005743L: netdev@vger.kernel.org
5744S: Maintained
5745
John W. Linville29f8f632006-01-18 14:52:48 -08005746NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005747M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005748L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005749Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005750T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005751S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005752F: net/mac80211/
5753F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005754F: net/wireless/
5755F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005756F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005757F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005758F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005759F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005760
Joe Perches788873a2009-04-16 09:38:45 +00005761NETWORKING DRIVERS
5762L: netdev@vger.kernel.org
5763W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005764Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005765T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5766T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005767S: Odd Fixes
5768F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005769F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005770F: include/linux/netdevice.h
5771F: include/linux/arcdevice.h
5772F: include/linux/etherdevice.h
5773F: include/linux/fcdevice.h
5774F: include/linux/fddidevice.h
5775F: include/linux/hippidevice.h
5776F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005777F: include/uapi/linux/if_*
5778F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005779
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005780NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005781M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005782M: Sony Chacko <sony.chacko@qlogic.com>
5783M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005784L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005785W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005786S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005787F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005788
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005789NFC SUBSYSTEM
5790M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5791M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5792M: Samuel Ortiz <sameo@linux.intel.com>
5793L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005794L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005795S: Maintained
5796F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005797F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005798F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005799F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005800F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005802NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005803M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005804L: linux-nfs@vger.kernel.org
5805W: http://client.linux-nfs.org
5806T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005808F: fs/lockd/
5809F: fs/nfs/
5810F: fs/nfs_common/
5811F: net/sunrpc/
5812F: include/linux/lockd/
5813F: include/linux/nfs*
5814F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005815F: include/uapi/linux/nfs*
5816F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005818NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005819M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005820L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005821W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005822T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/filesystems/nilfs2.txt
5825F: fs/nilfs2/
5826F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005827
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005829M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005832F: Documentation/scsi/NinjaSCSI.txt
5833F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834
5835NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005836M: GOTO Masanori <gotom@debian.or.jp>
5837M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: Documentation/scsi/NinjaSCSI.txt
5841F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
Jon Masonfce8a7b2012-11-16 19:27:12 -07005843NTB DRIVER
5844M: Jon Mason <jon.mason@intel.com>
5845S: Supported
5846F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005847F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005848F: include/linux/ntb.h
5849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005851M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005853W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005854T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005856F: Documentation/filesystems/ntfs.txt
5857F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005859NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005860M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005861L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005863F: drivers/video/riva/
5864F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865
Matthew Wilcox79461682012-11-10 08:54:53 -05005866NVM EXPRESS DRIVER
5867M: Matthew Wilcox <willy@linux.intel.com>
5868L: linux-nvme@lists.infradead.org
5869T: git git://git.infradead.org/users/willy/linux-nvme.git
5870S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03005871F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05005872F: include/linux/nvme.h
5873
Tony Lindgrenf5525782009-05-28 13:23:53 -07005874OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005875M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005876L: linux-omap@vger.kernel.org
5877W: http://www.muru.com/linux/omap/
5878W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005879Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005880T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005881S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005882F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005883F: drivers/i2c/busses/i2c-omap.c
5884F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005885
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005886OMAP DEVICE TREE SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005887M: Benoît Cousson <bcousson@baylibre.com>
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005888M: Tony Lindgren <tony@atomide.com>
5889L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07005890L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005891S: Maintained
5892F: arch/arm/boot/dts/*omap*
5893F: arch/arm/boot/dts/*am3*
5894
Tony Lindgrenf5525782009-05-28 13:23:53 -07005895OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005896M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005897L: linux-omap@vger.kernel.org
5898S: Maintained
5899F: arch/arm/*omap*/*clock*
5900
5901OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005902M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005903L: linux-omap@vger.kernel.org
5904S: Maintained
5905F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005906F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005907
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005908OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5909M: Rajendra Nayak <rnayak@ti.com>
5910M: Paul Walmsley <paul@pwsan.com>
5911L: linux-omap@vger.kernel.org
5912S: Maintained
5913F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5914F: arch/arm/mach-omap2/powerdomain44xx.c
5915F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5916F: arch/arm/mach-omap2/clockdomain44xx.c
5917
Tony Lindgrenf5525782009-05-28 13:23:53 -07005918OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005919M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005920M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005921L: alsa-devel@alsa-project.org (subscribers-only)
5922L: linux-omap@vger.kernel.org
5923S: Maintained
5924F: sound/soc/omap/
5925
5926OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005927M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005928L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005929L: linux-omap@vger.kernel.org
5930S: Maintained
5931F: drivers/video/omap/
5932
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005933OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005934M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005935L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005936L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005937S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005938F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005939F: Documentation/arm/OMAP/DSS
5940
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005941OMAP HARDWARE SPINLOCK SUPPORT
5942M: Ohad Ben-Cohen <ohad@wizery.com>
5943L: linux-omap@vger.kernel.org
5944S: Maintained
5945F: drivers/hwspinlock/omap_hwspinlock.c
5946F: arch/arm/mach-omap2/hwspinlock.c
5947
Tony Lindgrenf5525782009-05-28 13:23:53 -07005948OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005950L: linux-omap@vger.kernel.org
5951S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005952F: drivers/mmc/host/omap.c
5953
5954OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305955M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305956L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005957L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305958S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005959F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005960
5961OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005962M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005963S: Maintained
5964F: drivers/char/hw_random/omap-rng.c
5965
Paul Walmsleyf400c822010-12-06 19:08:54 -07005966OMAP HWMOD SUPPORT
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005967M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07005968M: Paul Walmsley <paul@pwsan.com>
5969L: linux-omap@vger.kernel.org
5970S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005971F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005972
5973OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
Benoit Coussoncdb55ab2013-08-09 23:19:15 +02005974M: Benoît Cousson <bcousson@baylibre.com>
Paul Walmsleyf400c822010-12-06 19:08:54 -07005975L: linux-omap@vger.kernel.org
5976S: Maintained
5977F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5978
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005979OMAP IMAGE SIGNAL PROCESSOR (ISP)
5980M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5981L: linux-media@vger.kernel.org
5982S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005983F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005984
Tony Lindgrenf5525782009-05-28 13:23:53 -07005985OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005986M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005987L: linux-usb@vger.kernel.org
5988L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005989T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005990S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005991F: drivers/usb/*/*omap*
5992F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005993
Kevin Hilman6d994712012-07-16 10:05:07 -07005994OMAP GPIO DRIVER
5995M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005996M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005997L: linux-omap@vger.kernel.org
5998S: Maintained
5999F: drivers/gpio/gpio-omap.c
6000
Bob Copeland0ad122d2008-07-25 19:45:18 -07006001OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006002M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07006003L: linux-karma-devel@lists.sourceforge.net
6004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: Documentation/filesystems/omfs.txt
6006F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07006007
Harald Weltec1986ee2005-11-13 16:06:29 -08006008OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006009M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08006010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006011F: drivers/char/pcmcia/cm4000_cs.c
6012F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006013F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08006014
Harald Welte77c44ab2005-11-13 16:06:26 -08006015OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006016M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08006017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006018F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08006019
Jonathan Corbet77d51402007-03-22 19:44:17 -03006020OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006021M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006022L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006023T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03006024S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006025F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03006026
Thomas Gleixner431bca72007-05-02 09:31:35 +02006027ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006028M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02006029L: linux-mtd@lists.infradead.org
6030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006031F: drivers/mtd/onenand/
6032F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02006033
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036L: osst-users@lists.sourceforge.net
6037L: linux-scsi@vger.kernel.org
6038S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07006039F: Documentation/scsi/osst.txt
6040F: drivers/scsi/osst.*
6041F: drivers/scsi/osst_*.h
6042F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006044OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006045M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01006046L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: Documentation/i2c/busses/i2c-ocores
6049F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006050
Grant Likely860c44c2009-10-26 16:49:49 -07006051OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01006052M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05006053M: Rob Herring <rob.herring@calxeda.com>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07006054L: devicetree@vger.kernel.org
Grant Likely860c44c2009-10-26 16:49:49 -07006055W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06006056T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07006057S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07006058F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07006059F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07006060F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07006061K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09006062K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07006063
Grant Likelyf8828202013-07-19 18:57:39 -07006064OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6065M: Rob Herring <rob.herring@calxeda.com>
6066M: Pawel Moll <pawel.moll@arm.com>
6067M: Mark Rutland <mark.rutland@arm.com>
6068M: Stephen Warren <swarren@wwwdotorg.org>
6069M: Ian Campbell <ian.campbell@citrix.com>
6070L: devicetree@vger.kernel.org
6071S: Maintained
6072F: Documentation/devicetree/
6073F: arch/*/boot/dts/
6074F: include/dt-bindings/
6075
Jonas Bonn19f9d392011-06-04 22:00:38 +03006076OPENRISC ARCHITECTURE
6077M: Jonas Bonn <jonas@southpole.se>
6078W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02006079L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03006080S: Maintained
6081T: git git://openrisc.net/~jonas/linux
6082F: arch/openrisc
6083
Jesse Grossccb13522011-10-25 19:26:31 -07006084OPENVSWITCH
6085M: Jesse Gross <jesse@nicira.com>
6086L: dev@openvswitch.org
6087W: http://openvswitch.org
6088T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
6089S: Maintained
6090F: net/openvswitch/
6091
Clemens Ladischaf399172011-01-10 16:32:54 +01006092OPL4 DRIVER
6093M: Clemens Ladisch <clemens@ladisch.de>
6094L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6095T: git git://git.alsa-project.org/alsa-kernel.git
6096S: Maintained
6097F: sound/drivers/opl4/
6098
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01006100M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101L: oprofile-list@lists.sf.net
6102S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02006103F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07006104F: arch/*/oprofile/
6105F: drivers/oprofile/
6106F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006108ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006109M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08006110M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006111L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6112W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07006113T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006115F: Documentation/filesystems/ocfs2.txt
6116F: Documentation/filesystems/dlmfs.txt
6117F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006118
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07006120L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006121W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07006122W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01006123S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006124F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006126OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006127M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07006128M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02006129L: osd-dev@open-osd.org
6130W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07006131T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02006132S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006133F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07006134F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006135F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02006136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006137P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006138M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006139L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006140W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006142F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006143
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006144PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006145M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006146L: netdev@vger.kernel.org
6147S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006148F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006149
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006150PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006151M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006152L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006154F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006155
Steffen Klassert48fc2672010-08-13 10:10:46 -04006156PADATA PARALLEL EXECUTION MECHANISM
6157M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006158L: linux-crypto@vger.kernel.org
6159S: Maintained
6160F: kernel/padata.c
6161F: include/linux/padata.h
6162F: Documentation/padata.txt
6163
Harald Welte709ee532008-09-23 17:46:57 +02006164PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006166L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006168F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006169
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006170PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006171M: David Howells <dhowells@redhat.com>
6172M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006173L: linux-am33-list@redhat.com (moderated for non-subscribers)
6174W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006176F: Documentation/mn10300/
6177F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006178
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006180L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006181S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006182F: drivers/parport/
6183F: include/linux/parport*.h
6184F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006185F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006187PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006188M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006189M: Chris Wright <chrisw@sous-sol.org>
6190M: Alok Kataria <akataria@vmware.com>
6191M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006192L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006193S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006194F: Documentation/ia64/paravirt_ops.txt
6195F: arch/*/kernel/paravirt*
6196F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006197
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006199M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006200L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201W: http://www.torque.net/linux-pp.html
6202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006203F: Documentation/blockdev/paride.txt
6204F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
6206PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006207M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006208M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006209L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006211Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006212T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00006213T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006215F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006216F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07006217F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006218F: drivers/char/agp/parisc-agp.c
6219F: drivers/input/serio/gscps2.c
6220F: drivers/parport/parport_gsc.*
6221F: drivers/tty/serial/8250/8250_gsc.c
6222F: drivers/video/sti*
6223F: drivers/video/console/sti*
6224F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
Jim Cromie1662d322006-10-06 00:43:59 -07006226PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006227M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006228L: lm-sensors@lm-sensors.org
6229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006230F: Documentation/hwmon/pc87360
6231F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006232
6233PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006234M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006236F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006237
Jean Delvare1ad107f2010-08-14 21:09:00 +02006238PC87427 HARDWARE MONITORING DRIVER
6239M: Jean Delvare <khali@linux-fr.org>
6240L: lm-sensors@lm-sensors.org
6241S: Maintained
6242F: Documentation/hwmon/pc87427
6243F: drivers/hwmon/pc87427.c
6244
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006245PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006246M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006247S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006248F: drivers/leds/leds-pca9532.c
6249F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006250
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006251PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006252M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006253L: linux-i2c@vger.kernel.org
6254S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006255F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006256
Khalid Aziz3971dae2012-04-12 12:49:13 -07006257PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006258M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006259S: Maintained
6260F: drivers/firmware/pcdp.*
6261
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006262PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006263M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006264L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006266F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006267
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006269M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006270L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006271Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006272T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006274F: Documentation/PCI/
6275F: drivers/pci/
6276F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006279P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006280L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006281W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006282T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006284F: Documentation/pcmcia/
6285F: drivers/pcmcia/
6286F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
6288PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006289M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006290L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006292F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Steffen Klassert48fc2672010-08-13 10:10:46 -04006294PCRYPT PARALLEL CRYPTO ENGINE
6295M: Steffen Klassert <steffen.klassert@secunet.com>
6296L: linux-crypto@vger.kernel.org
6297S: Maintained
6298F: crypto/pcrypt.c
6299F: include/crypto/pcrypt.h
6300
Tejun Heoe72df0b2010-12-10 17:02:49 +01006301PER-CPU MEMORY ALLOCATOR
6302M: Tejun Heo <tj@kernel.org>
6303M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006304T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6305S: Maintained
6306F: include/linux/percpu*.h
6307F: mm/percpu*.c
6308F: arch/*/include/asm/percpu.h
6309
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006310PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006311M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: include/linux/delayacct.h
6314F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006315
Ingo Molnar57c0c152009-09-21 12:20:38 +02006316PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006317M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6318M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006319M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006320M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006321T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006322S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006323F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006324F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006325F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006326F: arch/*/kernel/perf_event*.c
6327F: arch/*/kernel/*/perf_event*.c
6328F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006329F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006330F: arch/*/kernel/perf_callchain.c
6331F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006332
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006333PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006335L: linux-abi-devel@lists.sourceforge.net
6336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006337F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006338F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006339
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006340PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006341M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006342S: Supported
6343F: Documentation/networking/phonet.txt
6344F: include/linux/phonet.h
6345F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006346F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006347F: net/phonet/
6348
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351L: linux-mtd@lists.infradead.org
6352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354
Bruno Prémontefdbb102012-07-30 21:39:03 +02006355PICOLCD HID DRIVER
6356M: Bruno Prémont <bonbons@linux-vserver.org>
6357L: linux-input@vger.kernel.org
6358S: Maintained
6359F: drivers/hid/hid-picolcd*
6360
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006361PICOXCELL SUPPORT
6362M: Jamie Iles <jamie@jamieiles.com>
6363L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6364T: git git://github.com/jamieiles/linux-2.6-ji.git
6365S: Supported
6366F: arch/arm/mach-picoxcell
6367F: drivers/*/picoxcell*
6368F: drivers/*/*/picoxcell*
6369
Linus Walleij2744e8a2011-05-02 20:50:54 +02006370PIN CONTROL SUBSYSTEM
6371M: Linus Walleij <linus.walleij@linaro.org>
6372S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006373F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006374F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006375
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006376PIN CONTROLLER - ATMEL AT91
6377M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6378L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6379S: Maintained
6380F: drivers/pinctrl/pinctrl-at91.c
6381
Doug Andersonb75e60d2013-06-16 15:17:46 -07006382PIN CONTROLLER - SAMSUNG
6383M: Tomasz Figa <t.figa@samsung.com>
6384M: Thomas Abraham <thomas.abraham@linaro.org>
6385L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6386L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6387S: Maintained
6388F: drivers/pinctrl/pinctrl-exynos.*
6389F: drivers/pinctrl/pinctrl-s3c*
6390F: drivers/pinctrl/pinctrl-samsung.*
6391
Viresh Kumardeda8282012-03-28 22:27:07 +05306392PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006393M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306394L: spear-devel@list.st.com
6395L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6396W: http://www.st.com/spear
6397S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006398F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306399
Peter Osterlund249a6772005-09-27 21:45:30 -07006400PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006401M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/block/pktcdvd.c
6404F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006405F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006406
GuanXuetaob31d8272011-01-16 00:35:49 +08006407PKUNITY SOC DRIVERS
6408M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6409W: http://mprc.pku.edu.cn/~guanxuetao/linux
6410S: Maintained
6411T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6412F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006413F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006414F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006415F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006416
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006417PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006418M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006419L: lm-sensors@lm-sensors.org
6420W: http://www.lm-sensors.org/
6421W: http://www.roeck-us.net/linux/drivers/
6422T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6423S: Maintained
6424F: Documentation/hwmon/pmbus
6425F: drivers/hwmon/pmbus/
6426F: include/linux/i2c/pmbus.h
6427
Anil Ravindranath89a36812009-08-25 17:35:18 -07006428PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006429M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006430L: linux-scsi@vger.kernel.org
6431W: http://www.pmc-sierra.com/
6432S: Supported
6433F: drivers/scsi/pmcraid.*
6434
jack wangdbf9bfe2009-10-14 16:19:21 +08006435PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006436M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006437M: lindar_liu@usish.com
6438L: linux-scsi@vger.kernel.org
6439S: Supported
6440F: drivers/scsi/pm8001/
6441
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006443M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006444T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006446F: fs/timerfd.c
6447F: include/linux/timer*
6448F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
Anton Vorontsov3be86142007-07-15 04:43:36 +04006450POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006451M: Anton Vorontsov <anton@enomsg.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006452M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006453T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006455F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006456F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006457
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006459M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006460M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006462F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463
Vitaly Wool999445d2007-01-04 13:07:03 +01006464PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006465M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006466L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006468F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006469
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006471M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472L: linux-ppp@vger.kernel.org
6473S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006474F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475
6476PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006477M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006479F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006480F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481
6482PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006483M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006485F: drivers/net/ppp/pppoe.c
6486F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
James Chapmana6d23702007-06-27 15:53:17 -07006488PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006489M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006490S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006491F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006492F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006493F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006494
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006495PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006496M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006497W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6498L: linuxpps@ml.enneenne.com (subscribers-only)
6499S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006500F: Documentation/pps/
6501F: drivers/pps/
6502F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006503
Harry Wei71a6d0a2011-05-11 15:13:33 -07006504PPTP DRIVER
6505M: Dmitry Kozlov <xeb@mail.ru>
6506L: netdev@vger.kernel.org
6507S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006508F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006509W: http://sourceforge.net/projects/accel-pptp
6510
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513L: kpreempt-tech@lists.sourceforge.net
6514W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006516F: Documentation/preempt-locking.txt
6517F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
6519PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006520M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006521L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006522W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006523S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006524F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006526PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006527M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006528L: linux-ide@vger.kernel.org
6529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006530F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006531
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006532PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006533M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006534L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006535L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006536S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006537F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006538
Geoff Levandf58a9d12006-11-23 00:46:51 +01006539PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006540M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006541L: linuxppc-dev@lists.ozlabs.org
6542L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006544F: arch/powerpc/boot/ps3*
6545F: arch/powerpc/include/asm/lv1call.h
6546F: arch/powerpc/include/asm/ps3*.h
6547F: arch/powerpc/platforms/ps3/
6548F: drivers/*/ps3*
6549F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006550F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006551F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006552F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006553
Jim Pariscffb4add2009-01-06 11:32:10 +00006554PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006555M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006556L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006557S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006558F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006559
Anton Vorontsov8defe592012-08-03 18:07:20 -07006560PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006561M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07006562M: Colin Cross <ccross@android.com>
6563M: Kees Cook <keescook@chromium.org>
6564M: Tony Luck <tony.luck@intel.com>
6565S: Maintained
6566T: git git://git.infradead.org/users/cbou/linux-pstore.git
6567F: fs/pstore/
6568F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006569F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006570F: drivers/acpi/apei/erst.c
6571
Richard Cochran7fbc4152012-03-10 01:55:53 +00006572PTP HARDWARE CLOCK SUPPORT
6573M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006574L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006575S: Maintained
6576W: http://linuxptp.sourceforge.net/
6577F: Documentation/ABI/testing/sysfs-ptp
6578F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006579F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006580F: drivers/net/phy/dp83640*
6581F: drivers/ptp/*
6582F: include/linux/ptp_cl*
6583
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006584PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Roland McGrath <roland@redhat.com>
6586M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006587S: Maintained
6588F: include/asm-generic/syscall.h
6589F: include/linux/ptrace.h
6590F: include/linux/regset.h
6591F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006592F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006593F: kernel/ptrace.c
6594
Michael Krufky83202042006-07-03 00:24:18 -07006595PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006596M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006597L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006598L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006599W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006600T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006603F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006604
Hans de Goede39532e62012-11-04 17:05:59 -03006605PWC WEBCAM DRIVER
6606M: Hans de Goede <hdegoede@redhat.com>
6607L: linux-media@vger.kernel.org
6608T: git git://linuxtv.org/media_tree.git
6609S: Maintained
6610F: drivers/media/usb/pwc/*
6611
Thierry Reding200efed2012-03-27 13:16:18 +02006612PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02006613M: Thierry Reding <thierry.reding@gmail.com>
6614L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006615S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006616W: http://gitorious.org/linux-pwm
6617T: git git://gitorious.org/linux-pwm/linux-pwm.git
6618F: Documentation/pwm.txt
6619F: Documentation/devicetree/bindings/pwm/
6620F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006621F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006622F: drivers/video/backlight/pwm_bl.c
6623F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006624
Eric Miao30ec2612008-06-12 15:21:41 -07006625PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006626M: Eric Miao <eric.y.miao@gmail.com>
6627M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006628M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006629L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006630T: git git://github.com/hzhuang1/linux.git
6631T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: arch/arm/mach-pxa/
6634F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006635F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006636F: drivers/usb/gadget/pxa2*
6637F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006638F: sound/arm/pxa*
6639F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006641MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006642M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006643M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006644L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006645T: git git://github.com/hzhuang1/linux.git
6646T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006647S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006648F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006649
Pierre Ossman272f1332007-05-14 21:25:26 +02006650PXA MMCI DRIVER
6651S: Orphan
6652
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006653PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006655L: rtc-linux@googlegroups.com
6656S: Maintained
6657
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006658QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006659M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006660L: linux-rdma@vger.kernel.org
6661S: Supported
6662F: drivers/infiniband/hw/qib/
6663
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006664QLOGIC QLA1280 SCSI DRIVER
6665M: Michael Reed <mdr@sgi.com>
6666L: linux-scsi@vger.kernel.org
6667S: Maintained
6668F: drivers/scsi/qla1280.[ch]
6669
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006671M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006672M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673L: linux-scsi@vger.kernel.org
6674S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006675F: Documentation/scsi/LICENSE.qla2xxx
6676F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677
Ravi Anand883c98f2010-04-28 11:45:49 +05306678QLOGIC QLA4XXX iSCSI DRIVER
6679M: Ravi Anand <ravi.anand@qlogic.com>
6680M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6681M: iscsi-driver@qlogic.com
6682L: linux-scsi@vger.kernel.org
6683S: Supported
6684F: drivers/scsi/qla4xxx/
6685
Ron Mercer5a4faa872006-07-25 00:40:21 -07006686QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006687M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006688M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006689M: linux-driver@qlogic.com
6690L: netdev@vger.kernel.org
6691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006692F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006693F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006694
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006695QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006696M: Himanshu Madhani <himanshu.madhani@qlogic.com>
Sony Chacko195ca382013-03-06 13:03:25 +00006697M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6698M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006699M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006700M: Sony Chacko <sony.chacko@qlogic.com>
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006701M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006702M: linux-driver@qlogic.com
6703L: netdev@vger.kernel.org
6704S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006705F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006706
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006707QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006708M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006709M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006711M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006712L: netdev@vger.kernel.org
6713S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006714F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006715
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006717M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718W: http://www.alarsen.net/linux/qnx4fs/
6719S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006720F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006721F: include/uapi/linux/qnx4_fs.h
6722F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723
Antti Palosaari91952bc2012-10-01 12:28:46 -03006724QT1010 MEDIA DRIVER
6725M: Antti Palosaari <crope@iki.fi>
6726L: linux-media@vger.kernel.org
6727W: http://linuxtv.org/
6728W: http://palosaari.fi/linux/
6729Q: http://patchwork.linuxtv.org/project/linux-media/list/
6730T: git git://linuxtv.org/anttip/media_tree.git
6731S: Maintained
6732F: drivers/media/tuners/qt1010*
6733
Kalle Valo2ea0ffc2013-07-22 12:22:19 +03006734QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
6735M: Kalle Valo <kvalo@qca.qualcomm.com>
6736L: ath10k@lists.infradead.org
6737W: http://wireless.kernel.org/en/users/Drivers/ath10k
6738T: git git://github.com/kvalo/ath.git
6739S: Supported
6740F: drivers/net/wireless/ath/ath10k/
6741
Richard Kuo4f4567c2011-10-31 18:56:38 -05006742QUALCOMM HEXAGON ARCHITECTURE
6743M: Richard Kuo <rkuo@codeaurora.org>
6744L: linux-hexagon@vger.kernel.org
6745S: Supported
6746F: arch/hexagon/
6747
Hans Verkuil35e35402012-11-23 07:02:29 -03006748QUICKCAM PARALLEL PORT WEBCAMS
6749M: Hans Verkuil <hverkuil@xs4all.nl>
6750L: linux-media@vger.kernel.org
6751T: git git://linuxtv.org/media_tree.git
6752W: http://linuxtv.org
6753S: Odd Fixes
6754F: drivers/media/parport/*-qcam*
6755
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006756RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006757M: Yehuda Sadeh <yehuda@inktank.com>
6758M: Sage Weil <sage@inktank.com>
6759M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006760M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006761W: http://ceph.com/
6762T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006763S: Supported
6764F: drivers/block/rbd.c
6765F: drivers/block/rbd_types.h
6766
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006769L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006771F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006772F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006773
Hans de Goedec6c9b342012-11-04 17:03:58 -03006774RADIOSHARK RADIO DRIVER
6775M: Hans de Goede <hdegoede@redhat.com>
6776L: linux-media@vger.kernel.org
6777T: git git://linuxtv.org/media_tree.git
6778S: Maintained
6779F: drivers/media/radio/radio-shark.c
6780
6781RADIOSHARK2 RADIO DRIVER
6782M: Hans de Goede <hdegoede@redhat.com>
6783L: linux-media@vger.kernel.org
6784T: git git://linuxtv.org/media_tree.git
6785S: Maintained
6786F: drivers/media/radio/radio-shark2.c
6787F: drivers/media/radio/radio-tea5777.c
6788
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006790M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006791L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006793F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794
Randy Dunlape7839f22008-10-12 16:11:45 -07006795RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006796P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006797M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006798M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006799M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006800L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006801L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006802W: http://rt2x00.serialmonkey.com/
6803S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006804T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006805F: drivers/net/wireless/rt2x00/
6806
Nick Piggin9db55792008-02-08 04:19:49 -08006807RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006808M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006810F: Documentation/blockdev/ramdisk.txt
6811F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006812
Matt Mackall9e95ce22005-04-16 15:25:56 -07006813RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006814M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006816F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006817
Matt Porter394b7012005-11-07 01:00:15 -08006818RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006819M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006820M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006822F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006823
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006824RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006826S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006827F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006828
6829RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006830M: Josh Triplett <josh@freedesktop.org>
6831M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006832S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006833T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006834F: Documentation/RCU/torture.txt
6835F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006836
Florian Fainellic1f766b2008-02-06 22:39:44 +01006837RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006838M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006839S: Maintained
6840
Florian Fainellidb17f392007-12-19 11:30:30 +01006841RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006842M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006843L: netdev@vger.kernel.org
6844S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006845F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006846
Andy Grovera09ed662009-02-24 15:30:41 +00006847RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006848M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006849L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006851F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006852
Josh Triplett595182b2006-10-04 02:17:21 -07006853READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006854M: Dipankar Sarma <dipankar@in.ibm.com>
6855M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006856W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006857S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006858T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006859F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006860X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006861F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006862F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006863X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006864
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006865REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006866M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006867L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006868Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006870F: Documentation/rtc.txt
6871F: drivers/rtc/
6872F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006873F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006874
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006876L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006878F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879
Mark Brownb83a3132011-05-11 19:59:58 +02006880REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006881M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006882T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6883S: Supported
6884F: drivers/base/regmap/
6885F: include/linux/regmap.h
6886
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006887REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6888M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006889T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006890S: Maintained
6891F: drivers/remoteproc/
6892F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006893F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006894
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006895REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6896M: Ohad Ben-Cohen <ohad@wizery.com>
6897T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6898S: Maintained
6899F: drivers/rpmsg/
6900F: Documentation/rpmsg.txt
6901F: include/linux/rpmsg.h
6902
Ivo van Doorne08976452008-04-12 19:23:55 +02006903RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006904M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006905L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006906W: http://wireless.kernel.org/
6907T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6908T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006909S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006910F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006911F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006912
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006913RICOH SMARTMEDIA/XD DRIVER
6914M: Maxim Levitsky <maximlevitsky@gmail.com>
6915S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006916F: drivers/mtd/nand/r852.c
6917F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006918
Maxim Levitsky92634122011-03-25 01:56:59 -07006919RICOH R5C592 MEMORYSTICK DRIVER
6920M: Maxim Levitsky <maximlevitsky@gmail.com>
6921S: Maintained
6922F: drivers/memstick/host/r592.*
6923
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924ROCKETPORT DRIVER
6925P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926W: http://www.comtrol.com
6927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006928F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006929F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
6931ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006932M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006934W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006936F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006937F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006938F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939
Antti Palosaari91952bc2012-10-01 12:28:46 -03006940RTL2830 MEDIA DRIVER
6941M: Antti Palosaari <crope@iki.fi>
6942L: linux-media@vger.kernel.org
6943W: http://linuxtv.org/
6944W: http://palosaari.fi/linux/
6945Q: http://patchwork.linuxtv.org/project/linux-media/list/
6946T: git git://linuxtv.org/anttip/media_tree.git
6947S: Maintained
6948F: drivers/media/dvb-frontends/rtl2830*
6949
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006950RTL2832 MEDIA DRIVER
6951M: Antti Palosaari <crope@iki.fi>
6952L: linux-media@vger.kernel.org
6953W: http://linuxtv.org/
6954W: http://palosaari.fi/linux/
6955Q: http://patchwork.linuxtv.org/project/linux-media/list/
6956T: git git://linuxtv.org/anttip/media_tree.git
6957S: Maintained
6958F: drivers/media/dvb-frontends/rtl2832*
6959
Larry Finger59840482008-11-12 17:13:09 -06006960RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006961M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006962L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006963W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006964T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006965S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006966F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006967
Larry Finger59840482008-11-12 17:13:09 -06006968RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006969M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006970M: Hin-Tak Leung <htl10@users.sourceforge.net>
6971M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006972L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006973W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006974T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006975S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006976F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006977
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006978RTL8192CE WIRELESS DRIVER
6979M: Larry Finger <Larry.Finger@lwfinger.net>
6980M: Chaoming Li <chaoming_li@realsil.com.cn>
6981L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006982W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006983T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6984S: Maintained
6985F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006986F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006987
6988S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006989M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006990L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006992F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006993
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994S390
Joe Perches8b58be82009-07-29 15:04:30 -07006995M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6996M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006998L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006999W: http://www.ibm.com/developerworks/linux/linux390/
7000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007001F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01007002F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08007003F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02007004F: Documentation/s390/
7005F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08007006
7007S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007008M: Ursula Braun <ursula.braun@de.ibm.com>
7009M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08007010M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01007011L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007012W: http://www.ibm.com/developerworks/linux/linux390/
7013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007014F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08007015
Felix Beckfeed9b62009-03-26 15:24:23 +01007016S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01007017M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01007018M: linux390@de.ibm.com
7019L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01007020W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01007021S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007022F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01007023
Heiko Carstens5238da42006-02-11 17:56:01 -08007024S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01007025M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08007026M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01007027L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007028W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007030F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
Ursula Braundd96df22007-09-19 13:09:02 +02007032S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007033M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02007034M: linux390@de.ibm.com
7035L: linux-s390@vger.kernel.org
7036W: http://www.ibm.com/developerworks/linux/linux390/
7037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007038F: drivers/s390/net/*iucv*
7039F: include/net/iucv/
7040F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02007041
Ben Dooks4dde7f72008-06-30 22:40:38 +01007042S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07007043M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07007044L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01007045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007046F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01007047
Hans Verkuil1f15a222012-11-23 07:45:29 -03007048SAA6588 RDS RECEIVER DRIVER
7049M: Hans Verkuil <hverkuil@xs4all.nl>
7050L: linux-media@vger.kernel.org
7051T: git git://linuxtv.org/media_tree.git
7052W: http://linuxtv.org
7053S: Odd Fixes
7054F: drivers/media/i2c/saa6588*
7055
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007056SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007057M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007058L: linux-media@vger.kernel.org
7059W: http://linuxtv.org
7060T: git git://linuxtv.org/media_tree.git
7061S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03007062F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007063F: drivers/media/pci/saa7134/
7064
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03007066M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007067L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007068T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007070F: drivers/media/common/saa7146/
7071F: drivers/media/pci/saa7146/
7072F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073
Corentin Chary92304a42011-12-05 12:38:35 -05007074SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08007075M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05007076L: platform-driver-x86@vger.kernel.org
7077S: Maintained
7078F: drivers/platform/x86/samsung-laptop.c
7079
Mark Brown4a109cc2010-09-24 10:50:46 +01007080SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09007081M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01007082L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7083S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00007084F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01007085
Jingoo Han0d89a282011-12-19 11:09:35 +09007086SAMSUNG FRAMEBUFFER DRIVER
7087M: Jingoo Han <jg1.han@samsung.com>
7088L: linux-fbdev@vger.kernel.org
7089S: Maintained
7090F: drivers/video/s3c-fb.c
7091
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09007092SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7093M: Sangbeom Kim <sbkim73@samsung.com>
7094L: linux-kernel@vger.kernel.org
7095S: Supported
7096F: drivers/mfd/sec*.c
7097F: drivers/regulator/s2m*.c
7098F: drivers/regulator/s5m*.c
7099F: drivers/rtc/rtc-sec.c
7100F: include/linux/mfd/samsung/
7101
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03007102SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7103M: Kyungmin Park <kyungmin.park@samsung.com>
7104M: Sylwester Nawrocki <s.nawrocki@samsung.com>
7105L: linux-media@vger.kernel.org
7106Q: https://patchwork.linuxtv.org/project/linux-media/list/
7107S: Supported
7108F: drivers/media/platform/exynos4-is/
7109F: include/media/s5p_fimc.h
7110
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03007111SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7112M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7113L: linux-media@vger.kernel.org
7114L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7115S: Maintained
7116F: drivers/media/platform/s3c-camif/
7117F: include/media/s3c_camif.h
7118
Andrzej Hajdab84ef242013-01-31 07:03:05 -03007119SAMSUNG S5C73M3 CAMERA DRIVER
7120M: Kyungmin Park <kyungmin.park@samsung.com>
7121M: Andrzej Hajda <a.hajda@samsung.com>
7122L: linux-media@vger.kernel.org
7123S: Supported
7124F: drivers/media/i2c/s5c73m3/*
7125
Alan Coxca749e22011-03-18 13:56:14 +00007126SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007127M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00007128L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007129S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00007130F: drivers/tty/serial
7131
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307132SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007133M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307134S: Maintained
7135F: include/linux/dw_dmac.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03007136F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307137
Seungwon Jeonf9e37132013-01-17 21:33:23 +09007138SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7139M: Seungwon Jeon <tgih.jun@samsung.com>
7140M: Jaehoon Chung <jh80.chung@samsung.com>
7141L: linux-mmc@vger.kernel.org
7142S: Maintained
7143F: include/linux/mmc/dw_mmc.h
7144F: drivers/mmc/host/dw_mmc*
7145
Thomas Gleixner88606e82010-12-14 21:37:13 +01007146TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05007147M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01007148M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007149T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01007150S: Supported
7151F: include/linux/clocksource.h
7152F: include/linux/time.h
7153F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007154F: include/uapi/linux/time.h
7155F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01007156F: kernel/time/clocksource.c
7157F: kernel/time/time*.c
7158F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02007159F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01007160
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007161TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03007162M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03007163M: Hans Verkuil <hverkuil@xs4all.nl>
7164S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007165F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007166
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007168M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007170F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007171
7172SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01007173M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007174M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007175T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007176S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007177F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007178F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007179F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007180
Chen Liqin6bcf6732009-06-13 15:24:33 +08007181SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007182M: Chen Liqin <liqin.chen@sunplusct.com>
7183M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007184W: http://www.sunplusct.com
7185S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007186F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007187
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007189M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190L: linux-scsi@vger.kernel.org
7191W: http://www.kernel.dk
7192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007193F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Roland Dreierfb50a832010-10-07 09:54:53 -07007195SCSI RDMA PROTOCOL (SRP) INITIATOR
7196M: David Dillow <dillowda@ornl.gov>
7197L: linux-rdma@vger.kernel.org
7198S: Supported
7199W: http://www.openfabrics.org
7200Q: http://patchwork.kernel.org/project/linux-rdma/list/
7201T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7202F: drivers/infiniband/ulp/srp/
7203F: include/scsi/srp.h
7204
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007206M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207L: linux-scsi@vger.kernel.org
7208W: http://www.torque.net/sg
7209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007210F: drivers/scsi/sg.c
7211F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212
7213SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007214M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007215L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007216T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7217T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7218T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007220F: drivers/scsi/
7221F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007222
7223SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225L: linux-scsi@vger.kernel.org
7226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007227F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07007228F: drivers/scsi/st.*
7229F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230
7231SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007232M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007233M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007234L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007235W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007237F: Documentation/networking/sctp.txt
7238F: include/linux/sctp.h
7239F: include/net/sctp/
7240F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007241
7242SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007243M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007244S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007245F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007246F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007247F: drivers/watchdog/scx200_wdt.c
7248F: drivers/i2c/busses/scx200*
7249F: drivers/mtd/maps/scx200_docflash.c
7250F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007251
7252SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007253M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007255F: drivers/char/scx200_gpio.c
7256F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007257
7258SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007259M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007261F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007262
Sascha Sommer6a369132008-07-15 14:21:29 +02007263SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007264M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007265L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007267F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007268
Randy Dunlape7839f22008-10-12 16:11:45 -07007269SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007270M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007271L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007272T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7273S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007274F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007275F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007276
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007277SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07007278M: Anton Vorontsov <anton@enomsg.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007279L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007280L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007282F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283
Ben Dooks0d1bb412009-06-14 13:52:37 +01007284SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007285M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007286L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007287S: Maintained
7288F: drivers/mmc/host/sdhci-s3c.c
7289
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007290SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007291M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007292L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007293L: linux-mmc@vger.kernel.org
7294S: Maintained
7295F: drivers/mmc/host/sdhci-spear.c
7296
James Morris8711cca2008-12-04 03:19:45 +11007297SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007298M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007299L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007300T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007301W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007302S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007303F: security/
James Morris8711cca2008-12-04 03:19:45 +11007304
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007306M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307S: Supported
7308
7309SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007310M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007311M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007312M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007313L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007314W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007315T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007317F: include/linux/selinux*
7318F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007319F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
John Johansenc1c124e2010-07-29 14:48:09 -07007321APPARMOR SECURITY MODULE
7322M: John Johansen <john.johansen@canonical.com>
7323L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7324W: apparmor.wiki.kernel.org
7325T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7326S: Supported
7327F: security/apparmor/
7328
Jiri Slabycef2cf02007-05-08 00:31:45 -07007329SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007330M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007332F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007333F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007334
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007335SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007336M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007338T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007340F: drivers/ata/
7341F: include/linux/ata.h
7342F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307344SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007345M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007346L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007347W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007348S: Supported
7349F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307350
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007351SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007352M: Sathya Perla <sathya.perla@emulex.com>
7353M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7354M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007355L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007356W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007357S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007358F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007359
Ben Hutchings8ceee662008-04-27 12:55:59 +01007360SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007361M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007362M: Ben Hutchings <bhutchings@solarflare.com>
7363L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007364S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007365F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007366
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007367SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007368M: Dimitri Sivanich <sivanich@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007370F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007371
7372SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007374L: linux-ia64@vger.kernel.org
7375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007376F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007377F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007378F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007379
Linus Torvalds1da177e2005-04-16 15:20:36 -07007380SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007381M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382L: linux-visws-devel@lists.sf.net
7383W: http://linux-visws.sf.net
7384S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007385F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386
Jack Steiner75312612008-08-15 00:40:42 -07007387SGI XP/XPC/XPNET DRIVER
Robin Holte1803832013-08-16 18:01:42 -05007388M: Cliff Whickman <cpw@sgi.com>
7389M: Robin Holt <robinmholt@gmail.com>
Jack Steiner75312612008-08-15 00:40:42 -07007390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007391F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007392
Hans Verkuil49cc6292012-11-30 07:13:29 -03007393SI470X FM RADIO RECEIVER I2C DRIVER
7394M: Hans Verkuil <hverkuil@xs4all.nl>
7395L: linux-media@vger.kernel.org
7396T: git git://linuxtv.org/media_tree.git
7397W: http://linuxtv.org
7398S: Odd Fixes
7399F: drivers/media/radio/si470x/radio-si470x-i2c.c
7400
7401SI470X FM RADIO RECEIVER USB DRIVER
7402M: Hans Verkuil <hverkuil@xs4all.nl>
7403L: linux-media@vger.kernel.org
7404T: git git://linuxtv.org/media_tree.git
7405W: http://linuxtv.org
7406S: Maintained
7407F: drivers/media/radio/si470x/radio-si470x-common.c
7408F: drivers/media/radio/si470x/radio-si470x.h
7409F: drivers/media/radio/si470x/radio-si470x-usb.c
7410
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007411SI4713 FM RADIO TRANSMITTER I2C DRIVER
7412M: Eduardo Valentin <edubezval@gmail.com>
7413L: linux-media@vger.kernel.org
7414T: git git://linuxtv.org/media_tree.git
7415W: http://linuxtv.org
7416S: Odd Fixes
7417F: drivers/media/radio/si4713-i2c.?
7418
7419SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7420M: Eduardo Valentin <edubezval@gmail.com>
7421L: linux-media@vger.kernel.org
7422T: git git://linuxtv.org/media_tree.git
7423W: http://linuxtv.org
7424S: Odd Fixes
7425F: drivers/media/radio/radio-si4713.h
7426
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007427SIANO DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007428M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007429L: linux-media@vger.kernel.org
7430W: http://linuxtv.org
7431T: git git://linuxtv.org/media_tree.git
7432S: Odd fixes
7433F: drivers/media/common/siano/
7434F: drivers/media/dvb/siano/
7435F: drivers/media/usb/siano/
7436F: drivers/media/mmc/siano
7437
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007438SH_VEU V4L2 MEM2MEM DRIVER
7439M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7440L: linux-media@vger.kernel.org
7441S: Maintained
7442F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007443
7444SH_VOU V4L2 OUTPUT DRIVER
7445M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7446L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007447S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007448F: drivers/media/platform/sh_vou.c
7449F: include/media/sh_vou.h
7450
Len Brown6349d992009-08-14 15:07:14 -04007451SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007452M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007453L: sfi-devel@simplefirmware.org
7454W: http://simplefirmware.org/
7455T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007456S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007457F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007458F: drivers/sfi/
7459F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007460
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461SIMTEC EB110ATX (Chalice CATS)
7462P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007463P: Vincent Sanders <vince@simtec.co.uk>
7464M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465W: http://www.simtec.co.uk/products/EB110ATX/
7466S: Supported
7467
7468SIMTEC EB2410ITX (BAST)
7469P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007470P: Vincent Sanders <vince@simtec.co.uk>
7471M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472W: http://www.simtec.co.uk/products/EB2410ITX/
7473S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007474F: arch/arm/mach-s3c2410/mach-bast.c
7475F: arch/arm/mach-s3c2410/bast-ide.c
7476F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007478TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007479M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007480M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307481L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307482T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007483Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007484S: Supported
7485F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007486F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007487
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007488TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007489M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007490L: linux-media@vger.kernel.org
7491L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7492W: http://linuxtv.org/
7493Q: http://patchwork.linuxtv.org/project/linux-media/list/
7494T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007495S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007496F: drivers/media/platform/davinci/
7497F: include/media/davinci/
7498
Francois Romieu92aab3c2005-07-30 13:11:18 +02007499SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007500M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007501L: netdev@vger.kernel.org
7502S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007503F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007504
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007506M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007508L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007510F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511
7512SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007513M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007516F: Documentation/fb/sisfb.txt
7517F: drivers/video/sis/
7518F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519
7520SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007521M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522W: http://www.winischhofer.at/linuxsisusbvga.shtml
7523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007524F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007526SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007527M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007528M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007529M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007530L: linux-mm@kvack.org
7531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007532F: include/linux/sl?b*.h
7533F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007534
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007535SLEEPABLE READ-COPY UPDATE (SRCU)
7536M: Lai Jiangshan <laijs@cn.fujitsu.com>
7537M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7538W: http://www.rdrop.com/users/paulmck/RCU/
7539S: Supported
7540T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7541F: include/linux/srcu*
7542F: kernel/srcu*
7543
Casey Schaufler66372842012-05-23 18:34:52 -07007544SMACK SECURITY MODULE
7545M: Casey Schaufler <casey@schaufler-ca.com>
7546L: linux-security-module@vger.kernel.org
7547W: http://schaufler-ca.com
7548T: git git://git.gitorious.org/smack-next/kernel.git
7549S: Maintained
7550F: Documentation/security/Smack.txt
7551F: security/smack/
7552
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007554M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007555S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007556F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557
Sakari Ailuse8e31622012-11-12 18:14:39 -03007558SMIA AND SMIA++ IMAGE SENSOR DRIVER
7559M: Sakari Ailus <sakari.ailus@iki.fi>
7560L: linux-media@vger.kernel.org
7561S: Maintained
7562F: drivers/media/i2c/smiapp
7563F: include/media/smiapp.h
7564F: drivers/media/i2c/smiapp-pll.c
7565F: drivers/media/i2c/smiapp-pll.h
7566
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007567SMM665 HARDWARE MONITOR DRIVER
7568M: Guenter Roeck <linux@roeck-us.net>
7569L: lm-sensors@lm-sensors.org
7570S: Maintained
7571F: Documentation/hwmon/smm665
7572F: drivers/hwmon/smm665.c
7573
Steve Glendinning9df73052010-08-14 21:08:54 +02007574SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007575M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007576L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007577S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007578F: Documentation/hwmon/emc2103
7579F: drivers/hwmon/emc2103.c
7580
Hans de Goedea98d5062011-03-21 17:59:36 +01007581SMSC SCH5627 HARDWARE MONITOR DRIVER
7582M: Hans de Goede <hdegoede@redhat.com>
7583L: lm-sensors@lm-sensors.org
7584S: Supported
7585F: Documentation/hwmon/sch5627
7586F: drivers/hwmon/sch5627.c
7587
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007588SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007589M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007590L: lm-sensors@lm-sensors.org
7591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007592F: Documentation/hwmon/smsc47b397
7593F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007594
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007595SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007596M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007597L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007599F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007600F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007601
Steve Glendinning2cb37722008-12-11 20:54:30 -08007602SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007603M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007604L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007605S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007606F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007607
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007608SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007609M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007610L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007611S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007612F: drivers/video/smscufx.c
7613
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007614SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007615M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007616L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007617T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007618S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007619F: include/media/soc*
7620F: drivers/media/i2c/soc_camera/
7621F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007622
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007623SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007624M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007626F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007627
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007629M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007632F: drivers/md/
7633F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007634F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007638L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007640F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641
Michael Buesch61e115a2007-09-18 15:12:50 -04007642SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007643M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007644L: netdev@vger.kernel.org
7645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007646F: drivers/ssb/
7647F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007648
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007650M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007651L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007652W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007654F: Documentation/laptops/sony-laptop.txt
7655F: drivers/char/sonypi.c
7656F: drivers/platform/x86/sony-laptop.c
7657F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658
Alex Dubovbaf85322008-02-09 10:20:54 -08007659SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007660M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007661W: http://tifmxx.berlios.de/
7662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007663F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007664
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007666M: Jaroslav Kysela <perex@perex.cz>
7667M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007668L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007669W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007670T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007671T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007673F: Documentation/sound/
7674F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007675F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007676F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
Mark Brownbd903bd2008-11-19 19:16:05 +00007678SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007679M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007680M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007681T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007682L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007683W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007684S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007685F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007686F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007687
Sam Ravnborg473321f2009-01-04 15:47:49 -08007688SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007689M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007691Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007692T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7693T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007696F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
David S. Miller6404fcc2010-03-16 01:00:17 -07007698SPARC SERIAL DRIVERS
7699M: "David S. Miller" <davem@davemloft.net>
7700L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007701T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7702T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007703S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007704F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007705F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007706F: drivers/tty/serial/sunhv.c
7707F: drivers/tty/serial/sunsab.c
7708F: drivers/tty/serial/sunsab.h
7709F: drivers/tty/serial/sunsu.c
7710F: drivers/tty/serial/sunzilog.c
7711F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007712
Christopher Li389325b2012-04-05 14:25:14 -07007713SPARSE CHECKER
7714M: "Christopher Li" <sparse@chrisli.org>
7715L: linux-sparse@vger.kernel.org
7716W: https://sparse.wiki.kernel.org/
7717T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7718T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7719S: Maintained
7720F: include/linux/compiler.h
7721
viresh kumarfc0c1952010-04-01 12:31:21 +01007722SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007723M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307724M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007725L: spear-devel@list.st.com
7726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007727W: http://www.st.com/spear
7728S: Maintained
7729F: arch/arm/plat-spear/
7730
Viresh Kumar71e09a92012-04-20 22:39:48 +05307731SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007732M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307733M: Shiraz Hashim <shiraz.hashim@st.com>
7734L: spear-devel@list.st.com
7735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7736W: http://www.st.com/spear
7737S: Maintained
7738F: arch/arm/mach-spear13xx/
7739
viresh kumarfc0c1952010-04-01 12:31:21 +01007740SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007741M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307742M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007743L: spear-devel@list.st.com
7744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007745W: http://www.st.com/spear
7746S: Maintained
7747F: arch/arm/mach-spear3xx/
7748
7749SPEAR6XX MACHINE SUPPORT
7750M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307751M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007752M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007753L: spear-devel@list.st.com
7754L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007755W: http://www.st.com/spear
7756S: Maintained
7757F: arch/arm/mach-spear6xx/
7758
7759SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007760M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007761L: spear-devel@list.st.com
7762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007763W: http://www.st.com/spear
7764S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307765F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007766
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007767SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007768M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01007769L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01007770T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007771Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007773F: Documentation/spi/
7774F: drivers/spi/
7775F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007776F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007777
Jim Lewis2752e402006-09-29 02:01:19 -07007778SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007779M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7780M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007781L: netdev@vger.kernel.org
7782S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007783F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007784F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007785
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007786SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007787M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007788L: linuxppc-dev@lists.ozlabs.org
7789L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007790W: http://www.ibm.com/developerworks/power/cell/
7791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007792F: Documentation/filesystems/spufs.txt
7793F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007794
Phillip Lougherfc555842009-01-05 08:46:29 +00007795SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007796M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007797L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7798W: http://squashfs.org.uk
7799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007800F: Documentation/filesystems/squashfs.txt
7801F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007802
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007804M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007806F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807
Linus Torvalds26e9a392008-10-17 09:50:12 -07007808STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007809M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007810L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007811S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07007812F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007813
Linus Torvalds26e9a392008-10-17 09:50:12 -07007814STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007815M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007816T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007817L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007819F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007820
Joe Perchesc8c8b102011-07-05 09:42:12 -07007821STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7822M: Henk de Groot <pe1dnn@amsat.org>
7823S: Odd Fixes
7824F: drivers/staging/wlags49_h2/
7825F: drivers/staging/wlags49_h25/
7826
Joe Perchesc9555152011-07-05 09:42:01 -07007827STAGING - ASUS OLED
7828M: Jakub Schmidtke <sjakub@gmail.com>
7829S: Odd Fixes
7830F: drivers/staging/asus_oled/
7831
Joe Perchesebd3d012011-07-05 09:42:02 -07007832STAGING - COMEDI
7833M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04007834M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07007835S: Odd Fixes
7836F: drivers/staging/comedi/
7837
Joe Perches8ca572c2011-07-05 09:42:03 -07007838STAGING - CRYSTAL HD VIDEO DECODER
7839M: Naren Sankar <nsankar@broadcom.com>
7840M: Jarod Wilson <jarod@wilsonet.com>
7841M: Scott Davilla <davilla@4pi.com>
7842M: Manu Abraham <abraham.manu@gmail.com>
7843S: Odd Fixes
7844F: drivers/staging/crystalhd/
7845
Joe Perches0f16ffc2011-07-05 09:42:04 -07007846STAGING - ECHO CANCELLER
7847M: Steve Underwood <steveu@coppice.org>
7848M: David Rowe <david@rowetel.com>
7849S: Odd Fixes
7850F: drivers/staging/echo/
7851
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007852STAGING - ET131X NETWORK DRIVER
7853M: Mark Einon <mark.einon@gmail.com>
7854S: Odd Fixes
7855F: drivers/staging/et131x/
7856
Joe Perchesa0138162011-07-05 15:21:34 -07007857STAGING - FLARION FT1000 DRIVERS
7858M: Marek Belisko <marek.belisko@gmail.com>
7859S: Odd Fixes
7860F: drivers/staging/ft1000/
7861
Joe Perchesec3fab92011-07-05 09:42:05 -07007862STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7863M: David Täht <d@teklibre.com>
7864S: Odd Fixes
7865F: drivers/staging/frontier/
7866
Hans Verkuil98ded592013-03-09 12:59:44 -03007867STAGING - GO7007 MPEG CODEC
7868M: Hans Verkuil <hans.verkuil@cisco.com>
7869S: Maintained
7870F: drivers/staging/media/go7007/
7871
Joe Perches6c1bb422011-07-05 09:42:07 -07007872STAGING - INDUSTRIAL IO
7873M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007874L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007875S: Odd Fixes
7876F: drivers/staging/iio/
7877
Joe Perchesa0138162011-07-05 15:21:34 -07007878STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7879M: Jarod Wilson <jarod@wilsonet.com>
7880W: http://www.lirc.org/
7881S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007882F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007883
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007884STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007885M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007886M: Marc Dietrich <marvin24@gmx.de>
7887L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007888L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007889S: Maintained
7890F: drivers/staging/nvec/
7891
Joe Perchesa0138162011-07-05 15:21:34 -07007892STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7893M: Andres Salomon <dilinger@queued.net>
7894M: Chris Ball <cjb@laptop.org>
7895M: Jon Nettleton <jon.nettleton@gmail.com>
7896W: http://wiki.laptop.org/go/DCON
7897S: Odd Fixes
7898F: drivers/staging/olpc_dcon/
7899
Chris Kelly94cfdd12012-03-14 10:55:42 +00007900STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007901M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007902S: Maintained
7903F: drivers/staging/ozwpan/
7904
Joe Perchesa0138162011-07-05 15:21:34 -07007905STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007906M: Willy Tarreau <willy@meta-x.org>
7907S: Odd Fixes
7908F: drivers/staging/panel/
7909
Joe Perchesa0138162011-07-05 15:21:34 -07007910STAGING - REALTEK RTL8712U DRIVERS
7911M: Larry Finger <Larry.Finger@lwfinger.net>
7912M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7913S: Odd Fixes
7914F: drivers/staging/rtl8712/
7915
Joe Perches9629fa82011-07-05 09:42:09 -07007916STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7917M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7918S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007919F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007920
Joe Perchesa0138162011-07-05 15:21:34 -07007921STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007922M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7923S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007924F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007925
7926STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7927M: William Hubbs <w.d.hubbs@gmail.com>
7928M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -05007929M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -07007930M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7931L: speakup@braille.uwo.ca
7932W: http://www.linux-speakup.org/
7933S: Odd Fixes
7934F: drivers/staging/speakup/
7935
7936STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007937M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007938S: Odd Fixes
7939F: drivers/staging/tidspbridge/
7940
Joe Perchesa0138162011-07-05 15:21:34 -07007941STAGING - USB ENE SM/MS CARD READER DRIVER
7942M: Al Cho <acho@novell.com>
7943S: Odd Fixes
7944F: drivers/staging/keucr/
7945
Joe Perchesb3e871c2011-07-05 09:42:10 -07007946STAGING - VIA VT665X DRIVERS
7947M: Forest Bond <forest@alittletooquiet.net>
7948S: Odd Fixes
7949F: drivers/staging/vt665?/
7950
Joe Perches81a9a522011-07-05 09:42:11 -07007951STAGING - WINBOND IS89C35 WLAN USB DRIVER
7952M: Pavel Machek <pavel@ucw.cz>
7953S: Odd Fixes
7954F: drivers/staging/winbond/
7955
Joe Perches709bcb02011-07-05 09:42:13 -07007956STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007957M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007958S: Odd Fixes
7959F: drivers/staging/xgifb/
7960
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007962M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007963S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007964F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007966SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007967M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007968W: http://sammy.net/sun3/
7969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007970F: arch/m68k/kernel/*sun3*
7971F: arch/m68k/sun3*/
7972F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007973F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007974
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007975SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007976M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007977L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007979Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007980T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007981S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007982F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007983F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007984F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007985
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007986SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007987M: Len Brown <len.brown@intel.com>
7988M: Pavel Machek <pavel@ucw.cz>
7989M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007990L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007992F: Documentation/power/
7993F: arch/x86/kernel/acpi/
7994F: drivers/base/power/
7995F: kernel/power/
7996F: include/linux/suspend.h
7997F: include/linux/freezer.h
7998F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999
8000SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07008001M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002L: linux-video@atrey.karlin.mff.cuni.cz
8003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008004F: Documentation/svga.txt
8005F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07008007SWIOTLB SUBSYSTEM
8008M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8009L: linux-kernel@vger.kernel.org
8010S: Supported
8011F: lib/swiotlb.c
8012F: arch/*/kernel/pci-swiotlb.c
8013F: include/linux/swiotlb.h
8014
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308015SYNOPSYS ARC ARCHITECTURE
8016M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308017S: Supported
8018F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05308019F: Documentation/devicetree/bindings/arc/
8020F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308021
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008023M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: Documentation/filesystems/sysv-fs.txt
8026F: fs/sysv/
8027F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008029TARGET SUBSYSTEM
8030M: Nicholas A. Bellinger <nab@linux-iscsi.org>
8031L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00008032L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008033L: http://groups.google.com/group/linux-iscsi-target-dev
8034W: http://www.linux-iscsi.org
Nicholas Bellinger452cf322013-05-11 16:27:56 -07008035T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008036S: Supported
8037F: drivers/target/
8038F: include/target/
8039F: Documentation/target/
8040
Alan Cox4e688522008-04-30 00:52:11 -07008041TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07008042M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07008043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008044F: Documentation/accounting/taskstats*
8045F: include/linux/taskstats*
8046F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07008047
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008048TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00008049M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008050L: netdev@vger.kernel.org
8051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008052F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008053F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07008054F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008055
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008056TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008057M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8058M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008059W: http://tcp-lp-mod.sourceforge.net/
8060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008061F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008062
Antti Palosaari91952bc2012-10-01 12:28:46 -03008063TDA10071 MEDIA DRIVER
8064M: Antti Palosaari <crope@iki.fi>
8065L: linux-media@vger.kernel.org
8066W: http://linuxtv.org/
8067W: http://palosaari.fi/linux/
8068Q: http://patchwork.linuxtv.org/project/linux-media/list/
8069T: git git://linuxtv.org/anttip/media_tree.git
8070S: Maintained
8071F: drivers/media/dvb-frontends/tda10071*
8072
8073TDA18212 MEDIA DRIVER
8074M: Antti Palosaari <crope@iki.fi>
8075L: linux-media@vger.kernel.org
8076W: http://linuxtv.org/
8077W: http://palosaari.fi/linux/
8078Q: http://patchwork.linuxtv.org/project/linux-media/list/
8079T: git git://linuxtv.org/anttip/media_tree.git
8080S: Maintained
8081F: drivers/media/tuners/tda18212*
8082
8083TDA18218 MEDIA DRIVER
8084M: Antti Palosaari <crope@iki.fi>
8085L: linux-media@vger.kernel.org
8086W: http://linuxtv.org/
8087W: http://palosaari.fi/linux/
8088Q: http://patchwork.linuxtv.org/project/linux-media/list/
8089T: git git://linuxtv.org/anttip/media_tree.git
8090S: Maintained
8091F: drivers/media/tuners/tda18218*
8092
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03008093TDA18271 MEDIA DRIVER
8094M: Michael Krufky <mkrufky@linuxtv.org>
8095L: linux-media@vger.kernel.org
8096W: http://linuxtv.org/
8097W: http://github.com/mkrufky
8098Q: http://patchwork.linuxtv.org/project/linux-media/list/
8099T: git git://linuxtv.org/mkrufky/tuners.git
8100S: Maintained
8101F: drivers/media/tuners/tda18271*
8102
Michael Krufkye48307a2012-10-02 00:56:33 -03008103TDA827x MEDIA DRIVER
8104M: Michael Krufky <mkrufky@linuxtv.org>
8105L: linux-media@vger.kernel.org
8106W: http://linuxtv.org/
8107W: http://github.com/mkrufky
8108Q: http://patchwork.linuxtv.org/project/linux-media/list/
8109T: git git://linuxtv.org/mkrufky/tuners.git
8110S: Maintained
8111F: drivers/media/tuners/tda8290.*
8112
Michael Krufky66cf9212012-10-02 00:56:28 -03008113TDA8290 MEDIA DRIVER
8114M: Michael Krufky <mkrufky@linuxtv.org>
8115L: linux-media@vger.kernel.org
8116W: http://linuxtv.org/
8117W: http://github.com/mkrufky
8118Q: http://patchwork.linuxtv.org/project/linux-media/list/
8119T: git git://linuxtv.org/mkrufky/tuners.git
8120S: Maintained
8121F: drivers/media/tuners/tda8290.*
8122
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008123TDA9840 MEDIA DRIVER
8124M: Hans Verkuil <hverkuil@xs4all.nl>
8125L: linux-media@vger.kernel.org
8126T: git git://linuxtv.org/media_tree.git
8127W: http://linuxtv.org
8128S: Maintained
8129F: drivers/media/i2c/tda9840*
8130
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008131TEA5761 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008132M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008133L: linux-media@vger.kernel.org
8134W: http://linuxtv.org
8135T: git git://linuxtv.org/media_tree.git
8136S: Odd fixes
8137F: drivers/media/tuners/tea5761.*
8138
8139TEA5767 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008140M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008141L: linux-media@vger.kernel.org
8142W: http://linuxtv.org
8143T: git git://linuxtv.org/media_tree.git
8144S: Maintained
8145F: drivers/media/tuners/tea5767.*
8146
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008147TEA6415C MEDIA DRIVER
8148M: Hans Verkuil <hverkuil@xs4all.nl>
8149L: linux-media@vger.kernel.org
8150T: git git://linuxtv.org/media_tree.git
8151W: http://linuxtv.org
8152S: Maintained
8153F: drivers/media/i2c/tea6415c*
8154
8155TEA6420 MEDIA DRIVER
8156M: Hans Verkuil <hverkuil@xs4all.nl>
8157L: linux-media@vger.kernel.org
8158T: git git://linuxtv.org/media_tree.git
8159W: http://linuxtv.org
8160S: Maintained
8161F: drivers/media/i2c/tea6420*
8162
Jiri Pirko3d249d42011-11-11 22:16:48 +00008163TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00008164M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00008165L: netdev@vger.kernel.org
8166S: Supported
8167F: drivers/net/team/
8168F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008169F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00008170
Vivien Didelot7d029122013-01-04 16:18:14 -05008171TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8172M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8173S: Maintained
8174F: arch/x86/platform/ts5500/
8175
Sean Young40ad4a32012-11-19 10:32:53 -03008176TECHNOTREND USB IR RECEIVER
8177M: Sean Young <sean@mess.org>
8178L: linux-media@vger.kernel.org
8179S: Maintained
8180F: drivers/media/rc/ttusbir.c
8181
Erik Gilling84b94142010-06-09 15:35:53 -07008182TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008183M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008184L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008185Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8186T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008187S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008188N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008189
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008190TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008191M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008192L: netdev@vger.kernel.org
8193S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008194F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008195
Alan Cox4e688522008-04-30 00:52:11 -07008196Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008197M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008199F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008200
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008201TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008202M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008203M: Max Filippov <jcmvbkbc@gmail.com>
8204L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008206F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008207
Zhang Ruid3fb6952012-11-15 08:58:27 +08008208THERMAL
8209M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008210M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008211L: linux-pm@vger.kernel.org
8212T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin65d467e2013-06-21 17:02:36 -04008213T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008214Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008215S: Supported
8216F: drivers/thermal/
8217F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008218F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008219
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008220THINGM BLINK(1) USB RGB LED DRIVER
8221M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8222S: Maintained
8223F: drivers/hid/hid-thingm.c
8224
Alan Cox4e688522008-04-30 00:52:11 -07008225THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008227L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008228L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008229W: http://ibm-acpi.sourceforge.net
8230W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008231T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008233F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008234
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008235TI BANDGAP AND THERMAL DRIVER
8236M: Eduardo Valentin <eduardo.valentin@ti.com>
8237L: linux-pm@vger.kernel.org
Eduardo Valentin794b2e22013-05-15 15:46:01 +00008238S: Supported
8239F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008240
Alex Dubov4020f2d2006-10-04 02:15:37 -07008241TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008244F: drivers/misc/tifm*
8245F: drivers/mmc/host/tifm_sd.c
8246F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008247
M R Swami Reddy152ad442012-04-02 20:02:31 +05308248TI LM49xxx FAMILY ASoC CODEC DRIVERS
8249M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308250M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308251L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8252S: Maintained
8253F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308254F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308255
Kim, Milo0edd8072012-12-17 16:01:17 -08008256TI LP855x BACKLIGHT DRIVER
8257M: Milo Kim <milo.kim@ti.com>
8258S: Maintained
8259F: Documentation/backlight/lp855x-driver.txt
8260F: drivers/video/backlight/lp855x_bl.c
8261F: include/linux/platform_data/lp855x.h
8262
Kim, Milofaf13f62012-12-10 05:27:03 +00008263TI LP8727 CHARGER DRIVER
8264M: Milo Kim <milo.kim@ti.com>
8265S: Maintained
8266F: drivers/power/lp8727_charger.c
8267F: include/linux/platform_data/lp8727.h
8268
Kim, Milo22f12292012-12-10 05:27:55 +00008269TI LP8788 MFD DRIVER
8270M: Milo Kim <milo.kim@ti.com>
8271S: Maintained
8272F: drivers/iio/adc/lp8788_adc.c
8273F: drivers/leds/leds-lp8788.c
8274F: drivers/mfd/lp8788*.c
8275F: drivers/power/lp8788-charger.c
8276F: drivers/regulator/lp8788-*.c
8277F: include/linux/mfd/lp8788*.h
8278
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008279TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008280M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008281L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8282S: Maintained
8283F: sound/soc/codecs/twl4030*
8284
Luciano Coelho90921012011-11-20 21:40:41 +02008285TI WILINK WIRELESS DRIVERS
Luciano Coelhod6158a52013-07-30 20:45:41 +03008286M: Luciano Coelho <luca@coelho.fi>
Luciano Coelho90921012011-11-20 21:40:41 +02008287L: linux-wireless@vger.kernel.org
8288W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8289W: http://wireless.kernel.org/en/users/Drivers/wl1251
8290T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8291S: Maintained
8292F: drivers/net/wireless/ti/
8293F: include/linux/wl12xx.h
8294
Per Lidene86eaa32006-01-12 16:45:18 +01008295TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008296M: Jon Maloy <jon.maloy@ericsson.com>
8297M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008298L: netdev@vger.kernel.org (core kernel code)
8299L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008300W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008301S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008302F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008303F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008304
Chris Metcalf867e3592010-05-28 23:09:12 -04008305TILE ARCHITECTURE
8306M: Chris Metcalf <cmetcalf@tilera.com>
8307W: http://www.tilera.com/scm/
8308S: Supported
8309F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008310F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008311F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008312F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008313
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008315M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008316L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317W: http://sourceforge.net/projects/tlan/
8318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008319F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008320F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008322TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008323M: Kentaro Takeda <takedakn@nttdata.co.jp>
8324M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008325L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8326L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008327L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8328L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8329W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008330T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008332F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008333
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008334TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008335M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008336L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008337S: Maintained
8338F: drivers/platform/x86/topstar-laptop.c
8339
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008341L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008342S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008343F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344
8345TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008346M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347L: tlinux-users@tce.toshiba-dme.co.jp
8348W: http://www.buzzard.org.uk/toshiba/
8349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008350F: drivers/char/toshiba.c
8351F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008352F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353
Pierre Ossmand719f902009-03-24 21:06:09 +01008354TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008355M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008356M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008357L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008358S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008359F: drivers/mmc/host/tmio_mmc*
8360F: drivers/mmc/host/sh_mobile_sdhi.c
8361F: include/linux/mmc/tmio.h
8362F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008363
Guenter Roeck917cc4e2013-05-19 20:44:27 -07008364TMP401 HARDWARE MONITOR DRIVER
8365M: Guenter Roeck <linux@roeck-us.net>
8366L: lm-sensors@lm-sensors.org
8367S: Maintained
8368F: Documentation/hwmon/tmp401
8369F: drivers/hwmon/tmp401.c
8370
Hugh Dickins98f32602009-05-21 20:33:58 +01008371TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008372M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008373L: linux-mm@kvack.org
8374S: Maintained
8375F: include/linux/shmem_fs.h
8376F: mm/shmem.c
8377
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008378TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008379M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008380L: linux-media@vger.kernel.org
8381W: http://linuxtv.org
8382T: git git://linuxtv.org/media_tree.git
8383S: Odd fixes
8384F: drivers/media/usb/tm6000/
8385
Alan Cox4e688522008-04-30 00:52:11 -07008386TPM DEVICE DRIVER
Kent Yoder5b88e272013-05-22 10:56:58 -05008387M: Leonidas Da Silva Barbosa <leosilva@linux.vnet.ibm.com>
8388M: Ashley Lai <ashley@ashleylai.com>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008389M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008390W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008391M: Marcel Selhorst <tpmdd@selhorst.net>
8392M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008393W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008394L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008396F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008397
Joe Perchesd6f005a2009-10-26 16:49:40 -07008398TRACING
8399M: Steven Rostedt <rostedt@goodmis.org>
8400M: Frederic Weisbecker <fweisbec@gmail.com>
8401M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008402T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008403S: Maintained
8404F: Documentation/trace/ftrace.txt
8405F: arch/*/*/*/ftrace.h
8406F: arch/*/kernel/ftrace.c
8407F: include/*/ftrace.h
8408F: include/linux/trace*.h
8409F: include/trace/
8410F: kernel/trace/
8411
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008413M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008414T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008416K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417
Alan Cox4e688522008-04-30 00:52:11 -07008418TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008419M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008420M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008421S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008422T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008423F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008424F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008425F: include/linux/serial_core.h
8426F: include/linux/serial.h
8427F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008428F: include/uapi/linux/serial_core.h
8429F: include/uapi/linux/serial.h
8430F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008431
Antti Palosaari91952bc2012-10-01 12:28:46 -03008432TUA9001 MEDIA DRIVER
8433M: Antti Palosaari <crope@iki.fi>
8434L: linux-media@vger.kernel.org
8435W: http://linuxtv.org/
8436W: http://palosaari.fi/linux/
8437Q: http://patchwork.linuxtv.org/project/linux-media/list/
8438T: git git://linuxtv.org/anttip/media_tree.git
8439S: Maintained
8440F: drivers/media/tuners/tua9001*
8441
Grant Grundler740db6d2008-02-17 11:53:49 -07008442TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008443M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008444L: netdev@vger.kernel.org
8445S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008446F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447
8448TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008449M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450W: http://vtun.sourceforge.net/tun
8451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008452F: Documentation/networking/tuntap.txt
8453F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008455TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008456M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008458F: drivers/tc/
8459F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008460
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008462M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463L: linux-scsi@vger.kernel.org
8464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008465F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008467UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008468M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008469M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008470L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008471T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008472W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008474F: Documentation/filesystems/ubifs.txt
8475F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008476
Alan Coxcc2020e2008-05-19 14:21:51 +01008477UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008478M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008479W: http://www.uclinux.org/
8480L: uclinux-dev@uclinux.org (subscribers-only)
8481S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008482F: arch/m68k/*/*_no.*
8483F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008484
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008485UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008486M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008487W: http://uclinux-h8.sourceforge.jp/
8488S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008489F: arch/h8300/
8490F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008491F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008492
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008494M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008496F: Documentation/filesystems/udf.txt
8497F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498
Alan Coxcc2020e2008-05-19 14:21:51 +01008499UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008500M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008502F: Documentation/filesystems/ufs.txt
8503F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008504
David Herrmann0a09d3a2012-06-10 15:16:28 +02008505UHID USERSPACE HID IO DRIVER:
8506M: David Herrmann <dh.herrmann@googlemail.com>
8507L: linux-input@vger.kernel.org
8508S: Maintained
8509F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008510F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008511
David Vrabel18332a82008-09-17 16:34:44 +01008512ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008513L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008514S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008515F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008516F: include/linux/uwb.h
8517F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008518
GuanXuetaob31d8272011-01-16 00:35:49 +08008519UNICORE32 ARCHITECTURE:
8520M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8521W: http://mprc.pku.edu.cn/~guanxuetao/linux
8522S: Maintained
8523T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8524F: arch/unicore32/
8525
Tony Finchd8379ab2009-11-27 15:50:30 +00008526UNIFDEF
8527M: Tony Finch <dot@dotat.at>
8528W: http://dotat.at/prog/unifdef
8529S: Maintained
8530F: scripts/unifdef.c
8531
Linus Torvalds1da177e2005-04-16 15:20:36 -07008532UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008533M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534W: http://www.kernel.dk
8535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008536F: Documentation/cdrom/
8537F: drivers/cdrom/cdrom.c
8538F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008539F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308541UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8542M: Vinayak Holikatti <vinholikatti@gmail.com>
8543M: Santosh Y <santoshsy@gmail.com>
8544L: linux-scsi@vger.kernel.org
8545S: Supported
8546F: Documentation/scsi/ufs.txt
8547F: drivers/scsi/ufs/
8548
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008549UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008550M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008551W: http://www.linux-mtd.infradead.org/
8552L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008553T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008554S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008555F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008556F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008557F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008558
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008559UNSORTED BLOCK IMAGES (UBI) Fastmap
8560M: Richard Weinberger <richard@nod.at>
8561L: linux-mtd@lists.infradead.org
8562S: Maintained
8563F: drivers/mtd/ubi/fastmap.c
8564
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008566M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008567L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008569F: Documentation/usb/acm.txt
8570F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008571
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008572USB AR5523 WIRELESS DRIVER
8573M: Pontus Fuchs <pontus.fuchs@gmail.com>
8574L: linux-wireless@vger.kernel.org
8575S: Maintained
8576F: drivers/net/wireless/ath/ar5523/
8577
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008578USB ATTACHED SCSI
8579M: Matthew Wilcox <willy@linux.intel.com>
8580M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008581M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008582L: linux-usb@vger.kernel.org
8583L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008584S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008585F: drivers/usb/storage/uas.c
8586
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008588M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008589L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008591F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008592F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008594USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008595M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008596L: linux-usb@vger.kernel.org
8597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008598F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008599
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008600USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008601M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008602L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008603W: http://www.linux-usb.org/usbnet
8604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008605F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008606
Alan Coxcc2020e2008-05-19 14:21:51 +01008607USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008608M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008609L: rio500-users@lists.sourceforge.net
8610W: http://rio500.sourceforge.net
8611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008612F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008613
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008615M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008616L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008618F: Documentation/usb/ehci.txt
8619F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008620
David Brownell69ae9e32006-11-14 02:03:31 -08008621USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008622M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008623L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008624W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008625T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008627F: drivers/usb/gadget/
8628F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008629
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008630USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008631M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008632L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008633T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008634S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008635F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008636F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637
matt mooney857aab32011-06-17 15:50:46 -07008638USB/IP DRIVERS
8639M: Matt Mooney <mfm@muteddisk.com>
8640L: linux-usb@vger.kernel.org
8641S: Maintained
8642F: drivers/staging/usbip/
8643
Olav Kongas959eea22005-11-03 17:38:14 +02008644USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008645M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008646L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008648F: drivers/usb/host/isp116x*
8649F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008650
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008652M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008653L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008655F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656
8657USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008658M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008659L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008660L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661S: Maintained
8662W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008663F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664
Clemens Ladischaf399172011-01-10 16:32:54 +01008665USB MIDI DRIVER
8666M: Clemens Ladisch <clemens@ladisch.de>
8667L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8668T: git git://git.alsa-project.org/alsa-kernel.git
8669S: Maintained
8670F: sound/usb/midi.*
8671
Joe Perches444ce9d2013-08-01 21:03:32 -07008672USB NETWORKING DRIVERS
8673L: linux-usb@vger.kernel.org
8674S: Odd Fixes
8675F: drivers/net/usb/
8676
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008678M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008679L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008681F: Documentation/usb/ohci.txt
8682F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683
Matthias Urlichsba460e42005-07-14 00:33:47 -07008684USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008685M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008686L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008688F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008689
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008691M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008692L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008693L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008694T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695W: http://pegasus2.sourceforge.net/
8696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008697F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698
Felipe Balbid3ad5582012-05-21 16:24:49 +03008699USB PHY LAYER
8700M: Felipe Balbi <balbi@ti.com>
8701L: linux-usb@vger.kernel.org
8702T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8703S: Maintained
8704F: drivers/usb/phy/
8705F: drivers/usb/otg/
8706
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008707USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008708M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008709L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008711F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712
8713USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008714M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008715L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008716L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008717T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008718W: http://pegasus2.sourceforge.net/
8719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008720F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721
Alan Cox4e688522008-04-30 00:52:11 -07008722USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008723M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008724L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008726F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008727
8728USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008729M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008730L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008731S: Maintained
8732W: http://geocities.com/i0xox0i
8733W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008734F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008735
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008737M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008738W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008740F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008741
8742USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008743M: Peter Berger <pberger@brimson.com>
8744M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008745L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008747F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748
8749USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008750M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008751L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008753F: Documentation/usb/usb-serial.txt
8754F: drivers/usb/serial/generic.c
8755F: drivers/usb/serial/usb-serial.c
8756F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757
Linus Torvalds1da177e2005-04-16 15:20:36 -07008758USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008759M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008760L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008762F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008763
8764USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008765M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008766L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008768F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008769
8770USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008771M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008772L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008773W: http://www.connecttech.com
8774S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008775F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008777USB SMSC75XX ETHERNET DRIVER
8778M: Steve Glendinning <steve.glendinning@shawell.net>
8779L: netdev@vger.kernel.org
8780S: Maintained
8781F: drivers/net/usb/smsc75xx.*
8782
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008783USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008784M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008785L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008787F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008788
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008789USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008790M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008791L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008792L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008793T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794W: http://www.linux-projects.org
8795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008796F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008797F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008798
8799USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008800M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008801L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008802W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008803T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008804S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008805F: Documentation/usb/
8806F: drivers/net/usb/
8807F: drivers/usb/
8808F: include/linux/usb.h
8809F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810
8811USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008812M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008813L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008815F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816
David Brownell69ae9e32006-11-14 02:03:31 -08008817USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008818M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008819L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008820W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008822F: drivers/net/usb/usbnet.c
8823F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008824
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008825USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008826M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008827L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008828L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008829T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008830W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008831S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008832F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008833F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008834
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008835USB VISION DRIVER
8836M: Hans Verkuil <hverkuil@xs4all.nl>
8837L: linux-media@vger.kernel.org
8838T: git git://linuxtv.org/media_tree.git
8839W: http://linuxtv.org
8840S: Odd Fixes
8841F: drivers/media/usb/usbvision/
8842
Laurent Pinchart8282da42012-10-04 02:32:42 +02008843USB WEBCAM GADGET
8844M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8845L: linux-usb@vger.kernel.org
8846S: Maintained
8847F: drivers/usb/gadget/*uvc*.c
8848F: drivers/usb/gadget/webcam.c
8849
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008850USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008851M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008852L: linux-wireless@vger.kernel.org
8853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008854F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008855
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008856USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008857M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008858L: linux-usb@vger.kernel.org
8859S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008860F: drivers/usb/host/xhci*
8861F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008862
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008864L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008867F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008868
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008869USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008870M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008871L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008872L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008873T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008874W: http://royale.zerezo.com/zr364xx/
8875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008876F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008877F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008878
Randy Dunlape7839f22008-10-12 16:11:45 -07008879USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008880M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008881M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008882L: user-mode-linux-devel@lists.sourceforge.net
8883L: user-mode-linux-user@lists.sourceforge.net
8884W: http://user-mode-linux.sourceforge.net
8885S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008886F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008887F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008888F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008889F: fs/hostfs/
8890F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008891
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008892USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008893M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008894M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008896F: Documentation/DocBook/uio-howto.tmpl
8897F: drivers/uio/
8898F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008899
Karel Zak256cccb2012-06-01 10:13:09 +02008900UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008901M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008902L: util-linux@vger.kernel.org
8903W: http://en.wikipedia.org/wiki/Util-linux
8904T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008905S: Maintained
8906
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008907UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008908M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008909L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008910W: http://dev.gentoo.org/~spock/projects/uvesafb/
8911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008912F: Documentation/fb/uvesafb.txt
8913F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008914
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008915VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008916M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008918F: Documentation/filesystems/vfat.txt
8919F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008920
Alex Williamsoncba33452012-07-31 08:16:22 -06008921VFIO DRIVER
8922M: Alex Williamson <alex.williamson@redhat.com>
8923L: kvm@vger.kernel.org
8924S: Maintained
8925F: Documentation/vfio.txt
8926F: drivers/vfio/
8927F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008928F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008929
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008930VIDEOBUF2 FRAMEWORK
8931M: Pawel Osciak <pawel@osciak.com>
8932M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008933M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008934L: linux-media@vger.kernel.org
8935S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008936F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008937F: include/media/videobuf2-*
8938
Amit Shah9a824462010-03-23 18:23:09 +05308939VIRTIO CONSOLE DRIVER
8940M: Amit Shah <amit.shah@redhat.com>
8941L: virtualization@lists.linux-foundation.org
8942S: Maintained
8943F: drivers/char/virtio_console.c
8944F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008945F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308946
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308947VIRTIO CORE, NET AND BLOCK DRIVERS
8948M: Rusty Russell <rusty@rustcorp.com.au>
8949M: "Michael S. Tsirkin" <mst@redhat.com>
8950L: virtualization@lists.linux-foundation.org
8951S: Maintained
8952F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +09308953F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308954F: drivers/net/virtio_net.c
8955F: drivers/block/virtio_blk.c
8956F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308957F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308958
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008959VIRTIO HOST (VHOST)
8960M: "Michael S. Tsirkin" <mst@redhat.com>
8961L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008962L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008963L: netdev@vger.kernel.org
8964S: Maintained
8965F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008966F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008967
Linus Torvalds1da177e2005-04-16 15:20:36 -07008968VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008969M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008971F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008972
Harald Weltef0bf7f62009-06-17 20:22:39 +02008973VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008974M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008975M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008976S: Maintained
8977F: drivers/mmc/host/via-sdmmc.c
8978
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008979VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008980M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008981L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008982S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008983F: include/linux/via-core.h
8984F: include/linux/via-gpio.h
8985F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008986F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008987
Francois Romieu01f20732007-01-26 00:57:17 -08008988VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008989M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008990L: netdev@vger.kernel.org
8991S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008992F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008993
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008994VIVI VIRTUAL VIDEO DRIVER
8995M: Hans Verkuil <hverkuil@xs4all.nl>
8996L: linux-media@vger.kernel.org
8997T: git git://linuxtv.org/media_tree.git
8998W: http://linuxtv.org
8999S: Maintained
9000F: drivers/media/platform/vivi*
9001
Patrick McHardybe7f8272007-10-23 20:26:36 -07009002VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07009003M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07009004L: netdev@vger.kernel.org
9005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009006F: drivers/net/macvlan.c
9007F: include/linux/if_*vlan.h
9008F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07009009
Florian Fainelli55e331c2009-06-16 15:33:53 -07009010VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07009011M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08009012L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07009013S: Maintained
9014F: drivers/vlynq/vlynq.c
9015F: include/linux/vlynq.h
9016
Martyn Welch390beae2012-05-03 17:52:36 +01009017VME SUBSYSTEM
9018M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02009019M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01009020M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9021L: devel@driverdev.osuosl.org
9022S: Maintained
9023T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9024F: Documentation/vme_api.txt
9025F: drivers/staging/vme/
9026F: drivers/vme/
9027F: include/linux/vme*
9028
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009029VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08009030M: Shreyas Bhatewara <sbhatewara@vmware.com>
9031M: "VMware, Inc." <pv-drivers@vmware.com>
9032L: netdev@vger.kernel.org
9033S: Maintained
9034F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009035
Alok Kataria851b1642009-10-13 14:51:05 -07009036VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08009037M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07009038M: VMware PV-Drivers <pv-drivers@vmware.com>
9039L: linux-scsi@vger.kernel.org
9040S: Maintained
9041F: drivers/scsi/vmw_pvscsi.c
9042F: drivers/scsi/vmw_pvscsi.h
9043
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009044VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08009045M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009046M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009047W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00009048W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +05309049T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009051F: drivers/regulator/
9052F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009053
Juerg Haefligerab413192006-09-24 20:54:04 +02009054VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009055M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02009056L: lm-sensors@lm-sensors.org
9057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009058F: Documentation/hwmon/vt1211
9059F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02009060
Roger Lucas1de9e372005-11-26 20:20:05 +01009061VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009062M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01009063L: lm-sensors@lm-sensors.org
9064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009065F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01009066
Tony Olech88095e72011-05-14 16:48:13 -04009067VUB300 USB to SDIO/SD/MMC bridge chip
9068M: Tony Olech <tony.olech@elandigitalsystems.com>
9069L: linux-mmc@vger.kernel.org
9070L: linux-usb@vger.kernel.org
9071S: Supported
9072F: drivers/mmc/host/vub300.c
9073
Linus Torvalds1da177e2005-04-16 15:20:36 -07009074W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07009075M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009077F: Documentation/w1/
9078F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079
Charles Spirakis13927072006-07-05 18:05:15 +02009080W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009081M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02009082L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04009083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009084F: Documentation/hwmon/w83791d
9085F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02009086
Rudolf Marek61db0112006-12-12 18:18:30 +01009087W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009088M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01009089L: lm-sensors@lm-sensors.org
9090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009091F: Documentation/hwmon/w83793
9092F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01009093
Jean Delvaree3760b42010-10-28 20:31:49 +02009094W83795 HARDWARE MONITORING DRIVER
9095M: Jean Delvare <khali@linux-fr.org>
9096L: lm-sensors@lm-sensors.org
9097S: Maintained
9098F: drivers/hwmon/w83795.c
9099
Linus Torvalds1da177e2005-04-16 15:20:36 -07009100W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009101M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009103F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009105WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07009106M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00009107L: linux-watchdog@vger.kernel.org
9108W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01009109T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009111F: Documentation/watchdog/
9112F: drivers/watchdog/
9113F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009114F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009115
Linus Torvalds1da177e2005-04-16 15:20:36 -07009116WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009117M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009118L: linux-scsi@vger.kernel.org
9119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009120F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009121
David Herrmannb22e00f2011-09-06 13:50:40 +02009122WIIMOTE HID DRIVER
9123M: David Herrmann <dh.herrmann@googlemail.com>
9124L: linux-input@vger.kernel.org
9125S: Maintained
9126F: drivers/hid/hid-wiimote*
9127
David Härdemane258b802009-09-21 17:04:53 -07009128WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07009129M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07009130S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07009131F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07009132
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009133WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07009134M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009135M: linux-wimax@intel.com
9136L: wimax@linuxwimax.org
9137S: Supported
9138W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07009139F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07009140F: include/linux/wimax/debug.h
9141F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009142F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07009143F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009144
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009145WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009146M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009148F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009149
Linus Torvalds1da177e2005-04-16 15:20:36 -07009150WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009151M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07009152L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03009153W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07009154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009155F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009156
Mark Brownfebf1df2008-04-02 00:51:09 -04009157WM97XX TOUCHSCREEN DRIVERS
Mark Brownd9f1f482013-06-01 19:31:15 +01009158M: Mark Brown <broonie@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009159M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04009160L: linux-input@vger.kernel.org
9161T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
9162W: http://opensource.wolfsonmicro.com/node/7
9163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009164F: drivers/input/touchscreen/*wm97*
9165F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04009166
Mark Brown055bcbc2010-08-13 14:18:12 +01009167WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +01009168L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07009169T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01009170T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07009171W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01009172S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08009173F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01009174F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01009175F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009176F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01009177F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01009178F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009179F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05009180F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09009181F: drivers/input/misc/wm831x-on.c
9182F: drivers/input/touchscreen/wm831x-ts.c
9183F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009184F: drivers/mfd/arizona*
9185F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01009186F: drivers/power/wm83*.c
9187F: drivers/rtc/rtc-wm83*.c
9188F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009189F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009190F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009191F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009192F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009193F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009194F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009195F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009196F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009197F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009198F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009199
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009200WORKQUEUE
9201M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009202T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9203S: Maintained
9204F: include/linux/workqueue.h
9205F: kernel/workqueue.c
9206F: Documentation/workqueue.txt
9207
Linus Torvalds1da177e2005-04-16 15:20:36 -07009208X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009209M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009210L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009211S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009212F: Documentation/networking/x25*
9213F: include/net/x25*
9214F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009216X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009217M: Thomas Gleixner <tglx@linutronix.de>
9218M: Ingo Molnar <mingo@redhat.com>
9219M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009220M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009221T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009223F: Documentation/x86/
9224F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009225
Matthew Garrettd0944852010-02-11 10:40:13 -05009226X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009227M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009228L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009229T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009230S: Maintained
9231F: drivers/platform/x86
9232
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009233X86 MCE INFRASTRUCTURE
9234M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009235M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009236L: linux-edac@vger.kernel.org
9237S: Maintained
9238F: arch/x86/kernel/cpu/mcheck/*
9239
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009240XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03009241M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009242L: linux-media@vger.kernel.org
9243W: http://linuxtv.org
9244T: git git://linuxtv.org/media_tree.git
9245S: Maintained
9246F: drivers/media/tuners/tuner-xc2028.*
9247
Ian Campbellc4468082011-04-27 15:26:46 -07009248XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009249M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009250M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009251L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9252L: virtualization@lists.linux-foundation.org
9253S: Supported
9254F: arch/x86/xen/
9255F: drivers/*/xen-*front.c
9256F: drivers/xen/
9257F: arch/x86/include/asm/xen/
9258F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009259F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009260
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009261XEN HYPERVISOR ARM
9262M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9263L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9264S: Supported
9265F: arch/arm/xen/
9266F: arch/arm/include/asm/xen/
9267
Stefano Stabellinib475e832013-06-04 16:13:23 +00009268XEN HYPERVISOR ARM64
9269M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9270L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9271S: Supported
9272F: arch/arm64/xen/
9273F: arch/arm64/include/asm/xen/
9274
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009275XEN NETWORK BACKEND DRIVER
9276M: Ian Campbell <ian.campbell@citrix.com>
9277L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9278L: netdev@vger.kernel.org
9279S: Supported
9280F: drivers/net/xen-netback/*
9281
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009282XEN PCI SUBSYSTEM
9283M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009284L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009285S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009286F: arch/x86/pci/*xen*
9287F: drivers/pci/*xen*
9288
9289XEN SWIOTLB SUBSYSTEM
9290M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009291L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009292S: Supported
9293F: arch/x86/xen/*swiotlb*
9294F: drivers/xen/*swiotlb*
9295
Linus Torvalds1da177e2005-04-16 15:20:36 -07009296XFS FILESYSTEM
9297P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009298M: Ben Myers <bpm@sgi.com>
9299M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009300M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009301L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009302W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009303T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009305F: Documentation/filesystems/xfs.txt
9306F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009307
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009308XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009309M: Anirudha Sarangi <anirudh@xilinx.com>
9310M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009311S: Maintained
9312F: drivers/net/ethernet/xilinx/xilinx_axienet*
9313
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009314XILINX SYSTEMACE DRIVER
Grant Likelycdeb8992013-07-22 01:38:32 +01009315S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009316F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009317
Peter Korsgaard238b8722006-12-06 20:35:17 -08009318XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009319M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009320L: linux-serial@vger.kernel.org
9321S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009322F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009323
Linus Torvalds1da177e2005-04-16 15:20:36 -07009324YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009325M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009326L: linux-hams@vger.kernel.org
9327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009328F: drivers/net/hamradio/yam*
9329F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009330
Henkaf64a5e2005-10-12 15:02:56 +02009331YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009332M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009333L: usbb2k-api-dev@nongnu.org
9334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009335F: Documentation/input/yealink.txt
9336F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009337
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009339M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009340W: http://yaina.de/jreuter/
9341W: http://www.qsl.net/dl1bke/
9342L: linux-hams@vger.kernel.org
9343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009344F: Documentation/networking/z8530drv.txt
9345F: drivers/net/hamradio/*scc.c
9346F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009348ZBUD COMPRESSED PAGE ALLOCATOR
9349M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9350L: linux-mm@kvack.org
9351S: Maintained
9352F: mm/zbud.c
9353F: include/linux/zbud.h
9354
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009355ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009356M: Daniel Drake <dsd@gentoo.org>
9357M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009358W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009359L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009360L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009362F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009363
Linus Torvalds1da177e2005-04-16 15:20:36 -07009364ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009365L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009366L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009368T: Mercurial http://linuxtv.org/hg/v4l-dvb
9369S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009370F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009371
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009372ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009373M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009374S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009375F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009376
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009377ZSWAP COMPRESSED SWAP CACHING
9378M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9379L: linux-mm@kvack.org
9380S: Maintained
9381F: mm/zswap.c
9382
Linus Torvalds1da177e2005-04-16 15:20:36 -07009383THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009384M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009385L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009386Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009387T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009388S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009389F: *
9390F: */