blob: a26b10e52aea18cf39b61095cc563cd940ff1dac [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
968ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700969M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800971S: Maintained
972
Philipp Zabel3b8861712008-07-09 21:27:15 +0100973ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100975S: Maintained
976
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200977ARM/Marvell Armada 370 and Armada XP SOC support
978M: Jason Cooper <jason@lakedaemon.net>
979M: Andrew Lunn <andrew@lunn.ch>
980M: Gregory Clement <gregory.clement@free-electrons.com>
981L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982S: Maintained
983F: arch/arm/mach-mvebu/
984
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400985ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
986M: Jason Cooper <jason@lakedaemon.net>
987M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700988L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400989S: Maintained
990F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400991F: arch/arm/mach-kirkwood/
992F: arch/arm/mach-mv78xx0/
993F: arch/arm/mach-orion5x/
994F: arch/arm/plat-orion/
995
Alexander Clouterd69ac132011-04-14 15:22:02 -0700996ARM/Orion SoC/Technologic Systems TS-78xx platform support
997M: Alexander Clouter <alex@digriz.org.uk>
998L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
999W: http://www.digriz.org.uk/ts78xx/kernel
1000S: Maintained
1001F: arch/arm/mach-orion5x/ts78xx-*
1002
Arnd Bergmannadcb0792012-09-07 12:21:56 +00001003ARM/MICREL KS8695 ARCHITECTURE
1004M: Greg Ungerer <gerg@uclinux.org>
1005L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1006F: arch/arm/mach-ks8695
1007S: Odd Fixes
1008
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001009ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001011L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +02001012F: arch/arm/mach-pxa/mioa701.c
1013S: Maintained
1014
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001015ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001017S: Maintained
1018
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001019ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001020M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001021M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001022M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1023L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1024S: Maintained
1025F: arch/arm/mach-nomadik/
1026F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001027F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001028T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001029
Andy Green9d762952009-05-19 06:41:42 -03001030ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001031M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001032L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1033W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1034S: Supported
1035
Daniel Walker0c19d212009-12-07 16:53:51 -08001036ARM/QUALCOMM MSM MACHINE SUPPORT
1037M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001038M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001039M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001040L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001041F: arch/arm/mach-msm/
1042F: drivers/video/msm/
1043F: drivers/mmc/host/msm_sdcc.c
1044F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001045F: drivers/tty/serial/msm_serial.h
1046F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001047F: drivers/*/pm8???-*
David Browncd9a8fb2013-03-12 11:41:55 -07001048F: drivers/ssbi/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001049F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001050T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001051S: Maintained
1052
Dirk Opfer8459c152005-11-06 14:27:52 +00001053ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001054M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1055M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001056S: Maintained
1057
Marek Vasut5d783a22009-07-16 13:26:48 +02001058ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001059M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001060L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001061W: http://hackndev.com
1062S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001063F: arch/arm/mach-pxa/include/mach/palmtx.h
1064F: arch/arm/mach-pxa/palmtx.c
1065F: arch/arm/mach-pxa/include/mach/palmt5.h
1066F: arch/arm/mach-pxa/palmt5.c
1067F: arch/arm/mach-pxa/include/mach/palmld.h
1068F: arch/arm/mach-pxa/palmld.c
1069F: arch/arm/mach-pxa/include/mach/palmte2.h
1070F: arch/arm/mach-pxa/palmte2.c
1071F: arch/arm/mach-pxa/include/mach/palmtc.h
1072F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001073
Joe Perchesb57fe922009-12-14 18:00:52 -08001074ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001075M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001076L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001077W: http://hackndev.com
1078S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001079F: arch/arm/mach-pxa/include/mach/palmtreo.h
1080F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001081
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001082ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001083M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001084L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001085W: http://hackndev.com
1086S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001087F: arch/arm/mach-pxa/include/mach/palmz72.h
1088F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001091M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1093S: Maintained
1094
1095ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098W: http://www.arm.linux.org.uk/
1099S: Maintained
1100
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001101ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001102M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001103L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001104S: Maintained
1105
Russell Kingd4275352009-04-16 14:05:27 +01001106ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001107M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001109W: http://www.arm.linux.org.uk/
1110S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001111F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1112F: arch/arm/include/asm/hardware/ioc.h
1113F: arch/arm/include/asm/hardware/iomd.h
1114F: arch/arm/include/asm/hardware/memc.h
1115F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001116F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001117F: drivers/net/ethernet/i825xx/ether1*
1118F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001119F: drivers/scsi/arm/
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001122M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123W: http://www.shark-linux.de/shark.html
1124S: Maintained
1125
Ben Dooksb21477f2009-06-13 10:46:34 +01001126ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001127M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001128M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001130L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001131W: http://www.fluff.org/ben/linux/
1132S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001133F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001134F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001135F: arch/arm/mach-s3c24*/
1136F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001137F: drivers/*/*s3c2410*
1138F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001139F: drivers/spi/spi-s3c*
1140F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001142ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001143M: Kukjin Kim <kgene.kim@samsung.com>
1144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1146S: Maintained
1147F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001148F: arch/arm/mach-exynos*/
Doug Anderson33d43cd2013-06-18 07:02:23 +09001149N: exynos
Kukjin Kimf556cb072010-09-30 15:15:35 -07001150
Kyungmin Park10ffa962011-03-04 17:36:26 -08001151ARM/SAMSUNG MOBILE MACHINE SUPPORT
1152M: Kyungmin Park <kyungmin.park@samsung.com>
1153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154S: Maintained
1155F: arch/arm/mach-s5pv210/mach-aquila.c
1156F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001157F: arch/arm/mach-exynos/mach-universal_c210.c
1158F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001159
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001160ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1161M: Kyungmin Park <kyungmin.park@samsung.com>
1162M: Kamil Debski <k.debski@samsung.com>
1163L: linux-arm-kernel@lists.infradead.org
1164L: linux-media@vger.kernel.org
1165S: Maintained
1166F: drivers/media/platform/s5p-g2d/
1167
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001168ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1169M: Kyungmin Park <kyungmin.park@samsung.com>
1170M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001171M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001172L: linux-arm-kernel@lists.infradead.org
1173L: linux-media@vger.kernel.org
1174S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001175F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001176F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001177
1178ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1179M: Kyungmin Park <kyungmin.park@samsung.com>
1180M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1181L: linux-arm-kernel@lists.infradead.org
1182L: linux-media@vger.kernel.org
1183S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001184F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001185
Paul Mundtd48d38e2010-02-08 12:50:24 +09001186ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001187M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001188M: Magnus Damm <magnus.damm@gmail.com>
1189L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001190W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001191Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001192T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001193S: Supported
1194F: arch/arm/mach-shmobile/
1195F: drivers/sh/
1196
Dinh Nguyen66314222012-07-18 16:07:18 -06001197ARM/SOCFPGA ARCHITECTURE
1198M: Dinh Nguyen <dinguyen@altera.com>
1199S: Maintained
1200F: arch/arm/mach-socfpga/
1201
1202ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1203M: Dinh Nguyen <dinguyen@altera.com>
1204S: Maintained
1205F: drivers/clk/socfpga/
1206
Srinivas Kandagatla65ebcc12013-06-25 12:15:10 +01001207ARM/STI ARCHITECTURE
1208M: Srinivas Kandagatla <srinivas.kandagatla@st.com>
1209M: Stuart Menefy <stuart.menefy@st.com>
1210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211L: kernel@stlinux.com
1212W: http://www.stlinux.com
1213S: Maintained
1214F: arch/arm/mach-sti/
1215
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001216ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001217M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001218L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001219S: Maintained
1220
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001221ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001222M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001223L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224S: Maintained
1225
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001226ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001227M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001228L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001229S: Maintained
1230
wanzongshun98ad6e32009-02-13 06:04:32 +01001231ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001232M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001234W: http://www.mcuos.com
1235S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001236F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001237F: drivers/input/keyboard/w90p910_keypad.c
1238F: drivers/input/touchscreen/w90p910_ts.c
1239F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001240F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001241F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001242F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001243F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001244F: drivers/usb/host/ehci-w90x900.c
1245F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001246
Linus Walleij54274d72010-04-04 10:58:03 +01001247ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001248M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001249L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250S: Supported
1251F: arch/arm/mach-u300/
1252F: drivers/i2c/busses/i2c-stu300.c
1253F: drivers/rtc/rtc-coh901331.c
1254F: drivers/watchdog/coh901327_wdt.c
1255F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001256F: drivers/mfd/ab3100*
1257F: drivers/rtc/rtc-ab3100.c
1258F: drivers/rtc/rtc-coh901331.c
1259T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001260
Linus Walleij87572882010-12-22 09:18:29 +01001261ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001262M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001263M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001264L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265S: Maintained
1266F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001267F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001268F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001269F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001270F: drivers/mfd/abx500*
1271F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001272F: drivers/mfd/dbx500*
1273F: drivers/mfd/db8500*
1274F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001275F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001276F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001277T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001278
Russell Kingd4275352009-04-16 14:05:27 +01001279ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001280M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001281L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001282W: http://www.arm.linux.org.uk/
1283S: Maintained
1284F: arch/arm/vfp/
1285
Marek Vasute66b6d82010-03-26 06:51:32 +01001286ARM/VOIPAC PXA270 SUPPORT
1287M: Marek Vasut <marek.vasut@gmail.com>
1288L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289S: Maintained
1290F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001291F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001292
Tony Prisk04529fe2012-07-24 04:19:37 +12001293ARM/VT8500 ARM ARCHITECTURE
1294M: Tony Prisk <linux@prisktech.co.nz>
1295L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296S: Maintained
1297F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001298F: drivers/clocksource/vt8500_timer.c
1299F: drivers/gpio/gpio-vt8500.c
Tony Prisk560746e2013-06-15 09:52:16 +12001300F: drivers/i2c/busses/i2c-wmt.c
Tony Prisk41fd91b2013-02-08 18:18:03 +13001301F: drivers/mmc/host/wmt-sdmmc.c
1302F: drivers/pwm/pwm-vt8500.c
1303F: drivers/rtc/rtc-vt8500.c
1304F: drivers/tty/serial/vt8500_serial.c
1305F: drivers/usb/host/ehci-vt8500.c
1306F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001307F: drivers/video/vt8500lcdfb.*
1308F: drivers/video/wm8505fb*
1309F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001310
Marek Vasute66b6d82010-03-26 06:51:32 +01001311ARM/ZIPIT Z2 SUPPORT
1312M: Marek Vasut <marek.vasut@gmail.com>
1313L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314S: Maintained
1315F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001316F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001317
Michal Simek51f29d42013-01-21 17:41:46 +01001318ARM/ZYNQ ARCHITECTURE
1319M: Michal Simek <michal.simek@xilinx.com>
1320L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321W: http://wiki.xilinx.com
1322T: git git://git.xilinx.com/linux-xlnx.git
1323S: Supported
1324F: arch/arm/mach-zynq/
Michal Simekbd2a3372013-06-04 07:17:39 +00001325F: drivers/cpuidle/cpuidle-zynq.c
Michal Simek51f29d42013-01-21 17:41:46 +01001326
Will Deaconb8f98792013-06-24 18:31:26 +01001327ARM SMMU DRIVER
1328M: Will Deacon <will.deacon@arm.com>
1329L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330S: Maintained
1331F: drivers/iommu/arm-smmu.c
1332
Catalin Marinas38074222012-03-05 11:49:34 +00001333ARM64 PORT (AARCH64 ARCHITECTURE)
1334M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001335M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001336L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1337S: Maintained
1338F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001339F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001340
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001341AS3645A LED FLASH CONTROLLER DRIVER
1342M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1343L: linux-media@vger.kernel.org
1344T: git git://linuxtv.org/media_tree.git
1345S: Maintained
1346F: drivers/media/i2c/as3645a.c
1347F: include/media/as3645a.h
1348
George Josephd58de032010-03-05 22:17:25 +01001349ASC7621 HARDWARE MONITOR DRIVER
1350M: George Joseph <george.joseph@fairview5.com>
1351L: lm-sensors@lm-sensors.org
1352S: Maintained
1353F: Documentation/hwmon/asc7621
1354F: drivers/hwmon/asc7621.c
1355
Corentin Charyb229ece2011-02-26 10:20:40 +01001356ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001357M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001359L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001360W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001362F: drivers/platform/x86/asus*.c
1363F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Andrew Morton953a6472008-11-06 12:53:28 -08001365ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001366M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001367W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: Documentation/crypto/async-tx-api.txt
1370F: crypto/async_tx/
1371F: drivers/dma/
1372F: include/linux/dmaengine.h
1373F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001374
Wolfram Sanga1867d32009-09-18 22:45:51 +02001375AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001376M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001377L: linux-i2c@vger.kernel.org
1378S: Maintained
1379F: drivers/misc/eeprom/at24.c
1380F: include/linux/i2c/at24.h
1381
Randy Dunlape7839f22008-10-12 16:11:45 -07001382ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001383M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001384W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001386F: Documentation/aoe/
1387F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Joe Perches9a10a872010-12-01 09:37:55 -08001389ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001390M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001391L: linux-wireless@vger.kernel.org
1392S: Supported
1393F: drivers/net/wireless/ath/*
1394
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001395ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001396M: Jiri Slaby <jirislaby@gmail.com>
1397M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001398M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001399L: linux-wireless@vger.kernel.org
1400L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001401W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001402S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001403F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001404
Kalle Valo12e62d62011-09-13 10:21:25 +03001405ATHEROS ATH6KL WIRELESS DRIVER
1406M: Kalle Valo <kvalo@qca.qualcomm.com>
1407L: linux-wireless@vger.kernel.org
1408W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1409T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1410S: Supported
1411F: drivers/net/wireless/ath/ath6kl/
1412
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001413ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001414M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1415M: Jouni Malinen <jouni@qca.qualcomm.com>
1416M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1417M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001418L: linux-wireless@vger.kernel.org
1419L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001420W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001422F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001424WILOCITY WIL6210 WIRELESS DRIVER
1425M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1426L: linux-wireless@vger.kernel.org
1427L: wil6210@qca.qualcomm.com
1428S: Supported
1429W: http://wireless.kernel.org/en/users/Drivers/wil6210
1430F: drivers/net/wireless/ath/wil6210/
1431
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001432CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1433M: Christian Lamparter <chunkeey@googlemail.com>
1434L: linux-wireless@vger.kernel.org
1435W: http://wireless.kernel.org/en/users/Drivers/carl9170
1436S: Maintained
1437F: drivers/net/wireless/ath/carl9170/
1438
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001439ATK0110 HWMON DRIVER
1440M: Luca Tettamanti <kronos.it@gmail.com>
1441L: lm-sensors@lm-sensors.org
1442S: Maintained
1443F: drivers/hwmon/asus_atk0110.c
1444
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001445ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001446M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001448F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001449
Chris Snook7ae115b2008-09-09 03:26:57 -04001450ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001451M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001452M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001453L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001454W: http://sourceforge.net/projects/atl1
1455W: http://atl1.sourceforge.net
1456S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001457F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001460M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001461L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001462L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463W: http://linux-atm.sourceforge.net
1464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001465F: drivers/atm/
1466F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001467F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001469ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001470M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001471S: Maintained
1472F: drivers/mmc/host/atmel-mci.c
1473F: drivers/mmc/host/atmel-mci-regs.h
1474
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001475ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001476M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001477S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001478F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001479
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001480ATMEL DMA DRIVER
1481M: Nicolas Ferre <nicolas.ferre@atmel.com>
1482L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483S: Supported
1484F: drivers/dma/at_hdmac.c
1485F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001486F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001487
Ludovic Desroches888f2802013-03-15 05:32:57 +00001488ATMEL I2C DRIVER
1489M: Ludovic Desroches <ludovic.desroches@atmel.com>
1490L: linux-i2c@vger.kernel.org
1491S: Supported
1492F: drivers/i2c/busses/i2c-at91.c
1493
Josh Wu15515542012-03-23 17:56:29 +08001494ATMEL ISI DRIVER
1495M: Josh Wu <josh.wu@atmel.com>
1496L: linux-media@vger.kernel.org
1497S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001498F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001499F: include/media/atmel-isi.h
1500
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001501ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001502M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001503L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001505F: drivers/video/atmel_lcdfb.c
1506F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001507
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001508ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001509M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001510S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001511F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001512
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001513ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001514M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001515S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001516F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001517
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001518ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1519M: Nicolas Ferre <nicolas.ferre@atmel.com>
1520L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1521S: Supported
1522F: drivers/misc/atmel_tclib.c
1523F: drivers/clocksource/tcb_clksrc.c
1524
Josh Wuff2675d2012-03-23 17:56:55 +08001525ATMEL TSADCC DRIVER
1526M: Josh Wu <josh.wu@atmel.com>
1527L: linux-input@vger.kernel.org
1528S: Supported
1529F: drivers/input/touchscreen/atmel_tsadcc.c
1530
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001531ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001532M: Nicolas Ferre <nicolas.ferre@atmel.com>
1533L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001535F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001539L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540W: http://www.thekelleys.org.uk/atmel
1541W: http://atmelwlandriver.sourceforge.net/
1542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001543F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Chris Wrighta92b7b82005-07-07 18:12:23 -07001545AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001546M: Al Viro <viro@zeniv.linux.org.uk>
1547M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001548L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001549W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001550T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001552F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001553F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001554F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001555
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001556AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001557M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001558W: http://miguelojeda.es/auxdisplay.htm
1559W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001561F: drivers/auxdisplay/
1562F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001563
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001564AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001565M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1566M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001567W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001568W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001569W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001572
1573AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001574M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1575M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001577F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001580M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001582W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001584F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001585F: include/net/ax25.h
1586F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001588AZ6007 DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001589M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001590L: linux-media@vger.kernel.org
1591W: http://linuxtv.org
1592T: git git://linuxtv.org/media_tree.git
1593S: Maintained
1594F: drivers/media/usb/dvb-usb-v2/az6007.c
1595
Hans Verkuil67773762012-11-23 07:09:23 -03001596AZTECH FM RADIO RECEIVER DRIVER
1597M: Hans Verkuil <hverkuil@xs4all.nl>
1598L: linux-media@vger.kernel.org
1599T: git git://linuxtv.org/media_tree.git
1600W: http://linuxtv.org
1601S: Maintained
1602F: drivers/media/radio/radio-aztech*
1603
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001604B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001605M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001606L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001607L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001608W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001611
1612B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Larry Finger <Larry.Finger@lwfinger.net>
1614M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001615L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001616L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001617W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001619F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001620
Richard Purdie300abeb2007-02-07 22:21:07 +00001621BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001622M: Richard Purdie <rpurdie@rpsys.net>
Jingoo Han6212de82013-07-03 15:05:15 -07001623M: Jingoo Han <jg1.han@samsung.com>
Richard Purdie300abeb2007-02-07 22:21:07 +00001624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001625F: drivers/video/backlight/
1626F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001627
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001628BATMAN ADVANCED
1629M: Marek Lindner <lindner_marek@yahoo.de>
1630M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001631M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001632L: b.a.t.m.a.n@lists.open-mesh.org
1633W: http://www.open-mesh.org/
1634S: Maintained
1635F: net/batman-adv/
1636
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001637BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001639L: linux-hams@vger.kernel.org
1640W: http://www.baycom.org/~tom/ham/ham.html
1641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001643
Kent Overstreetcafe5632013-03-23 16:11:31 -07001644BCACHE (BLOCK LAYER CACHE)
Kent Overstreet47cd2eb2013-07-01 12:19:55 -07001645M: Kent Overstreet <kmo@daterainc.com>
Kent Overstreetcafe5632013-03-23 16:11:31 -07001646L: linux-bcache@vger.kernel.org
1647W: http://bcache.evilpiepirate.org
1648S: Maintained:
1649F: drivers/md/bcache/
1650
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001651BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001652S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001653F: Documentation/filesystems/befs.txt
1654F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001655
1656BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001657M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001659F: Documentation/filesystems/bfs.txt
1660F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001661F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001662
Bryan Wu1394f032007-05-06 14:50:22 -07001663BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001664M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001665L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001666W: http://blackfin.uclinux.org
1667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001668F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001669
Bryan Wue190d6b2007-07-17 14:43:44 +08001670BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001671L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001672W: http://blackfin.uclinux.org
1673S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001674F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001675
Mike Frysinger566da5b2007-06-11 15:31:30 +08001676BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001678L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001679W: http://blackfin.uclinux.org
1680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001682
Mike Frysinger936ed492010-03-10 15:20:38 -08001683BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001684M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001685L: uclinux-dist-devel@blackfin.uclinux.org
1686W: http://blackfin.uclinux.org
1687S: Supported
1688F: drivers/mmc/host/bfin_sdh.c
1689
Bryan Wu1394f032007-05-06 14:50:22 -07001690BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001691M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001692L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001693W: http://blackfin.uclinux.org
1694S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001695F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001696
Bryan Wu1e6d3202007-07-15 02:50:02 +08001697BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001699L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001700W: http://blackfin.uclinux.org
1701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001702F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001703
Bryan Wud24ecfc2007-05-01 23:26:32 +02001704BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001706L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001707W: http://blackfin.uclinux.org/
1708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001709F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001710
Scott Jiang1e204372013-01-18 17:09:47 -03001711BLACKFIN MEDIA DRIVER
1712M: Scott Jiang <scott.jiang.linux@gmail.com>
1713L: uclinux-dist-devel@blackfin.uclinux.org
1714W: http://blackfin.uclinux.org/
1715S: Supported
1716F: drivers/media/platform/blackfin/
1717F: drivers/media/i2c/adv7183*
1718F: drivers/media/i2c/vs6624*
1719
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001720BLINKM RGB LED DRIVER
1721M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1722S: Maintained
1723F: drivers/leds/leds-blinkm.c
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001726M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001727T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001729F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Joern Engel2b54aae2008-02-06 01:38:02 -08001731BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001732M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001733L: linux-mtd@lists.infradead.org
1734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001735F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001736
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001737BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001738M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001739M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001740M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001741L: linux-bluetooth@vger.kernel.org
1742W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001743T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1744T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001746F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001750M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001751M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001752L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001753W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001754T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1755T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001757F: net/bluetooth/
1758F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001761M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001762M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001763L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001764W: http://sourceforge.net/projects/bonding/
1765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001766F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001767F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Gary Zambrano39105892006-06-22 17:26:20 -07001769BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001770M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001771L: netdev@vger.kernel.org
1772S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001773F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001774
Michael Chan948c51e2006-06-04 02:51:39 -07001775BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001777L: netdev@vger.kernel.org
1778S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001779F: drivers/net/ethernet/broadcom/bnx2.*
1780F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001781
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001782BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001783M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001784L: netdev@vger.kernel.org
1785S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001786F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001787
Stephen Warrenf680f252012-09-15 00:18:54 -06001788BROADCOM BCM2835 ARM ARCHICTURE
1789M: Stephen Warren <swarren@wwwdotorg.org>
1790L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1791T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1792S: Maintained
1793F: arch/arm/mach-bcm2835/
1794F: arch/arm/boot/dts/bcm2835*
1795F: arch/arm/configs/bcm2835_defconfig
1796F: drivers/*/*bcm2835*
1797
Michael Chan948c51e2006-06-04 02:51:39 -07001798BROADCOM TG3 GIGABIT ETHERNET DRIVER
Nithin Sujir99bbd922013-04-09 08:48:11 +00001799M: Nithin Nayak Sujir <nsujir@broadcom.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001800M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001801L: netdev@vger.kernel.org
1802S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001803F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001804
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001805BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1806M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001807M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001808M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001809M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001810L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001811L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001812S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001813F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001814
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001815BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1816M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1817L: linux-scsi@vger.kernel.org
1818S: Supported
1819F: drivers/scsi/bnx2fc/
1820
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001821BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1822M: Rafał Miłecki <zajec5@gmail.com>
1823L: linux-wireless@vger.kernel.org
1824S: Maintained
1825F: drivers/bcma/
1826F: include/linux/bcma/
1827
Jing Huang7725ccf2009-09-23 17:46:15 -07001828BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001829M: Anil Gurumurthy <agurumur@brocade.com>
1830M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001831L: linux-scsi@vger.kernel.org
1832S: Supported
1833F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001834
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001835BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1836M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001837L: netdev@vger.kernel.org
1838S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001839F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001840
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001841BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001843L: linux-scsi@vger.kernel.org
1844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001845F: block/bsg.c
1846F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001847F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001848
Clemens Ladischaf399172011-01-10 16:32:54 +01001849BT87X AUDIO DRIVER
1850M: Clemens Ladisch <clemens@ladisch.de>
1851L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1852T: git git://git.alsa-project.org/alsa-kernel.git
1853S: Maintained
1854F: Documentation/sound/alsa/Bt87x.txt
1855F: sound/pci/bt87x.c
1856
Michael Bueschff1d5c22008-07-25 01:46:10 -07001857BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001858M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001859W: http://bu3sch.de/btgpio.php
1860S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001861F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001862
Joe Percheseb1eb042009-01-21 10:49:16 -05001863BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001864M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001865L: linux-btrfs@vger.kernel.org
1866W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001867Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001868T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001870F: Documentation/filesystems/btrfs.txt
1871F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03001874M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001875L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001876W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001877T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001878S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001879F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001880F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Khalid Aziz1f349232013-06-25 09:57:27 -06001882BUSLOGIC SCSI DRIVER
1883M: Khalid Aziz <khalid@gonehiking.org>
1884L: linux-scsi@vger.kernel.org
1885S: Maintained
1886F: drivers/scsi/BusLogic.*
1887F: drivers/scsi/FlashPoint.*
1888
Clemens Ladischaf399172011-01-10 16:32:54 +01001889C-MEDIA CMI8788 DRIVER
1890M: Clemens Ladisch <clemens@ladisch.de>
1891L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1892T: git git://git.alsa-project.org/alsa-kernel.git
1893S: Maintained
1894F: sound/pci/oxygen/
1895
Mark Salter21413552011-10-04 11:21:42 -04001896C6X ARCHITECTURE
1897M: Mark Salter <msalter@redhat.com>
1898M: Aurelien Jacquiot <a-jacquiot@ti.com>
1899L: linux-c6x-dev@linux-c6x.org
1900W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1901S: Maintained
1902F: arch/c6x/
1903
David Howellsa5432f52009-04-20 15:46:45 +01001904CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001906L: linux-cachefs@redhat.com
1907S: Supported
1908F: Documentation/filesystems/caching/cachefiles.txt
1909F: fs/cachefiles/
1910
Hans Verkuilc815ca32012-11-23 07:05:54 -03001911CADET FM/AM RADIO RECEIVER DRIVER
1912M: Hans Verkuil <hverkuil@xs4all.nl>
1913L: linux-media@vger.kernel.org
1914T: git git://linuxtv.org/media_tree.git
1915W: http://linuxtv.org
1916S: Maintained
1917F: drivers/media/radio/radio-cadet*
1918
Jonathan Corbet77d51402007-03-22 19:44:17 -03001919CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001920M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001921L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001922T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001924F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001925F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001926
Joe Perches201b6ba2010-09-07 20:33:24 +00001927CAIF NETWORK LAYER
sjur.brandeland@stericsson.com5c574f52013-04-22 23:57:00 +00001928M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
Joe Perches201b6ba2010-09-07 20:33:24 +00001929L: netdev@vger.kernel.org
1930S: Supported
1931F: Documentation/networking/caif/
1932F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001933F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001934F: include/net/caif/
1935F: net/caif/
1936
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001937CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001938M: Muli Ben-Yehuda <muli@il.ibm.com>
1939M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001940L: discuss@x86-64.org
1941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001942F: arch/x86/kernel/pci-calgary_64.c
1943F: arch/x86/kernel/tce_64.c
1944F: arch/x86/include/asm/calgary.h
1945F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001946
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001947CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001948M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001949L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001950W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001951T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001952S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001953F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001954F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001955F: include/uapi/linux/can.h
1956F: include/uapi/linux/can/bcm.h
1957F: include/uapi/linux/can/raw.h
1958F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001959
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001960CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001961M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001962M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001963L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001964W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001965T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001966S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001967F: drivers/net/can/
1968F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001969F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001970F: include/uapi/linux/can/error.h
1971F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001972
James Morris95d16c72012-03-16 12:05:48 +11001973CAPABILITIES
1974M: Serge Hallyn <serge.hallyn@canonical.com>
1975L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001976S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001977F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001978F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001979F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001980F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001981F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001982
Arnd Bergmannb8154542008-05-16 11:10:59 +02001983CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001985L: linuxppc-dev@lists.ozlabs.org
1986L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001987W: http://www.ibm.com/developerworks/power/cell/
1988S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001989F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001990F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001991F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001992F: arch/powerpc/oprofile/*cell*
1993F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001994
Sage Weil9030aaf2009-10-06 11:31:15 -07001995CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001996M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001997L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001998W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001999T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07002000S: Supported
2001F: Documentation/filesystems/ceph.txt
2002F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002003F: net/ceph
2004F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07002005F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07002006
David Vrabel18332a82008-09-17 16:34:44 +01002007CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01002008L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01002009S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002010F: Documentation/usb/WUSB-Design-overview.txt
2011F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00002012F: drivers/usb/host/hwa-hc.c
2013F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07002014F: drivers/usb/wusbcore/
2015F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01002016
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002017CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002018M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002019W: http://miguelojeda.es/auxdisplay.htm
2020W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002022F: drivers/auxdisplay/cfag12864b.c
2023F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002024
2025CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07002027W: http://miguelojeda.es/auxdisplay.htm
2028W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/auxdisplay/cfag12864bfb.c
2031F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002032
Johannes Berg704232c2007-04-23 12:20:05 -07002033CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07002035L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02002036W: http://wireless.kernel.org/
2037T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2038T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07002039S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002040F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07002041F: include/net/cfg80211.h
2042F: net/wireless/*
2043X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07002044
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002045CHAR and MISC DRIVERS
2046M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08002047M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002048T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08002049S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07002050F: drivers/char/*
2051F: drivers/misc/*
2052
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002053CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07002054M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08002055M: Joe Perches <joe@perches.com>
2056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002057F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07002058
Harry Weif8407f262011-02-25 14:44:15 -08002059CHINESE DOCUMENTATION
2060M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08002061L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08002062L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2063S: Maintained
2064F: Documentation/zh_CN/
2065
Alexander Shishkin2721ea22012-05-11 17:25:59 +03002066CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2067M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
2068L: linux-usb@vger.kernel.org
2069S: Maintained
2070F: drivers/usb/chipidea/
2071
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002072CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00002073M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002074M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002075M: Neel Patel <neepatel@cisco.com>
2076M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002077S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002078F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002079
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002080CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002081M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002082L: netdev@vger.kernel.org
2083S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002084F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002085
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002086CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002087M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002088L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002090F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002091
Timur Tabid9e9d822008-04-24 08:45:26 +10002092CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002093M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07002094L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06002095S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002096F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002097
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002098CLEANCACHE API
2099M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2100L: linux-kernel@vger.kernel.org
2101S: Maintained
2102F: mm/cleancache.c
2103F: include/linux/cleancache.h
2104
Russell Kingd4275352009-04-16 14:05:27 +01002105CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002106M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002107S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002108F: include/linux/clk.h
2109
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002110CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08002111M: Hiral Patel <hiralpat@cisco.com>
2112M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002113M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002114L: linux-scsi@vger.kernel.org
2115S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002116F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002117
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002118CMPC ACPI DRIVER
2119M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2120M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002121L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002122S: Supported
2123F: drivers/platform/x86/classmate-laptop.c
2124
Nicolas Palix74425ee2010-06-06 17:15:01 +02002125COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002126M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002127M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002128M: Nicolas Palix <nicolas.palix@imag.fr>
Nicolas Palixc00b5112013-06-06 23:39:53 +02002129M: Michal Marek <mmarek@suse.cz>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002130L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palixc00b5112013-06-06 23:39:53 +02002131T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
Nicolas Palix74425ee2010-06-06 17:15:01 +02002132W: http://coccinelle.lip6.fr/
2133S: Supported
Nicolas Palix4b92b2a2013-06-20 13:10:55 +02002134F: Documentation/coccinelle.txt
Nicolas Palix74425ee2010-06-06 17:15:01 +02002135F: scripts/coccinelle/
2136F: scripts/coccicheck
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140M: coda@cs.cmu.edu
2141L: codalist@coda.cs.cmu.edu
2142W: http://www.coda.cs.cmu.edu/
2143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002144F: Documentation/filesystems/coda.txt
2145F: fs/coda/
2146F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002147F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Mike Turquette7704add2012-05-02 18:37:45 -07002149COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002150M: Mike Turquette <mturquette@linaro.org>
2151L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2152T: git git://git.linaro.org/people/mturquette/linux.git
2153S: Maintained
Stephen Warren60bea3b2013-06-05 09:50:30 -06002154F: drivers/clk/
2155X: drivers/clk/clkdev.c
Mike Turquette7704add2012-05-02 18:37:45 -07002156F: include/linux/clk-pr*
Stephen Warren60bea3b2013-06-05 09:50:30 -06002157F: include/linux/clk/
Mike Turquette7704add2012-05-02 18:37:45 -07002158
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002159COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002160M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002161L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002162L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002163W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002164Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002165T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002167F: Documentation/filesystems/cifs.txt
2168F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002171M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002172L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002174F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002177M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002178L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002180F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002183M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002184L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002188COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002189M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002190L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002193
Simon Arlott949be0f2007-03-06 02:47:46 -08002194CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002196L: accessrunner-general@lists.sourceforge.net
2197W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002200
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002201CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002202M: Joel Becker <jlbec@evilplan.org>
2203T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002205F: fs/configfs/
2206F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002207
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002208CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002210L: netdev@vger.kernel.org
2211S: Maintained
2212F: drivers/connector/
2213
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002214CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002215M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002216M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002217L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002218L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002219T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002221F: include/linux/cgroup*
2222F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002223F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002224
Rudolf Marekbebe4672007-05-08 17:22:02 +02002225CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002226M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002227L: lm-sensors@lm-sensors.org
2228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002229F: Documentation/hwmon/coretemp
2230F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002233M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://www.fi.muni.cz/~kas/cosa/
2235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002236F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Florian Fainelli4371ee32009-06-01 02:43:17 -07002238CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002239M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002240L: netdev@vger.kernel.org
2241S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002242F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002245M: Rafael J. Wysocki <rjw@sisk.pl>
viresh kumar45c009a2013-04-26 12:53:16 +00002246M: Viresh Kumar <viresh.kumar@linaro.org>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002247L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002248L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249S: Maintained
Viresh Kumar27209d92013-05-29 12:23:14 +05302250T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2251T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
Joe Perches679655d2009-04-07 20:44:32 -07002252F: drivers/cpufreq/
2253F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Viresh Kumar8a67f0e2013-04-01 12:57:49 +00002255CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2256M: Viresh Kumar <viresh.kumar@linaro.org>
2257M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2258L: cpufreq@vger.kernel.org
2259L: linux-pm@vger.kernel.org
2260W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2261S: Maintained
2262F: drivers/cpufreq/arm_big_little.h
2263F: drivers/cpufreq/arm_big_little.c
2264F: drivers/cpufreq/arm_big_little_dt.c
2265
Daniel Lezcanoa8e39c32013-04-26 11:05:44 +00002266CPUIDLE DRIVERS
2267M: Rafael J. Wysocki <rjw@sisk.pl>
2268M: Daniel Lezcano <daniel.lezcano@linaro.org>
2269L: linux-pm@vger.kernel.org
2270S: Maintained
2271T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2272F: drivers/cpuidle/*
2273F: include/linux/cpuidle.h
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002276M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002278F: arch/x86/kernel/cpuid.c
2279F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002281CPU POWER MONITORING SUBSYSTEM
2282M: Dominik Brodowski <linux@dominikbrodowski.net>
2283M: Thomas Renninger <trenn@suse.de>
2284S: Maintained
2285F: tools/power/cpupower
2286
Paul Jacksoned90fb42005-09-27 21:45:37 -07002287CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002288M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002289W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002290W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: Documentation/cgroups/cpusets.txt
2293F: include/linux/cpuset.h
2294F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002297W: http://sourceforge.net/projects/cramfs/
2298S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/filesystems/cramfs.txt
2300F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Mikael Starvik <starvik@axis.com>
2304M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002305L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://developer.axis.com
2307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002309F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: Herbert Xu <herbert@gondor.apana.org.au>
2313M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002315T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002317F: Documentation/crypto/
2318F: arch/*/crypto/
2319F: crypto/
2320F: drivers/crypto/
2321F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Neil Horman5b07bd52009-02-05 16:03:04 +11002323CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002325L: linux-crypto@vger.kernel.org
2326S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002327F: crypto/ansi_cprng.c
2328F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002329
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002330CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002331M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002333F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002334
Solomon Peachya910e4a2013-05-24 20:04:38 -04002335CW1200 WLAN driver
2336M: Solomon Peachy <pizza@shaftnet.org>
2337S: Maintained
2338F: drivers/net/wireless/cw1200/
2339
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002340CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002341M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002342L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002343L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002344T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002345W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002346W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002349F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002350F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002351
Hans Verkuil3f101d92012-11-23 07:00:02 -03002352CX2341X MPEG ENCODER HELPER MODULE
2353M: Hans Verkuil <hverkuil@xs4all.nl>
2354L: linux-media@vger.kernel.org
2355T: git git://linuxtv.org/media_tree.git
2356W: http://linuxtv.org
2357S: Maintained
Cesar Eduardo Barrosc368360b2013-03-02 21:53:42 -03002358F: drivers/media/common/cx2341x*
Hans Verkuil3f101d92012-11-23 07:00:02 -03002359F: include/media/cx2341x*
2360
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002361CX88 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002362M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002363L: linux-media@vger.kernel.org
2364W: http://linuxtv.org
2365T: git git://linuxtv.org/media_tree.git
2366S: Odd fixes
2367F: Documentation/video4linux/cx88/
2368F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002369
Antti Palosaari91952bc2012-10-01 12:28:46 -03002370CXD2820R MEDIA DRIVER
2371M: Antti Palosaari <crope@iki.fi>
2372L: linux-media@vger.kernel.org
2373W: http://linuxtv.org/
2374W: http://palosaari.fi/linux/
2375Q: http://patchwork.linuxtv.org/project/linux-media/list/
2376T: git git://linuxtv.org/anttip/media_tree.git
2377S: Maintained
2378F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002379
Steve Wisee5ec3782008-05-20 14:06:33 -07002380CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002382L: netdev@vger.kernel.org
2383W: http://www.chelsio.com
2384S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002385F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002386
2387CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002388M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002389L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002390W: http://www.openfabrics.org
2391S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002393
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002394CXGB4 ETHERNET DRIVER (CXGB4)
2395M: Dimitris Michailidis <dm@chelsio.com>
2396L: netdev@vger.kernel.org
2397W: http://www.chelsio.com
2398S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002399F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002400
2401CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2402M: Steve Wise <swise@chelsio.com>
2403L: linux-rdma@vger.kernel.org
2404W: http://www.openfabrics.org
2405S: Supported
2406F: drivers/infiniband/hw/cxgb4/
2407
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002408CXGB4VF ETHERNET DRIVER (CXGB4VF)
2409M: Casey Leedom <leedom@chelsio.com>
2410L: netdev@vger.kernel.org
2411W: http://www.chelsio.com
2412S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002413F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002414
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002415STMMAC ETHERNET DRIVER
2416M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2417L: netdev@vger.kernel.org
2418W: http://www.stlinux.com
2419S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002420F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002423M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002424L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425W: http://www.arm.linux.org.uk/
2426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002427F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002431S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002432F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002433F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002434F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002438S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002439F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Antti Palosaari402f6ae2013-04-09 21:30:41 -03002441CYPRESS_FIRMWARE MEDIA DRIVER
2442M: Antti Palosaari <crope@iki.fi>
2443L: linux-media@vger.kernel.org
2444W: http://linuxtv.org/
2445W: http://palosaari.fi/linux/
2446Q: http://patchwork.linuxtv.org/project/linux-media/list/
2447T: git git://linuxtv.org/anttip/media_tree.git
2448S: Maintained
2449F: drivers/media/common/cypress_firmware*
2450
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002451CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002452M: Javier Martinez Canillas <javier@dowhile0.org>
2453L: linux-input@vger.kernel.org
2454S: Maintained
2455F: drivers/input/touchscreen/cyttsp*
2456F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002459M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460W: http://yaina.de/jreuter/
2461W: http://www.qsl.net/dl1bke/
2462L: linux-hams@vger.kernel.org
2463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002464F: net/ax25/af_ax25.c
2465F: net/ax25/ax25_dev.c
2466F: net/ax25/ax25_ds_*
2467F: net/ax25/ax25_in.c
2468F: net/ax25/ax25_out.c
2469F: net/ax25/ax25_timer.c
2470F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002472DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002473L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002474S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002476F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002477
2478DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002479M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002480W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002486M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002487M: Ali Akcaagac <aliakc@web.de>
2488M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002490L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491L: http://lists.twibble.org/mailman/listinfo/dc395x/
2492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002493F: Documentation/scsi/dc395x.txt
2494F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002496DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002497M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002498L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002499W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002501F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002502F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002503F: include/linux/tfrc.h
2504F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507W: http://linux-decnet.sourceforge.net
2508L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002509S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002510F: Documentation/networking/decnet.txt
2511F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002516F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002518DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002519M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002520L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002522F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524DELL LAPTOP SMM DRIVER
Jean Delvarec5471462013-04-29 16:17:24 -07002525S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002526F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002527F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Doug Warzecha90563ec2005-09-06 15:17:15 -07002529DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002530M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002532F: Documentation/dcdbas.txt
2533F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002534
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002535DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002536M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002537S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002538F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002539
Paul Zimmerman5efc75e2013-03-11 17:48:03 -07002540DESIGNWARE USB2 DRD IP DRIVER
2541M: Paul Zimmerman <paulz@synopsys.com>
2542L: linux-usb@vger.kernel.org
2543S: Maintained
2544F: drivers/staging/dwc2/
2545
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002546DESIGNWARE USB3 DRD IP DRIVER
2547M: Felipe Balbi <balbi@ti.com>
2548L: linux-usb@vger.kernel.org
2549L: linux-omap@vger.kernel.org
2550T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2551S: Maintained
2552F: drivers/usb/dwc3/
2553
Kyungmin Park89d07762012-01-10 15:09:09 -08002554DEVICE FREQUENCY (DEVFREQ)
2555M: MyungJoo Ham <myungjoo.ham@samsung.com>
2556M: Kyungmin Park <kyungmin.park@samsung.com>
MyungJoo Ham88476d32013-03-14 17:28:24 +09002557L: linux-pm@vger.kernel.org
Kyungmin Park89d07762012-01-10 15:09:09 -08002558S: Maintained
2559F: drivers/devfreq/
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002562M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Maintained
2565
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002566DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002567M: Alasdair Kergon <agk@redhat.com>
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002568M: Mike Snitzer <snitzer@redhat.com>
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002569M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002570L: dm-devel@redhat.com
2571W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002572Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002573T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002575F: Documentation/device-mapper/
2576F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002577F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002578F: include/linux/device-mapper.h
2579F: include/linux/dm-*.h
Alasdair G Kergon8504eed2013-07-10 23:41:19 +01002580F: include/uapi/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002581
Guenter Roeck335d7c52011-01-26 11:45:49 -08002582DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002583M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002584L: linux-i2c@vger.kernel.org
2585S: Maintained
2586F: drivers/i2c/busses/i2c-diolan-u2c.c
2587
Randy Dunlape7839f22008-10-12 16:11:45 -07002588DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002589M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002591F: Documentation/filesystems/dnotify.txt
2592F: fs/notify/dnotify/
2593F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
2595DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002596M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2598W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2599W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2600S: Maintained
2601
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002602DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002603M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: Documentation/filesystems/quota.txt
2606F: fs/quota/
2607F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002608F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Bernie Thompson702686a2012-03-01 13:52:13 -08002610DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2611M: Bernie Thompson <bernie@plugable.com>
2612L: linux-fbdev@vger.kernel.org
2613S: Maintained
2614W: http://plugable.com/category/projects/udlfb/
2615F: drivers/video/udlfb.c
2616F: include/video/udlfb.h
2617F: Documentation/fb/udlfb.txt
2618
Randy Dunlape7839f22008-10-12 16:11:45 -07002619DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002620M: Christine Caulfield <ccaulfie@redhat.com>
2621M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002622L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002623W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002624T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002626F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002627
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302628DMA BUFFER SHARING FRAMEWORK
2629M: Sumit Semwal <sumit.semwal@linaro.org>
2630S: Maintained
2631L: linux-media@vger.kernel.org
2632L: dri-devel@lists.freedesktop.org
2633L: linaro-mm-sig@lists.linaro.org
2634F: drivers/base/dma-buf*
2635F: include/linux/dma-buf*
2636F: Documentation/dma-buf-sharing.txt
2637T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2638
Dan Williamsb3e5f262007-08-07 10:26:35 -07002639DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002640M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002641M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002642S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002643F: drivers/dma/
2644F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302645T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2646T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002647
Juerg Haefligerb8250372007-06-09 10:11:16 -04002648DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002649M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002650L: lm-sensors@lm-sensors.org
2651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002652F: Documentation/hwmon/dme1737
2653F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002654
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002655DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002656M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002657L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002659F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002660
Joe Perches7d2c86b2009-04-07 20:59:01 -07002661DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002662M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002663L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002664T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002666F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002669M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670L: blinux-list@redhat.com
2671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002672F: drivers/char/dtlk.c
2673F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002675DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002676M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002677L: linux-scsi@vger.kernel.org
2678W: http://www.adaptec.com/
2679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: drivers/scsi/dpt*
2681F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002682
Philipp Reisnerb411b362009-09-25 16:07:19 -07002683DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002684P: Philipp Reisner
2685P: Lars Ellenberg
2686M: drbd-dev@lists.linbit.com
2687L: drbd-user@lists.linbit.com
2688W: http://www.drbd.org
2689T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2690T: git git://git.drbd.org/drbd-8.3.git
2691S: Supported
2692F: drivers/block/drbd/
2693F: lib/lru_cache.c
2694F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002695
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002696DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002697M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002698T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002700F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002701F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002702F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002703F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002704F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002705F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002706F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002710L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002711T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002714F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002715F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Chris Wilson8daf7472010-09-28 14:07:26 +01002717INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002718M: Daniel Vetter <daniel.vetter@ffwll.ch>
Daniel Vetter362132d2013-03-13 22:28:46 +01002719L: intel-gfx@lists.freedesktop.org
Chris Wilson8daf7472010-09-28 14:07:26 +01002720L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002721T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002722S: Supported
2723F: drivers/gpu/drm/i915
2724F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002725F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002726
Kyungmin Park398a6d42011-11-02 11:33:16 +09002727DRM DRIVERS FOR EXYNOS
2728M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002729M: Joonyoung Shim <jy0922.shim@samsung.com>
2730M: Seung-Woo Kim <sw0312.kim@samsung.com>
2731M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002732L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002733T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002734S: Supported
2735F: drivers/gpu/drm/exynos
2736F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002737F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002738
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002739DRM DRIVERS FOR NVIDIA TEGRA
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002740M: Thierry Reding <thierry.reding@gmail.com>
2741M: Terje Bergström <tbergstrom@nvidia.com>
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002742L: dri-devel@lists.freedesktop.org
2743L: linux-tegra@vger.kernel.org
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002744T: git git://anongit.freedesktop.org/tegra/linux.git
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002745S: Maintained
Thierry Redinga5ad7a62013-05-19 14:19:21 +02002746F: drivers/gpu/host1x/
2747F: include/uapi/drm/tegra_drm.h
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002748F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2749
Alexey Klimov598df1a2012-11-28 17:16:32 -03002750DSBR100 USB FM RADIO DRIVER
2751M: Alexey Klimov <klimov.linux@gmail.com>
2752L: linux-media@vger.kernel.org
2753T: git git://linuxtv.org/media_tree.git
2754S: Maintained
2755F: drivers/media/radio/dsbr100.c
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002758M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002759L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002761F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Antti Palosaari91952bc2012-10-01 12:28:46 -03002763DVB_USB_AF9015 MEDIA DRIVER
2764M: Antti Palosaari <crope@iki.fi>
2765L: linux-media@vger.kernel.org
2766W: http://linuxtv.org/
2767W: http://palosaari.fi/linux/
2768Q: http://patchwork.linuxtv.org/project/linux-media/list/
2769T: git git://linuxtv.org/anttip/media_tree.git
2770S: Maintained
2771F: drivers/media/usb/dvb-usb-v2/af9015*
2772
2773DVB_USB_AF9035 MEDIA DRIVER
2774M: Antti Palosaari <crope@iki.fi>
2775L: linux-media@vger.kernel.org
2776W: http://linuxtv.org/
2777W: http://palosaari.fi/linux/
2778Q: http://patchwork.linuxtv.org/project/linux-media/list/
2779T: git git://linuxtv.org/anttip/media_tree.git
2780S: Maintained
2781F: drivers/media/usb/dvb-usb-v2/af9035*
2782
2783DVB_USB_ANYSEE MEDIA DRIVER
2784M: Antti Palosaari <crope@iki.fi>
2785L: linux-media@vger.kernel.org
2786W: http://linuxtv.org/
2787W: http://palosaari.fi/linux/
2788Q: http://patchwork.linuxtv.org/project/linux-media/list/
2789T: git git://linuxtv.org/anttip/media_tree.git
2790S: Maintained
2791F: drivers/media/usb/dvb-usb-v2/anysee*
2792
2793DVB_USB_AU6610 MEDIA DRIVER
2794M: Antti Palosaari <crope@iki.fi>
2795L: linux-media@vger.kernel.org
2796W: http://linuxtv.org/
2797W: http://palosaari.fi/linux/
2798Q: http://patchwork.linuxtv.org/project/linux-media/list/
2799T: git git://linuxtv.org/anttip/media_tree.git
2800S: Maintained
2801F: drivers/media/usb/dvb-usb-v2/au6610*
2802
2803DVB_USB_CE6230 MEDIA DRIVER
2804M: Antti Palosaari <crope@iki.fi>
2805L: linux-media@vger.kernel.org
2806W: http://linuxtv.org/
2807W: http://palosaari.fi/linux/
2808Q: http://patchwork.linuxtv.org/project/linux-media/list/
2809T: git git://linuxtv.org/anttip/media_tree.git
2810S: Maintained
2811F: drivers/media/usb/dvb-usb-v2/ce6230*
2812
Michael Krufkyd099dea2012-10-02 00:56:20 -03002813DVB_USB_CXUSB MEDIA DRIVER
2814M: Michael Krufky <mkrufky@linuxtv.org>
2815L: linux-media@vger.kernel.org
2816W: http://linuxtv.org/
2817W: http://github.com/mkrufky
2818Q: http://patchwork.linuxtv.org/project/linux-media/list/
2819T: git git://linuxtv.org/media_tree.git
2820S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002821F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002822
Antti Palosaari91952bc2012-10-01 12:28:46 -03002823DVB_USB_EC168 MEDIA DRIVER
2824M: Antti Palosaari <crope@iki.fi>
2825L: linux-media@vger.kernel.org
2826W: http://linuxtv.org/
2827W: http://palosaari.fi/linux/
2828Q: http://patchwork.linuxtv.org/project/linux-media/list/
2829T: git git://linuxtv.org/anttip/media_tree.git
2830S: Maintained
2831F: drivers/media/usb/dvb-usb-v2/ec168*
2832
Antti Palosaari55609832013-04-09 20:30:42 -03002833DVB_USB_GL861 MEDIA DRIVER
2834M: Antti Palosaari <crope@iki.fi>
2835L: linux-media@vger.kernel.org
2836W: http://linuxtv.org/
2837Q: http://patchwork.linuxtv.org/project/linux-media/list/
2838T: git git://linuxtv.org/anttip/media_tree.git
2839S: Maintained
2840F: drivers/media/usb/dvb-usb-v2/gl861*
2841
Michael Krufky8856f5f2012-10-02 00:55:50 -03002842DVB_USB_MXL111SF MEDIA DRIVER
2843M: Michael Krufky <mkrufky@linuxtv.org>
2844L: linux-media@vger.kernel.org
2845W: http://linuxtv.org/
2846W: http://github.com/mkrufky
2847Q: http://patchwork.linuxtv.org/project/linux-media/list/
2848T: git git://linuxtv.org/mkrufky/mxl111sf.git
2849S: Maintained
2850F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2851
Antti Palosaari91952bc2012-10-01 12:28:46 -03002852DVB_USB_RTL28XXU MEDIA DRIVER
2853M: Antti Palosaari <crope@iki.fi>
2854L: linux-media@vger.kernel.org
2855W: http://linuxtv.org/
2856W: http://palosaari.fi/linux/
2857Q: http://patchwork.linuxtv.org/project/linux-media/list/
2858T: git git://linuxtv.org/anttip/media_tree.git
2859S: Maintained
2860F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2861
2862DVB_USB_V2 MEDIA DRIVER
2863M: Antti Palosaari <crope@iki.fi>
2864L: linux-media@vger.kernel.org
2865W: http://linuxtv.org/
2866W: http://palosaari.fi/linux/
2867Q: http://patchwork.linuxtv.org/project/linux-media/list/
2868T: git git://linuxtv.org/anttip/media_tree.git
2869S: Maintained
2870F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2871F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2872
Jason Baronac0ac382011-08-11 14:36:43 -04002873DYNAMIC DEBUG
2874M: Jason Baron <jbaron@redhat.com>
2875S: Maintained
2876F: lib/dynamic_debug.c
2877F: include/linux/dynamic_debug.h
2878
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002879DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002880M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002881S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002882F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002883
Antti Palosaari91952bc2012-10-01 12:28:46 -03002884E4000 MEDIA DRIVER
2885M: Antti Palosaari <crope@iki.fi>
2886L: linux-media@vger.kernel.org
2887W: http://linuxtv.org/
2888W: http://palosaari.fi/linux/
2889Q: http://patchwork.linuxtv.org/project/linux-media/list/
2890T: git git://linuxtv.org/anttip/media_tree.git
2891S: Maintained
2892F: drivers/media/tuners/e4000*
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002895M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002896L: linux-eata@i-connect.net
2897L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002899F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903L: linux-scsi@vger.kernel.org
2904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002909L: linux-eata@i-connect.net
2910L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002912F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002916L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917W: http://ebtables.sourceforge.net/
2918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002919F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002920F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002921F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Antti Palosaari91952bc2012-10-01 12:28:46 -03002923EC100 MEDIA DRIVER
2924M: Antti Palosaari <crope@iki.fi>
2925L: linux-media@vger.kernel.org
2926W: http://linuxtv.org/
2927W: http://palosaari.fi/linux/
2928Q: http://patchwork.linuxtv.org/project/linux-media/list/
2929T: git git://linuxtv.org/anttip/media_tree.git
2930S: Maintained
2931F: drivers/media/dvb-frontends/ec100*
2932
Michael Halcrow237fead2006-10-04 02:16:22 -07002933ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002934M: Tyler Hicks <tyhicks@canonical.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002935L: ecryptfs@vger.kernel.org
Dustin Kirkland24a923e2013-05-31 10:41:43 -05002936W: http://ecryptfs.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002937W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002939F: Documentation/filesystems/ecryptfs.txt
2940F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002941
Alan Coxda9bb1d2006-01-18 17:44:13 -08002942EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002943M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002944L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002945W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002947F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002948F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002949F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002950
Borislav Petkovc476c232009-05-20 20:31:58 +02002951EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002953M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002954L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002955W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002956S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002957F: drivers/edac/amd64_edac*
2958
Ralf Baechlef65aad42012-10-17 00:39:09 +02002959EDAC-CAVIUM
2960M: Ralf Baechle <ralf@linux-mips.org>
2961M: David Daney <david.daney@cavium.com>
2962L: linux-edac@vger.kernel.org
2963L: linux-mips@linux-mips.org
2964W: bluesmoke.sourceforge.net
2965S: Supported
2966F: drivers/edac/octeon_edac*
2967
Dave Peterson0e438e32006-03-26 01:38:55 -08002968EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Mark Gross <mark.gross@intel.com>
2970M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002971L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002972W: bluesmoke.sourceforge.net
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002975
2976EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002977M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002978L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002979W: bluesmoke.sourceforge.net
2980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002982
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002983EDAC-GHES
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03002984M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab77c5f5d2013-02-15 06:11:57 -03002985L: linux-edac@vger.kernel.org
2986W: bluesmoke.sourceforge.net
2987S: Maintained
2988F: drivers/edac/ghes-edac.c
2989
Douglas Thompson6bc78402007-07-19 01:50:12 -07002990EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002992L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002993W: bluesmoke.sourceforge.net
2994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002995F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002996
2997EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002998M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002999L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003000W: bluesmoke.sourceforge.net
3001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003002F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003003
3004EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07003005M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003006L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003007W: bluesmoke.sourceforge.net
3008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003009F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003010
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003011EDAC-I5400
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003012M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003013L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003014W: bluesmoke.sourceforge.net
3015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08003017
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003018EDAC-I7300
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003019M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03003020L: linux-edac@vger.kernel.org
3021W: bluesmoke.sourceforge.net
3022S: Maintained
3023F: drivers/edac/i7300_edac.c
3024
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003025EDAC-I7CORE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003026M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003027L: linux-edac@vger.kernel.org
3028W: bluesmoke.sourceforge.net
3029S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03003030F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03003031
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003032EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05303034M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003035L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003036W: bluesmoke.sourceforge.net
3037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07003039
3040EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07003041M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003042L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07003043W: bluesmoke.sourceforge.net
3044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003045F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07003046
Dave Peterson0e438e32006-03-26 01:38:55 -08003047EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07003048M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04003049L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08003050W: bluesmoke.sourceforge.net
3051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003052F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08003053
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003054EDAC-SBRIDGE
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003055M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02003056L: linux-edac@vger.kernel.org
3057W: bluesmoke.sourceforge.net
3058S: Maintained
3059F: drivers/edac/sb_edac.c
3060
Clemens Ladischaf399172011-01-10 16:32:54 +01003061EDIROL UA-101/UA-1000 DRIVER
3062M: Clemens Ladisch <clemens@ladisch.de>
3063L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3064T: git git://git.alsa-project.org/alsa-kernel.git
3065S: Maintained
3066F: sound/usb/misc/ua101.c
3067
Matt Fleming1f7df952012-10-03 10:04:02 +01003068EXTENSIBLE FIRMWARE INTERFACE (EFI)
3069M: Matt Fleming <matt.fleming@intel.com>
3070L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01003071T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01003072S: Maintained
3073F: Documentation/x86/efi-stub.txt
3074F: arch/ia64/kernel/efi.c
3075F: arch/x86/boot/compressed/eboot.[ch]
3076F: arch/x86/include/asm/efi.h
3077F: arch/x86/platform/efi/*
Tom Gundersena9499fa2013-02-08 15:37:06 +00003078F: drivers/firmware/efi/*
Matt Fleming1f7df952012-10-03 10:04:02 +01003079F: include/linux/efi*.h
3080
Matt Flemingd68772b2013-02-08 16:27:24 +00003081EFI VARIABLE FILESYSTEM
3082M: Matthew Garrett <matthew.garrett@nebula.com>
3083M: Jeremy Kerr <jk@ozlabs.org>
3084M: Matt Fleming <matt.fleming@intel.com>
3085T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3086L: linux-efi@vger.kernel.org
3087S: Maintained
3088F: fs/efivarfs/
3089
Peter Jones85a00d92010-09-22 13:05:04 -07003090EFIFB FRAMEBUFFER DRIVER
3091L: linux-fbdev@vger.kernel.org
3092M: Peter Jones <pjones@redhat.com>
3093S: Maintained
3094F: drivers/video/efifb.c
3095
Josh Triplett0bee8d22006-07-30 03:03:58 -07003096EFS FILESYSTEM
3097W: http://aeschi.ch.eu.org/efs/
3098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003099F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07003100
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003101EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003102M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3103M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003104L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07003105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07003107
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003108EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00003109M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003110L: netdev@vger.kernel.org
3111S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003112F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07003113
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003114EM28XX VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03003115M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02003116L: linux-media@vger.kernel.org
3117W: http://linuxtv.org
3118T: git git://linuxtv.org/media_tree.git
3119S: Maintained
3120F: drivers/media/usb/em28xx/
3121
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003122EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07003123M: Paul Gortmaker <paul.gortmaker@windriver.com>
3124M: Matt Mackall <mpm@selenic.com>
3125M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07003126L: linux-embedded@vger.kernel.org
3127S: Maintained
3128
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003129EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003130M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01003131L: linux-scsi@vger.kernel.org
3132W: http://sourceforge.net/projects/lpfcxxxx
3133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003134F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003135
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003136ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003137M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003138S: Maintained
3139F: drivers/misc/cb710/
3140F: drivers/mmc/host/cb710-mmc.*
3141F: include/linux/cb710.h
3142
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003143ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3144M: Maxim Levitsky <maximlevitsky@gmail.com>
3145S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003146F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003147
Gavin Shanec207dc2013-06-28 21:12:14 +08003148ENHANCED ERROR HANDLING (EEH)
3149M: Gavin Shan <shangw@linux.vnet.ibm.com>
3150L: linuxppc-dev@lists.ozlabs.org
3151S: Supported
3152F: Documentation/powerpc/eeh-pci-error-recovery.txt
3153F: arch/powerpc/kernel/eeh*.c
3154
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003155EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003157S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003158T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003159F: drivers/video/s1d13xxxfb.c
3160F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08003163M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07003164L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003165L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003166W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003168F: include/linux/netfilter_bridge/
3169F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003172M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003173L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003175F: Documentation/filesystems/ext2.txt
3176F: fs/ext2/
3177F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
3179EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003180M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003182M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003183L: linux-ext4@vger.kernel.org
3184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: Documentation/filesystems/ext3.txt
3186F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003187
3188EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003190M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003191L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003192W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003193Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003195F: Documentation/filesystems/ext4.txt
3196F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Mimi Zoharc5532b02011-08-17 18:52:24 -04003198Extended Verification Module (EVM)
3199M: Mimi Zohar <zohar@us.ibm.com>
3200S: Supported
3201F: security/integrity/evm/
3202
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003203EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3204M: MyungJoo Ham <myungjoo.ham@samsung.com>
3205M: Chanwoo Choi <cw00.choi@samsung.com>
3206L: linux-kernel@vger.kernel.org
3207S: Maintained
3208F: drivers/extcon/
3209F: Documentation/extcon/
3210
Jingoo Han0a799512012-02-06 11:30:39 +09003211EXYNOS DP DRIVER
3212M: Jingoo Han <jg1.han@samsung.com>
3213L: linux-fbdev@vger.kernel.org
3214S: Maintained
3215F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003216F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003217
Donghwa Lee33ad3912012-03-06 11:44:58 +09003218EXYNOS MIPI DISPLAY DRIVERS
3219M: Inki Dae <inki.dae@samsung.com>
3220M: Donghwa Lee <dh09.lee@samsung.com>
3221M: Kyungmin Park <kyungmin.park@samsung.com>
3222L: linux-fbdev@vger.kernel.org
3223S: Maintained
3224F: drivers/video/exynos/exynos_mipi*
3225F: include/video/exynos_mipi*
3226
Jean Delvaree53004e2006-01-09 23:26:14 +01003227F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003228M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003229L: lm-sensors@lm-sensors.org
3230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: Documentation/hwmon/f71805f
3232F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003233
Michael Büscheea977e2012-04-02 12:14:32 -03003234FC0011 TUNER DRIVER
3235M: Michael Buesch <m@bues.ch>
3236L: linux-media@vger.kernel.org
3237S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003238F: drivers/media/tuners/fc0011.h
3239F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003240
Antti Palosaari91952bc2012-10-01 12:28:46 -03003241FC2580 MEDIA DRIVER
3242M: Antti Palosaari <crope@iki.fi>
3243L: linux-media@vger.kernel.org
3244W: http://linuxtv.org/
3245W: http://palosaari.fi/linux/
3246Q: http://patchwork.linuxtv.org/project/linux-media/list/
3247T: git git://linuxtv.org/anttip/media_tree.git
3248S: Maintained
3249F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Eric Paris88b2dbd2010-08-18 12:25:50 -04003251FANOTIFY
3252M: Eric Paris <eparis@redhat.com>
3253S: Maintained
3254F: fs/notify/fanotify/
3255F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003256F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003259M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260W: http://www.farsite.co.uk/
3261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003262F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Akinobu Mitac5408b82007-04-23 14:41:20 -07003264FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003267F: Documentation/fault-injection/
3268F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003269
Robert Lovecae727d2010-02-16 12:16:00 -08003270FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3271M: Robert Love <robert.w.love@intel.com>
Neil Hormanf4aaea62013-05-03 19:38:10 +00003272L: fcoe-devel@open-fcoe.org
Robert Lovecae727d2010-02-16 12:16:00 -08003273W: www.Open-FCoE.org
3274S: Supported
3275F: drivers/scsi/libfc/
3276F: drivers/scsi/fcoe/
3277F: include/scsi/fc/
3278F: include/scsi/libfc.h
3279F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003280F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003281
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003282FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003283M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003284L: linux-fsdevel@vger.kernel.org
3285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003286F: include/linux/fcntl.h
3287F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003288F: include/uapi/linux/fcntl.h
3289F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003290F: fs/fcntl.c
3291F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003292
3293FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003295L: linux-fsdevel@vger.kernel.org
3296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003297F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003298
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003299FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003300M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003301L: lm-sensors@lm-sensors.org
3302S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003303F: drivers/hwmon/f75375s.c
3304F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003305
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003306FIREWIRE AUDIO DRIVERS
3307M: Clemens Ladisch <clemens@ladisch.de>
3308L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3309T: git git://git.alsa-project.org/alsa-kernel.git
3310S: Maintained
3311F: sound/firewire/
3312
Stefan Richtereb86ec52012-11-03 09:25:20 +01003313FIREWIRE MEDIA DRIVERS (firedtv)
3314M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3315L: linux-media@vger.kernel.org
3316L: linux1394-devel@lists.sourceforge.net
3317T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3318S: Maintained
3319F: drivers/media/firewire/
3320
Chris Boota511ce32012-04-14 17:50:35 -07003321FIREWIRE SBP-2 TARGET
3322M: Chris Boot <bootc@bootc.net>
3323L: linux-scsi@vger.kernel.org
3324L: target-devel@vger.kernel.org
3325L: linux1394-devel@lists.sourceforge.net
3326T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3327S: Maintained
3328F: drivers/target/sbp/
3329
Joe Perches7d2c86b2009-04-07 20:59:01 -07003330FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003331M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003332L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003333W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003334T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003337F: include/linux/firewire.h
3338F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003339F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003340
3341FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003342M: Ming Lei <ming.lei@canonical.com>
3343L: linux-kernel@vger.kernel.org
3344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003345F: Documentation/firmware_class/
3346F: drivers/base/firmware*.c
3347F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003348
Philip J Kelleherf730e3d2013-06-18 14:43:58 -05003349FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
Philip J Kelleher9bb3c442013-02-27 09:24:59 -06003350M: Joshua Morris <josh.h.morris@us.ibm.com>
3351M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3352S: Maintained
3353F: drivers/block/rsxx/
3354
Jiri Kosina8206f662012-05-18 13:52:29 +02003355FLOPPY DRIVER
3356M: Jiri Kosina <jkosina@suse.cz>
3357T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3358S: Odd fixes
3359F: drivers/block/floppy.c
3360
Alessandro Rubini9c9f32e2013-06-12 09:13:25 +02003361FMC SUBSYSTEM
3362M: Alessandro Rubini <rubini@gnudd.com>
3363W: http://www.ohwr.org/projects/fmc-bus
3364S: Supported
3365F: drivers/fmc/
3366F: include/linux/fmc*.h
3367F: include/linux/ipmi-fru.h
3368K: fmc_d.*register
3369
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003370FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003372W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003374F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003375
3376FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003377L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003378S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003379F: drivers/net/wan/dlci.c
3380F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382FRAMEBUFFER LAYER
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003383M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3384M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003385L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003387Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Jean-Christophe PLAGNIOL-VILLARD5489e942013-05-30 22:23:44 +02003388T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
Paul Mundt56be1412011-03-23 08:29:07 +09003389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003390F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003391F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003392F: drivers/video/
3393F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003394F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003395F: include/uapi/video/
3396F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Timur Tabia57c1882012-10-16 17:33:42 -05003398FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003399M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003400L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003401S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003402F: drivers/video/fsl-diu-fb.*
3403
Zhang Wei173acc72008-03-01 07:42:48 -07003404FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Li Yang <leoli@freescale.com>
3406M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003407L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003409F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003410
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003411FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003413L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003414L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003416F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003417
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003418FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003420L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003421L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003422S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003423F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003424F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003425
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003426FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003427M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3428M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003429L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003430L: netdev@vger.kernel.org
3431S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003432F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003433F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003434
Timur Tabid9e9d822008-04-24 08:45:26 +10003435FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003436L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003437S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003438F: arch/powerpc/sysdev/qe_lib/
3439F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003440
Joe Perchesb55ef9292009-10-26 16:49:46 -07003441FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003443L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003444L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003445S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003446F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003447
Li Yangbeaf53b2007-05-25 13:54:02 +08003448FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003449M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003450L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003451L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003452S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003453F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003454
Timur Tabid9e9d822008-04-24 08:45:26 +10003455FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003456M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003457L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003458S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003459F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003460
3461FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003462M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003463L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003464L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003465S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003466F: sound/soc/fsl/fsl*
3467F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003470M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003473F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Pavel Machek71038f52009-01-15 13:51:02 -08003475FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Pavel Machek <pavel@ucw.cz>
3477M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003478L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003480F: Documentation/power/freezing-of-tasks.txt
3481F: include/linux/freezer.h
3482F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003483
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003484FRONTSWAP API
3485M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3486L: linux-kernel@vger.kernel.org
3487S: Maintained
3488F: mm/frontswap.c
3489F: include/linux/frontswap.h
3490
David Howellsa5432f52009-04-20 15:46:45 +01003491FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003492M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003493L: linux-cachefs@redhat.com
3494S: Supported
3495F: Documentation/filesystems/caching/
3496F: fs/fscache/
3497F: include/linux/fscache*.h
3498
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003499F2FS FILE SYSTEM
3500M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3501L: linux-f2fs-devel@lists.sourceforge.net
3502W: http://en.wikipedia.org/wiki/F2FS
3503T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3504S: Maintained
3505F: Documentation/filesystems/f2fs.txt
3506F: fs/f2fs/
3507F: include/linux/f2fs_fs.h
3508
David Howells5ab7ffe2007-04-10 15:10:45 +01003509FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003510M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003512F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Jonathan Woithe20b93732008-06-11 10:14:56 +09303514FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303515M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003516L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003518F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303519
Heungjun Kim4da621b2011-11-11 08:05:33 -03003520FUJITSU M-5MO LS CAMERA ISP DRIVER
3521M: Kyungmin Park <kyungmin.park@samsung.com>
3522M: Heungjun Kim <riverful.kim@samsung.com>
3523L: linux-media@vger.kernel.org
3524S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003525F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003526F: include/media/m5mols.h
3527
Robert Gerlach2d24c492012-01-18 14:26:22 +01003528FUJITSU TABLET EXTRAS
3529M: Robert Gerlach <khnz@gmx.de>
3530L: platform-driver-x86@vger.kernel.org
3531S: Maintained
3532F: drivers/platform/x86/fujitsu-tablet.c
3533
Miklos Szeredi04578f12005-09-09 13:10:22 -07003534FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003535M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003536L: fuse-devel@lists.sourceforge.net
3537W: http://fuse.sourceforge.net/
3538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003540F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003543M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003545S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003546F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550L: linux-scsi@vger.kernel.org
3551W: http://www.icp-vortex.com/
3552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003553F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003555GEMTEK FM RADIO RECEIVER DRIVER
3556M: Hans Verkuil <hverkuil@xs4all.nl>
3557L: linux-media@vger.kernel.org
3558T: git git://linuxtv.org/media_tree.git
3559W: http://linuxtv.org
3560S: Maintained
3561F: drivers/media/radio/radio-gemtek*
3562
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003563GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003564M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003566F: drivers/i2c/busses/i2c-gpio.c
3567F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003568
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003569GENERIC GPIO I2C MULTIPLEXER DRIVER
3570M: Peter Korsgaard <peter.korsgaard@barco.com>
3571L: linux-i2c@vger.kernel.org
3572S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003573F: drivers/i2c/muxes/i2c-mux-gpio.c
3574F: include/linux/i2c-mux-gpio.h
3575F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003576
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003577GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003581F: drivers/net/wan/c101.c
3582F: drivers/net/wan/hd6457*
3583F: drivers/net/wan/hdlc*
3584F: drivers/net/wan/n2.c
3585F: drivers/net/wan/pc300too.c
3586F: drivers/net/wan/pci200syn.c
3587F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003589GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003590M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003591L: linux-arch@vger.kernel.org
3592T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3593S: Maintained
3594F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003595F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003596
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003597GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003598M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003599L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003600S: Supported
3601F: drivers/uio/uio_pci_generic.c
3602
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003603GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003604M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003605L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003606W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003607T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3608T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003610F: Documentation/filesystems/gfs2*.txt
3611F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003612F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003613
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003614GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003615M: Hansjoerg Lipp <hjlipp@web.de>
3616M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003617L: gigaset307x-common@lists.sourceforge.net
3618W: http://gigaset307x.sourceforge.net/
3619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003620F: Documentation/isdn/README.gigaset
3621F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003622F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003623
Grant Likelya0dc00b2011-02-12 01:48:14 -07003624GPIO SUBSYSTEM
Linus Walleije4651a92012-08-06 09:52:52 +02003625M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003626S: Maintained
Alexandre Courbotd15b7172013-05-26 11:50:54 +09003627L: linux-gpio@vger.kernel.org
Kukjin Kim98909cf2011-04-27 15:26:47 -07003628F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003629F: drivers/gpio/
3630F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003631F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003632
Harry Wei71a6d0a2011-05-11 15:13:33 -07003633GRE DEMULTIPLEXER DRIVER
3634M: Dmitry Kozlov <xeb@mail.ru>
3635L: netdev@vger.kernel.org
3636S: Maintained
3637F: net/ipv4/gre.c
3638F: include/net/gre.h
3639
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003640GRETH 10/100/1G Ethernet MAC device driver
3641M: Kristoffer Glembo <kristoffer@gaisler.com>
3642L: netdev@vger.kernel.org
3643S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003644F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003645
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003646GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003647M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003648L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003649T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003650S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003651F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003652
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003653GSPCA GL860 SUBDRIVER
3654M: Olivier Lorin <o.lorin@laposte.net>
3655L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003656T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003657S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003658F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003659
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003660GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003662L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003663T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003664S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003665F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003666
3667GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003669L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003670T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003671S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003672F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003673
Brian Johnson261982f2009-07-19 15:58:56 -03003674GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003675M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003676L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003677T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003678S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003679F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003680
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003681GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003683L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003684T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003685S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003686F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003687
3688GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003689M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003690L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003691T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003692S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003693F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003694
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003695STK1160 USB VIDEO CAPTURE DRIVER
3696M: Ezequiel Garcia <elezegarcia@gmail.com>
3697L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003698T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003699S: Maintained
3700F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003701
Harry Wei71a6d0a2011-05-11 15:13:33 -07003702HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3703M: Frank Seidel <frank@f-seidel.de>
3704L: platform-driver-x86@vger.kernel.org
3705W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3706S: Maintained
3707F: drivers/platform/x86/hdaps.c
3708
Hans Verkuil48fc9e22013-04-11 03:36:49 -03003709HDPVR USB VIDEO ENCODER DRIVER
3710M: Hans Verkuil <hverkuil@xs4all.nl>
3711L: linux-media@vger.kernel.org
3712T: git git://linuxtv.org/media_tree.git
3713W: http://linuxtv.org
3714S: Odd Fixes
3715F: drivers/media/usb/hdpvr
3716
Harry Wei71a6d0a2011-05-11 15:13:33 -07003717HWPOISON MEMORY FAILURE HANDLING
3718M: Andi Kleen <andi@firstfloor.org>
3719L: linux-mm@kvack.org
3720T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3721S: Maintained
3722F: mm/memory-failure.c
3723F: mm/hwpoison-inject.c
3724
3725HYPERVISOR VIRTUAL CONSOLE DRIVER
3726L: linuxppc-dev@lists.ozlabs.org
3727S: Odd Fixes
3728F: drivers/tty/hvc/
3729
Michael Buesch844dd052006-06-26 00:24:59 -07003730HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003731M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003732M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003733L: lm-sensors@lm-sensors.org
3734W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003735T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003736T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003737S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003738F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003739F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003740F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003741
3742HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003743M: Matt Mackall <mpm@selenic.com>
3744M: Herbert Xu <herbert@gondor.apana.org.au>
3745S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003746F: Documentation/hw_random.txt
3747F: drivers/char/hw_random/
3748F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003749
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003750HARDWARE SPINLOCK CORE
3751M: Ohad Ben-Cohen <ohad@wizery.com>
3752S: Maintained
3753F: Documentation/hwspinlock.txt
3754F: drivers/hwspinlock/hwspinlock_*
3755F: include/linux/hwspinlock.h
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003758L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Antti Palosaari91952bc2012-10-01 12:28:46 -03003762HD29L2 MEDIA DRIVER
3763M: Antti Palosaari <crope@iki.fi>
3764L: linux-media@vger.kernel.org
3765W: http://linuxtv.org/
3766W: http://palosaari.fi/linux/
3767Q: http://patchwork.linuxtv.org/project/linux-media/list/
3768T: git git://linuxtv.org/anttip/media_tree.git
3769S: Maintained
3770F: drivers/media/dvb-frontends/hd29l2*
3771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003772HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003774L: iss_storagedev@hp.com
3775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003776F: Documentation/blockdev/cpqarray.txt
3777F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003778
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003779HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003780M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003781L: iss_storagedev@hp.com
3782S: Supported
3783F: Documentation/scsi/hpsa.txt
3784F: drivers/scsi/hpsa*.[ch]
3785F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003786F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003787
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003788HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003789M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003790L: iss_storagedev@hp.com
3791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003792F: Documentation/blockdev/cciss.txt
3793F: drivers/block/cciss*
3794F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003795F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003798L: linux-fsdevel@vger.kernel.org
3799S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003800F: Documentation/filesystems/hfs.txt
3801F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
3803HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003804M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805L: linux-nvidia@lists.surfsouth.com
3806W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003808F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003810HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003811M: Pavel Machek <pavel@ucw.cz>
3812M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003813L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003815F: arch/x86/power/
3816F: drivers/base/power/
3817F: kernel/power/
3818F: include/linux/suspend.h
3819F: include/linux/freezer.h
3820F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003821F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003822
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003823HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003825L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003826T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003828F: drivers/hid/
3829F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003830F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003831
Ingo Molnar38bed542007-02-22 09:09:34 +01003832HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003834T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: Documentation/timers/
3837F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003838F: kernel/time/clockevents.c
3839F: kernel/time/tick*.*
3840F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003841F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003842F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003846S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/net/hamradio/dmascc.c
3848F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003850HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003852W: http://www.highpoint-tech.com
3853S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003854F: Documentation/scsi/hptiop.txt
3855F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859L: linux-hippi@sunsite.dk
3860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003862F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003863F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003864F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Jouni Malinenff1d2762005-05-12 22:54:16 -04003866HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003867M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003868L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003869L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003870W: http://hostap.epitest.fi/
3871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003873
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003874HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003875L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003876S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003877F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003878
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003879HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003881S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003882F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003883
Joe Perches7d2c86b2009-04-07 20:59:01 -07003884HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003885M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003887F: Documentation/timers/hpet.txt
3888F: drivers/char/hpet.c
3889F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003890F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003891
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003892HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003893M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003895F: arch/x86/kernel/hpet.c
3896F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003899M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003902F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
Joe Perches7d2c86b2009-04-07 20:59:01 -07003904HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003905M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003906W: http://www.pharscape.org
3907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003908F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003909
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003910HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003911M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003912L: linux-input@vger.kernel.org
3913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003914F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003917M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003921Hyper-V CORE AND DRIVERS
3922M: K. Y. Srinivasan <kys@microsoft.com>
3923M: Haiyang Zhang <haiyangz@microsoft.com>
3924L: devel@linuxdriverproject.org
3925S: Maintained
Haiyang Zhanga4162742013-05-09 14:34:55 -07003926F: arch/x86/include/asm/mshyperv.h
3927F: arch/x86/include/uapi/asm/hyperv.h
3928F: arch/x86/kernel/cpu/mshyperv.c
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003929F: drivers/hid/hid-hyperv.c
Haiyang Zhanga4162742013-05-09 14:34:55 -07003930F: drivers/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003931F: drivers/net/hyperv/
Haiyang Zhanga4162742013-05-09 14:34:55 -07003932F: drivers/scsi/storvsc_drv.c
3933F: drivers/video/hyperv_fb.c
3934F: include/linux/hyperv.h
3935F: tools/hv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003936
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003937I2C OVER PARALLEL PORT
3938M: Jean Delvare <khali@linux-fr.org>
3939L: linux-i2c@vger.kernel.org
3940S: Maintained
3941F: Documentation/i2c/busses/i2c-parport
3942F: Documentation/i2c/busses/i2c-parport-light
3943F: drivers/i2c/busses/i2c-parport.c
3944F: drivers/i2c/busses/i2c-parport-light.c
3945
3946I2C/SMBUS CONTROLLER DRIVERS FOR PC
3947M: Jean Delvare <khali@linux-fr.org>
3948L: linux-i2c@vger.kernel.org
3949S: Maintained
3950F: Documentation/i2c/busses/i2c-ali1535
3951F: Documentation/i2c/busses/i2c-ali1563
3952F: Documentation/i2c/busses/i2c-ali15x3
3953F: Documentation/i2c/busses/i2c-amd756
3954F: Documentation/i2c/busses/i2c-amd8111
3955F: Documentation/i2c/busses/i2c-i801
3956F: Documentation/i2c/busses/i2c-nforce2
3957F: Documentation/i2c/busses/i2c-piix4
3958F: Documentation/i2c/busses/i2c-sis5595
3959F: Documentation/i2c/busses/i2c-sis630
3960F: Documentation/i2c/busses/i2c-sis96x
3961F: Documentation/i2c/busses/i2c-via
3962F: Documentation/i2c/busses/i2c-viapro
3963F: drivers/i2c/busses/i2c-ali1535.c
3964F: drivers/i2c/busses/i2c-ali1563.c
3965F: drivers/i2c/busses/i2c-ali15x3.c
3966F: drivers/i2c/busses/i2c-amd756.c
3967F: drivers/i2c/busses/i2c-amd756-s4882.c
3968F: drivers/i2c/busses/i2c-amd8111.c
3969F: drivers/i2c/busses/i2c-i801.c
3970F: drivers/i2c/busses/i2c-isch.c
3971F: drivers/i2c/busses/i2c-nforce2.c
3972F: drivers/i2c/busses/i2c-nforce2-s4985.c
3973F: drivers/i2c/busses/i2c-piix4.c
3974F: drivers/i2c/busses/i2c-sis5595.c
3975F: drivers/i2c/busses/i2c-sis630.c
3976F: drivers/i2c/busses/i2c-sis96x.c
3977F: drivers/i2c/busses/i2c-via.c
3978F: drivers/i2c/busses/i2c-viapro.c
3979
Neil Hormancb7f07a2013-02-10 11:59:03 -05003980I2C/SMBUS ISMT DRIVER
3981M: Seth Heasley <seth.heasley@intel.com>
3982M: Neil Horman <nhorman@tuxdriver.com>
3983L: linux-i2c@vger.kernel.org
3984F: drivers/i2c/busses/i2c-ismt.c
3985F: Documentation/i2c/busses/i2c-ismt
3986
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003987I2C/SMBUS STUB DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01003988M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003989L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003990S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003991F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003992
Jean Delvare5b543962005-08-15 19:51:02 +02003993I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003994M: Wolfram Sang <wsa@the-dreams.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003995L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003996W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003997T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003999F: Documentation/i2c/
4000F: drivers/i2c/
4001F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01004002F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004003F: include/uapi/linux/i2c.h
4004F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
Jean Delvared85c8a6a2012-11-13 22:27:19 +01004006I2C-TAOS-EVM DRIVER
4007M: Jean Delvare <khali@linux-fr.org>
4008L: linux-i2c@vger.kernel.org
4009S: Maintained
4010F: Documentation/i2c/busses/i2c-taos-evm
4011F: drivers/i2c/busses/i2c-taos-evm.c
4012
Till Harbaume8c76ee2007-05-01 23:26:35 +02004013I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004014M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01004015L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07004016W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02004017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004018F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02004019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07004021M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004023F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
4025i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07004026M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07004027T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028S: Maintained
4029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: Tony Luck <tony.luck@intel.com>
4032M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07004034T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004036F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
Kent Yoder956c2032012-09-07 04:17:01 +08004038IBM Power in-Nest Crypto Acceleration
Kent Yoder5b88e272013-05-22 10:56:58 -05004039M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4040M: Fionnuala Gunter <fin@linux.vnet.ibm.com>
Kent Yoder956c2032012-09-07 04:17:01 +08004041L: linux-crypto@vger.kernel.org
4042S: Supported
4043F: drivers/crypto/nx/
4044
Seth Jennings0e16aaf2012-07-19 09:42:40 -05004045IBM Power 842 compression accelerator
4046M: Robert Jennings <rcj@linux.vnet.ibm.com>
4047S: Supported
4048F: drivers/crypto/nx/nx-842.c
4049F: include/linux/nx842.h
4050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07004052M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004054F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Santiago Leon9d348af2010-09-03 18:29:53 +00004056IBM Power Virtual Ethernet Device Driver
4057M: Santiago Leon <santil@linux.vnet.ibm.com>
4058L: netdev@vger.kernel.org
4059S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07004060F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00004061
Robert Jennings4b7652c2012-07-31 12:34:36 -05004062IBM Power Virtual SCSI/FC Device Drivers
4063M: Robert Jennings <rcj@linux.vnet.ibm.com>
4064L: linux-scsi@vger.kernel.org
4065S: Supported
4066F: drivers/scsi/ibmvscsi/
4067X: drivers/scsi/ibmvscsi/ibmvstgt.c
4068
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069IBM ServeRAID RAID DRIVER
4070P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07004071M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004074F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05004076ICH LPC AND GPIO DRIVER
4077M: Peter Tyser <ptyser@xes-inc.com>
4078S: Maintained
4079F: drivers/mfd/lpc_ich.c
4080F: drivers/gpio/gpio-ich.c
4081
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01004082IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004083M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004085Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07004086T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004088F: Documentation/ide/
4089F: drivers/ide/
4090F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Ike Panhc6cb8c132011-08-25 22:28:45 +08004092IDEAPAD LAPTOP EXTRAS DRIVER
4093M: Ike Panhc <ike.pan@canonical.com>
4094L: platform-driver-x86@vger.kernel.org
4095W: http://launchpad.net/ideapad-laptop
4096S: Maintained
4097F: drivers/platform/x86/ideapad-laptop.c
4098
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02004099IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01004100M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01004101L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01004102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004103F: Documentation/cdrom/ide-cd
4104F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Andy Henroid27471fd2008-10-09 11:45:22 -07004106IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07004107M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004108L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07004109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004110F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07004111
Sergey Lapin02cf2282009-06-08 12:18:50 +00004112IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004113M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004114M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04004115L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00004116W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00004118S: Maintained
4119F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00004120F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08004121F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00004122
Sean Young40ad4a32012-11-19 10:32:53 -03004123IGUANAWORKS USB IR TRANSCEIVER
4124M: Sean Young <sean@mess.org>
4125L: linux-media@vger.kernel.org
4126S: Maintained
4127F: drivers/media/rc/iguanair.c
4128
Ameya Palande9545f862012-01-10 09:00:58 -08004129IIO SUBSYSTEM AND DRIVERS
4130M: Jonathan Cameron <jic23@cam.ac.uk>
4131L: linux-iio@vger.kernel.org
4132S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02004133F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08004134F: drivers/staging/iio/
4135
Stanislaw Gruszka65519262011-01-08 15:19:40 +01004136IKANOS/ADI EAGLE ADSL USB DRIVER
4137M: Matthieu Castet <castet.matthieu@free.fr>
4138M: Stanislaw Gruszka <stf_xl@wp.pl>
4139S: Maintained
4140F: drivers/usb/atm/ueagle-atm.c
4141
Guenter Roecke89ab512013-03-08 08:13:09 -08004142INA209 HARDWARE MONITOR DRIVER
4143M: Guenter Roeck <linux@roeck-us.net>
4144L: lm-sensors@lm-sensors.org
4145S: Maintained
4146F: Documentation/hwmon/ina209
4147F: Documentation/devicetree/bindings/i2c/ina209.txt
4148F: drivers/hwmon/ina209.c
4149
4150INA2XX HARDWARE MONITOR DRIVER
4151M: Guenter Roeck <linux@roeck-us.net>
4152L: lm-sensors@lm-sensors.org
4153S: Maintained
4154F: Documentation/hwmon/ina2xx
4155F: drivers/hwmon/ina2xx.c
4156F: include/linux/platform_data/ina2xx.h
4157
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01004158INDUSTRY PACK SUBSYSTEM (IPACK)
4159M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4160M: Jens Taprogge <jens.taprogge@taprogge.org>
4161M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4162L: industrypack-devel@lists.sourceforge.net
4163W: http://industrypack.sourceforge.net
4164S: Maintained
4165F: drivers/ipack/
4166
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004167INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07004168M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zohar89121762013-06-20 07:43:40 -04004169M: Dmitry Kasatkin <d.kasatkin@samsung.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004171F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05004172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004174L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09004175S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004176F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
4178INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08004179M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Sean Hefty <sean.hefty@intel.com>
4181M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004182L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004183W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004184Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004185T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004187F: Documentation/infiniband/
4188F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004189F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Robert Lovec9f04f52005-07-15 12:21:07 -04004191INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: John McCutchan <john@johnmccutchan.com>
4193M: Robert Love <rlove@rlove.org>
4194M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004196F: Documentation/filesystems/inotify.txt
4197F: fs/notify/inotify/
4198F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004199F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004200
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004201INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004202M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4203M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004204L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004205Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004206T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004209F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004210F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004211F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004212
Henrik Rydberg3267a872010-06-24 19:10:40 -07004213INPUT MULTITOUCH (MT) PROTOCOL
4214M: Henrik Rydberg <rydberg@euromail.se>
4215L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004216T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004217S: Maintained
4218F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004219F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004220K: \b(ABS|SYN)_MT_
4221
Dave Jiang4ac13e12011-07-29 17:16:55 -07004222INTEL C600 SERIES SAS CONTROLLER DRIVER
4223M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004224M: Lukasz Dorau <lukasz.dorau@intel.com>
4225M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004226M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004227L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004228T: git git://git.code.sf.net/p/intel-sas/isci
4229S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004230F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004231
Len Brown26717172010-03-08 14:07:30 -05004232INTEL IDLE DRIVER
4233M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004234L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004235T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004236S: Supported
4237F: drivers/idle/intel_idle.c
4238
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004239INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004240M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004241L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004243F: Documentation/fb/intelfb.txt
4244F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004248L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004250F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304252INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004254L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304255W: http://www.lesswatts.org/projects/acpi/
4256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004257F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304258
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004260M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004262F: arch/x86/kernel/microcode_core.c
4263F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004265INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004266M: Dan Williams <djbw@fb.com>
4267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004268F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004269
David Woodhouse6c8909b2008-10-18 16:12:17 +01004270INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004272L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004273T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004274S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004275F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004276F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004277
Dan Williamsb3e5f262007-08-07 10:26:35 -07004278INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004279M: Dan Williams <djbw@fb.com>
4280S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004281F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004282
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004283INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004284M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4287F: arch/arm/mach-ixp4xx/include/mach/npe.h
4288F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4289F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004290F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004291F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004292
Michael Buesch844dd052006-06-26 00:24:59 -07004293INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004294M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004296F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004297
Jeff Kirsher0d164402010-10-05 01:15:17 +00004298INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004299M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4300M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4301M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004302M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4303M: Don Skidmore <donald.c.skidmore@intel.com>
4304M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004305M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004306M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004307M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004308M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004309L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004310W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004311W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004312T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4313T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004315F: Documentation/networking/e100.txt
4316F: Documentation/networking/e1000.txt
4317F: Documentation/networking/e1000e.txt
4318F: Documentation/networking/igb.txt
4319F: Documentation/networking/igbvf.txt
4320F: Documentation/networking/ixgb.txt
4321F: Documentation/networking/ixgbe.txt
4322F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004323F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004325INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4326M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004327L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004330F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004331F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004332
Shane Wang4bd96a72010-03-10 14:36:10 +08004333INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004334M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4335M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004336M: Shane Wang <shane.wang@intel.com>
4337L: tboot-devel@lists.sourceforge.net
4338W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004339T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004340S: Supported
4341F: Documentation/intel_txt.txt
4342F: include/linux/tboot.h
4343F: arch/x86/kernel/tboot.c
4344
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004345INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004347M: linux-wimax@intel.com
4348L: wimax@linuxwimax.org
4349S: Supported
4350W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004351F: Documentation/wimax/README.i2400m
4352F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004353F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004354
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004355INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4356M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004357L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004358S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004359F: drivers/net/wireless/iwlegacy/
4360
Zhu Yib481de92007-09-25 17:54:57 -07004361INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004362M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004363M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004364M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004365L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004366W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004367T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004369F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004370
Tomas Winklerde8fe022012-05-09 16:39:02 +03004371INTEL MANAGEMENT ENGINE (mei)
4372M: Tomas Winkler <tomas.winkler@intel.com>
4373L: linux-kernel@vger.kernel.org
4374S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004375F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004376F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004377F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004378
Ralf Baechlecb109a02007-08-30 23:56:30 -07004379IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004380M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381L: linux-mips@linux-mips.org
4382S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004383F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Ralf Baechlecb109a02007-08-30 23:56:30 -07004385IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004387L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004388S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004389F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004390
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004391IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
Francois Romieu1202d6f2007-09-17 17:13:55 -07004396IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004397M: Francois Romieu <romieu@fr.zoreil.com>
4398M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004399L: netdev@vger.kernel.org
4400S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004401F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004402
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004403IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004404M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004405L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004408
Corey Minyard4409ebe2006-04-20 02:43:12 -07004409IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004410M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004411L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004412W: http://openipmi.sourceforge.net/
4413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004414F: Documentation/IPMI.txt
4415F: drivers/char/ipmi/
4416F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004417F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004418
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004419IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004420M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004421L: linux-scsi@vger.kernel.org
4422W: http://www.adaptec.com/
4423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004425
4426IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Wensong Zhang <wensong@linux-vs.org>
4428M: Simon Horman <horms@verge.net.au>
4429M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004430L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004431L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004433F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004434F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004435F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004436F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Randy Dunlape7839f22008-10-12 16:11:45 -07004438IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004439M: Jiri Kosina <jkosina@suse.cz>
4440M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004441S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004442F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004443
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004444IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004445M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004446L: netdev@vger.kernel.org
4447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004448F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004449F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004450F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004453M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004454L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004455L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004457S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004458T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004459F: Documentation/networking/irda.txt
4460F: drivers/net/irda/
4461F: include/net/irda/
4462F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004464IRQ SUBSYSTEM
4465M: Thomas Gleixner <tglx@linutronix.de>
4466S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004467T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004468F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004469F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004470
Grant Likely7ab3a832012-02-14 14:06:47 -07004471IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4472M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Grant Likely7ab3a832012-02-14 14:06:47 -07004473S: Maintained
4474F: Documentation/IRQ-domain.txt
4475F: include/linux/irqdomain.h
4476F: kernel/irq/irqdomain.c
4477
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004478ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004479M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004481F: Documentation/isapnp.txt
4482F: drivers/pnp/isapnp/
4483F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004484
Hans Verkuild39b8422012-11-23 07:07:02 -03004485ISA RADIO MODULE
4486M: Hans Verkuil <hverkuil@xs4all.nl>
4487L: linux-media@vger.kernel.org
4488T: git git://linuxtv.org/media_tree.git
4489W: http://linuxtv.org
4490S: Maintained
4491F: drivers/media/radio/radio-isa*
4492
Harry Wei71a6d0a2011-05-11 15:13:33 -07004493iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4494M: Peter Jones <pjones@redhat.com>
4495M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4496S: Maintained
4497F: drivers/firmware/iscsi_ibft*
4498
Mike Christie14816b1e2007-11-28 16:22:06 -08004499ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004500M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004501L: open-iscsi@googlegroups.com
4502W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004503T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004505F: drivers/scsi/*iscsi*
4506F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004507
Or Gerlitz1e65eb42013-05-08 12:21:19 +00004508ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
4509M: Or Gerlitz <ogerlitz@mellanox.com>
4510M: Roi Dayan <roid@mellanox.com>
4511L: linux-rdma@vger.kernel.org
4512S: Supported
4513W: http://www.openfabrics.org
4514W: www.open-iscsi.org
4515Q: http://patchwork.kernel.org/project/linux-rdma/list/
4516F: drivers/infiniband/ulp/iser
4517
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004519M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004520L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004521L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004523T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004525F: Documentation/isdn/
4526F: drivers/isdn/
4527F: include/linux/isdn.h
4528F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004529F: include/uapi/linux/isdn.h
4530F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
4532ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004533M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004534L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535W: http://www.melware.de
4536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
Jean Delvared6248702010-03-05 22:17:20 +01004539IT87 HARDWARE MONITORING DRIVER
4540M: Jean Delvare <khali@linux-fr.org>
4541L: lm-sensors@lm-sensors.org
4542S: Maintained
4543F: Documentation/hwmon/it87
4544F: drivers/hwmon/it87.c
4545
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004546IT913X MEDIA DRIVER
4547M: Malcolm Priestley <tvboxspy@gmail.com>
4548L: linux-media@vger.kernel.org
4549W: http://linuxtv.org/
4550Q: http://patchwork.linuxtv.org/project/linux-media/list/
4551S: Maintained
4552F: drivers/media/usb/dvb-usb-v2/it913x*
4553
4554IT913X FE MEDIA DRIVER
4555M: Malcolm Priestley <tvboxspy@gmail.com>
4556L: linux-media@vger.kernel.org
4557W: http://linuxtv.org/
4558Q: http://patchwork.linuxtv.org/project/linux-media/list/
4559S: Maintained
4560F: drivers/media/dvb-frontends/it913x-fe*
4561
Antti Palosaarid7104bf2013-03-09 22:58:13 -03004562IT913X MEDIA DRIVER
4563M: Antti Palosaari <crope@iki.fi>
4564L: linux-media@vger.kernel.org
4565W: http://linuxtv.org/
4566W: http://palosaari.fi/linux/
4567Q: http://patchwork.linuxtv.org/project/linux-media/list/
4568T: git git://linuxtv.org/anttip/media_tree.git
4569S: Maintained
4570F: drivers/media/tuners/it913x*
4571
Hans Verkuil91821ff2007-12-02 09:35:33 -03004572IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004573M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004574L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004575L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004576T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004577W: http://www.ivtvdriver.org
4578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004580F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004581F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004582
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004583IX2505V MEDIA DRIVER
4584M: Malcolm Priestley <tvboxspy@gmail.com>
4585L: linux-media@vger.kernel.org
4586W: http://linuxtv.org/
4587Q: http://patchwork.linuxtv.org/project/linux-media/list/
4588S: Maintained
4589F: drivers/media/dvb-frontends/ix2505v*
4590
Guenter Roeck4453d732010-08-09 17:21:08 -07004591JC42.4 TEMPERATURE SENSOR DRIVER
4592M: Guenter Roeck <linux@roeck-us.net>
4593L: lm-sensors@lm-sensors.org
4594S: Maintained
4595F: drivers/hwmon/jc42.c
4596F: Documentation/hwmon/jc42
4597
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004598JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004599M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004600L: jfs-discussion@lists.sourceforge.net
4601W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004602T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004604F: Documentation/filesystems/jfs.txt
4605F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004606
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004607JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004608M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004609L: netdev@vger.kernel.org
4610S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004611F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004615L: linux-mtd@lists.infradead.org
4616W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004618F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004619F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Josh Triplettde456d32006-07-30 03:04:00 -07004621JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004622M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004623M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004624L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004625S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004626F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004627F: include/linux/jbd.h
4628
4629JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4630M: "Theodore Ts'o" <tytso@mit.edu>
4631L: linux-ext4@vger.kernel.org
4632S: Maintained
4633F: fs/jbd2/
4634F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004635
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004636JSM Neo PCI based serial card
Thadeu Lima de Souza Cascardo9d141cb2013-05-22 15:15:24 -03004637M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004638L: linux-serial@vger.kernel.org
4639S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004640F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004641
Clemens Ladischaf399172011-01-10 16:32:54 +01004642K10TEMP HARDWARE MONITORING DRIVER
4643M: Clemens Ladisch <clemens@ladisch.de>
4644L: lm-sensors@lm-sensors.org
4645S: Maintained
4646F: Documentation/hwmon/k10temp
4647F: drivers/hwmon/k10temp.c
4648
Rudolf Marek4660cb32006-10-08 22:01:26 +02004649K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004651L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: Documentation/hwmon/k8temp
4654F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
4656KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004657M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004658L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004659S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004660F: Documentation/kbuild/kconfig-language.txt
4661F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Vivek Goyalea6c2082006-05-20 14:59:55 -07004663KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004664M: Vivek Goyal <vgoyal@redhat.com>
4665M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004666L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004667W: http://lse.sourceforge.net/kdump/
4668S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004669F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004670
Hans Verkuilf41bf022012-11-23 07:04:36 -03004671KEENE FM RADIO TRANSMITTER DRIVER
4672M: Hans Verkuil <hverkuil@xs4all.nl>
4673L: linux-media@vger.kernel.org
4674T: git git://linuxtv.org/media_tree.git
4675W: http://linuxtv.org
4676S: Maintained
4677F: drivers/media/radio/radio-keene*
4678
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004680M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004681L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004683F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
Michal Marek70fb7ba2010-01-29 14:22:43 +01004685KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004686M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004687T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4688T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004689L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004691F: Documentation/kbuild/
4692F: Makefile
4693F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004694F: scripts/basic/
4695F: scripts/mk*
4696F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
4698KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004699L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004700W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004701S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004703KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004705L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004708F: fs/nfsd/
4709F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004710F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004711F: fs/lockd/
4712F: fs/nfs_common/
4713F: net/sunrpc/
4714F: include/linux/lockd/
4715F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004716F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Avi Kivity426d62e2006-12-13 00:34:03 -08004718KERNEL VIRTUAL MACHINE (KVM)
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004719M: Gleb Natapov <gleb@redhat.com>
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004720M: Paolo Bonzini <pbonzini@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004721L: kvm@vger.kernel.org
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004722W: http://linux-kvm.org
Avi Kivity426d62e2006-12-13 00:34:03 -08004723S: Supported
Paolo Bonzinic93a64f2013-05-15 19:02:24 +02004724F: Documentation/*/kvm*.txt
4725F: Documentation/virtual/kvm/
Joe Perches679655d2009-04-07 20:44:32 -07004726F: arch/*/kvm/
4727F: arch/*/include/asm/kvm*
4728F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004729F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004730F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004731
Joerg Roedelad8003d2008-09-10 20:01:07 +02004732KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004733M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004734L: kvm@vger.kernel.org
4735W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004737F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004738F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004739
Hollis Blanchard513014b2008-04-16 23:28:08 -05004740KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004741M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004742L: kvm-ppc@vger.kernel.org
4743W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004744T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004746F: arch/powerpc/include/asm/kvm*
4747F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004748
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004749KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004751L: kvm-ia64@vger.kernel.org
4752W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004754F: Documentation/ia64/kvm.txt
4755F: arch/ia64/include/asm/kvm*
4756F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004757
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004758KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004760M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004761M: linux390@de.ibm.com
4762L: linux-s390@vger.kernel.org
4763W: http://www.ibm.com/developerworks/linux/linux390/
4764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004765F: Documentation/s390/kvm.txt
4766F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004767F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004768F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004769
Christoffer Dalla7494742013-01-20 18:42:26 -05004770KERNEL VIRTUAL MACHINE (KVM) FOR ARM
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004771M: Christoffer Dall <christoffer.dall@linaro.org>
Christoffer Dalla7494742013-01-20 18:42:26 -05004772L: kvmarm@lists.cs.columbia.edu
4773W: http://systems.cs.columbia.edu/projects/kvm-arm
Christoffer Dall0f4ca792013-06-21 13:54:36 -07004774S: Supported
Christoffer Dalla7494742013-01-20 18:42:26 -05004775F: arch/arm/include/uapi/asm/kvm*
4776F: arch/arm/include/asm/kvm*
4777F: arch/arm/kvm/
4778
Marc Zyngier6394a3e2013-04-02 17:49:40 +01004779KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
4780M: Marc Zyngier <marc.zyngier@arm.com>
4781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4782L: kvmarm@lists.cs.columbia.edu
4783S: Maintained
4784F: arch/arm64/include/uapi/asm/kvm*
4785F: arch/arm64/include/asm/kvm*
4786F: arch/arm64/kvm/
4787
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004788KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004789M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004790W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004791L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004793F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004794F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004795F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004796
David Howellse9714612010-03-29 23:42:09 +01004797KEYS/KEYRINGS:
4798M: David Howells <dhowells@redhat.com>
4799L: keyrings@linux-nfs.org
4800S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004801F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004802F: include/linux/key.h
4803F: include/linux/key-type.h
4804F: include/keys/
4805F: security/keys/
4806
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004807KEYS-TRUSTED
4808M: David Safford <safford@watson.ibm.com>
4809M: Mimi Zohar <zohar@us.ibm.com>
4810L: linux-security-module@vger.kernel.org
4811L: keyrings@linux-nfs.org
4812S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004813F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004814F: include/keys/trusted-type.h
4815F: security/keys/trusted.c
4816F: security/keys/trusted.h
4817
4818KEYS-ENCRYPTED
4819M: Mimi Zohar <zohar@us.ibm.com>
4820M: David Safford <safford@watson.ibm.com>
4821L: linux-security-module@vger.kernel.org
4822L: keyrings@linux-nfs.org
4823S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004824F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004825F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004826F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004827
Jason Wessel5b778da2010-05-20 21:04:28 -05004828KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004829M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004830W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004831L: kgdb-bugreport@lists.sourceforge.net
4832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004833F: Documentation/DocBook/kgdb.tmpl
4834F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004835F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004836F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004837F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004838F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004839
Pekka Enberg456db8c2008-04-28 22:47:29 +03004840KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004841M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004842M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004843S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004844F: Documentation/kmemcheck.txt
4845F: arch/x86/include/asm/kmemcheck.h
4846F: arch/x86/mm/kmemcheck/
4847F: include/linux/kmemcheck.h
4848F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004849
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004850KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004851M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004852S: Maintained
4853F: Documentation/kmemleak.txt
4854F: include/linux/kmemleak.h
4855F: mm/kmemleak.c
4856F: mm/kmemleak-test.c
4857
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004858KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004859M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4860M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4861M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004862M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004864F: Documentation/kprobes.txt
4865F: include/linux/kprobes.h
4866F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004867
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004868KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004870W: http://miguelojeda.es/auxdisplay.htm
4871W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004873F: Documentation/auxdisplay/ks0108
4874F: drivers/auxdisplay/ks0108.c
4875F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004876
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004879S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004880F: Documentation/networking/lapb-module.txt
4881F: include/*/lapb.h
4882F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886L: linux-scsi@vger.kernel.org
4887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004888F: Documentation/scsi/53c700.txt
4889F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Richard Purdie263de9b2006-05-15 09:44:16 -07004891LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004892M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004893M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004894L: linux-leds@vger.kernel.org
4895T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004897F: drivers/leds/
4898F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004899
Jean Delvareb0461a42011-06-15 15:08:46 -07004900LEGACY EEPROM DRIVER
4901M: Jean Delvare <khali@linux-fr.org>
4902S: Maintained
4903F: Documentation/misc-devices/eeprom
4904F: drivers/misc/eeprom/eeprom.c
4905
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004907M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908L: legousb-devel@lists.sourceforge.net
4909W: http://legousb.sourceforge.net/
4910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004911F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912
Michael Krufky055616a2012-10-02 00:56:06 -03004913LG2160 MEDIA DRIVER
4914M: Michael Krufky <mkrufky@linuxtv.org>
4915L: linux-media@vger.kernel.org
4916W: http://linuxtv.org/
4917W: http://github.com/mkrufky
4918Q: http://patchwork.linuxtv.org/project/linux-media/list/
4919T: git git://linuxtv.org/mkrufky/tuners.git
4920S: Maintained
4921F: drivers/media/dvb-frontends/lg2160.*
4922
Michael Krufky6f0e7722012-10-02 00:56:00 -03004923LGDT3305 MEDIA DRIVER
4924M: Michael Krufky <mkrufky@linuxtv.org>
4925L: linux-media@vger.kernel.org
4926W: http://linuxtv.org/
4927W: http://github.com/mkrufky
4928Q: http://patchwork.linuxtv.org/project/linux-media/list/
4929T: git git://linuxtv.org/mkrufky/tuners.git
4930S: Maintained
4931F: drivers/media/dvb-frontends/lgdt3305.*
4932
Rusty Russell568a17f2007-10-25 14:12:24 +10004933LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004934M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004935L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004936W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004937S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004938F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004939F: arch/x86/lguest/
4940F: drivers/lguest/
4941F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004942F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004945M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946W: http://www.ibm.com/linux/ltc/projects/ppc
4947S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004948F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004950LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004951M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4952M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004954L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004955Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004956T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004958F: Documentation/powerpc/
4959F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
4961LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004962M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004964L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004966F: arch/powerpc/platforms/powermac/
4967F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Grant Likely77a76362008-07-12 12:11:43 -06004969LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004970M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004971L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004972T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004974F: arch/powerpc/platforms/512x/
4975F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976
4977LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004978M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004979M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004981L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004982T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004984F: arch/powerpc/platforms/40x/
4985F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
Grant Likely260c02a2007-10-02 12:15:34 +10004987LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004988L: linuxppc-dev@lists.ozlabs.org
Grant Likelycdeb8992013-07-22 01:38:32 +01004989S: Orphan
Joe Perches11c34c72009-12-04 07:16:59 +00004990F: arch/powerpc/*/*virtex*
4991F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Tom Rinie93adf12005-07-26 12:49:53 -07004993LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: Vitaly Bordug <vitb@kernel.crashing.org>
4995M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004996W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004997L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004998S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004999F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07005000
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07005002M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01005003W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005004L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01005005S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005006F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03005007F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
Olof Johanssonab06ff32006-09-06 14:44:54 -05005009LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005011L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00005012S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00005013F: arch/powerpc/platforms/pasemi/
5014F: drivers/*/*pasemi*
5015F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05005016
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005018M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08005019L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020S: Supported
5021
Harry Weia23ce6d2011-02-11 16:52:20 +01005022LIS3LV02D ACCELEROMETER DRIVER
5023M: Eric Piel <eric.piel@tremplin-utc.net>
5024S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01005025F: Documentation/misc-devices/lis3lv02d
5026F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07005027F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01005028
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005029LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07005030M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005032F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005033F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07005034F: include/net/llc*
5035F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005036
Adrien Demarez4e233cb2009-12-09 20:35:50 +01005037LM73 HARDWARE MONITOR DRIVER
5038M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
5039L: lm-sensors@lm-sensors.org
5040S: Maintained
5041F: drivers/hwmon/lm73.c
5042
Jean Delvare156e2d12011-07-25 21:46:11 +02005043LM78 HARDWARE MONITOR DRIVER
5044M: Jean Delvare <khali@linux-fr.org>
5045L: lm-sensors@lm-sensors.org
5046S: Maintained
5047F: Documentation/hwmon/lm78
5048F: drivers/hwmon/lm78.c
5049
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005051M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005052L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: Documentation/hwmon/lm83
5055F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
5057LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005058M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02005059L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: Documentation/hwmon/lm90
5062F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Guenter Roeck917cc4e2013-05-19 20:44:27 -07005064LM95234 HARDWARE MONITOR DRIVER
5065M: Guenter Roeck <linux@roeck-us.net>
5066L: lm-sensors@lm-sensors.org
5067S: Maintained
5068F: Documentation/hwmon/lm95234
5069F: drivers/hwmon/lm95234.c
5070
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005071LME2510 MEDIA DRIVER
5072M: Malcolm Priestley <tvboxspy@gmail.com>
5073L: linux-media@vger.kernel.org
5074W: http://linuxtv.org/
5075Q: http://patchwork.linuxtv.org/project/linux-media/list/
5076S: Maintained
5077F: drivers/media/usb/dvb-usb-v2/lmedm04*
5078
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005079LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07005080M: Peter Zijlstra <peterz@infradead.org>
5081M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005082T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005084F: Documentation/lockdep*.txt
5085F: Documentation/lockstat.txt
5086F: include/linux/lockdep.h
5087F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02005088
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005089LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01005091L: linux-ntfs-dev@lists.sourceforge.net
5092W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005094F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08005095F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Joern Engelef6ada32009-11-20 22:17:12 +01005097LogFS
5098M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05305099M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01005100L: logfs@logfs.org
5101W: logfs.org
5102S: Maintained
5103F: fs/logfs/
5104
Roland Stiggeb62d7942013-04-02 19:37:11 +02005105LPC32XX MACHINE SUPPORT
5106M: Roland Stigge <stigge@antcom.de>
5107L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5108S: Maintained
5109F: arch/arm/mach-lpc32xx/
5110
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005111LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305112M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5113M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08005114M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06005115L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005116L: linux-scsi@vger.kernel.org
5117W: http://www.lsilogic.com/support
5118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005119F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05305120F: drivers/scsi/mpt2sas/
5121F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07005122
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125L: linux-scsi@vger.kernel.org
5126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005127F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Guenter Roecke5f5c992010-06-25 11:59:54 -07005129LTC4261 HARDWARE MONITOR DRIVER
5130M: Guenter Roeck <linux@roeck-us.net>
5131L: lm-sensors@lm-sensors.org
5132S: Maintained
5133F: Documentation/hwmon/ltc4261
5134F: drivers/hwmon/ltc4261.c
5135
Mike Frysinger81365c32008-10-29 14:01:12 -07005136LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005137M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07005138M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005139M: Cyril Hrubis <chrubis@suse.cz>
5140M: Caspar Zhang <caspar@casparzhang.com>
5141M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07005142L: ltp-list@lists.sourceforge.net (subscribers-only)
5143W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07005144T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07005145T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07005146S: Maintained
5147
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005148M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02005150L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005151L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5152W: http://www.linux-m32r.org/
5153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005154F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005157M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158L: linux-m68k@lists.linux-m68k.org
5159W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07005160T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005162F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07005163F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
5165M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07005166M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01005168L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07005170F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
5172M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174W: http://www.tazenda.demon.co.uk/phil/linux-hp
5175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005176F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Malcolm Priestley68620bd2012-11-04 19:16:31 +01005178M88RS2000 MEDIA DRIVER
5179M: Malcolm Priestley <tvboxspy@gmail.com>
5180L: linux-media@vger.kernel.org
5181W: http://linuxtv.org/
5182Q: http://patchwork.linuxtv.org/project/linux-media/list/
5183S: Maintained
5184F: drivers/media/dvb-frontends/m88rs2000*
5185
Alexey Klimov07a092f2012-11-12 02:57:32 -03005186MA901 MASTERKIT USB FM RADIO DRIVER
5187M: Alexey Klimov <klimov.linux@gmail.com>
5188L: linux-media@vger.kernel.org
5189T: git git://linuxtv.org/media_tree.git
5190S: Maintained
5191F: drivers/media/radio/radio-ma901.c
5192
Jiri Benc64a327a2007-05-05 11:47:08 -07005193MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07005194M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07005195L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005196W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02005197T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5198T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07005199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005200F: Documentation/networking/mac80211-injection.txt
5201F: include/net/mac80211.h
5202F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07005203
Stefano Brivio1036d862007-12-23 04:46:27 +01005204MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07005205M: Stefano Brivio <stefano.brivio@polimi.it>
5206M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01005207L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005208W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02005209T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5210T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01005211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005212F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01005213
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005214MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005216L: netdev@vger.kernel.org
5217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: drivers/net/macvlan.c
5219F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07005220
Michael Kerriskfaf16682005-07-31 22:34:47 -07005221MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07005222M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005223W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07005224L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07005225S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07005226
stephen hemminger44c14c12012-04-02 12:59:47 +00005227MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5228M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005229M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00005230L: netdev@vger.kernel.org
5231S: Maintained
5232F: drivers/net/ethernet/marvell/sk*
5233
Stefano Brivio74cda162007-11-19 20:27:46 +01005234MARVELL LIBERTAS WIRELESS DRIVER
Stefano Brivio74cda162007-11-19 20:27:46 +01005235L: libertas-dev@lists.infradead.org
Dan Williams8ac3e992013-03-26 14:40:51 -05005236S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005237F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005238
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005239MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005240M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005241L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005242S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005243F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005244F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005246MARVELL MVNETA ETHERNET DRIVER
5247M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5248L: netdev@vger.kernel.org
5249S: Maintained
5250F: drivers/net/ethernet/marvell/mvneta.*
5251
Bing Zhaofcad5842011-07-13 13:11:58 -07005252MARVELL MWIFIEX WIRELESS DRIVER
5253M: Bing Zhao <bzhao@marvell.com>
5254L: linux-wireless@vger.kernel.org
5255S: Maintained
5256F: drivers/net/wireless/mwifiex/
5257
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005258MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005259M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005260L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005261S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005262F: drivers/net/wireless/mwl8k.c
5263
Pierre Ossman2a695672009-03-16 19:52:26 +01005264MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005265M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005266S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005267F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005268
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005270L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005271S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005272F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005273F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
Guenter Roeckca462082012-06-01 23:28:23 -07005275MAX16065 HARDWARE MONITOR DRIVER
5276M: Guenter Roeck <linux@roeck-us.net>
5277L: lm-sensors@lm-sensors.org
5278S: Maintained
5279F: Documentation/hwmon/max16065
5280F: drivers/hwmon/max16065.c
5281
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005282MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005283M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005284L: lm-sensors@lm-sensors.org
5285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: Documentation/hwmon/max6650
5287F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005288
Guenter Roecke89ab512013-03-08 08:13:09 -08005289MAX6697 HARDWARE MONITOR DRIVER
5290M: Guenter Roeck <linux@roeck-us.net>
5291L: lm-sensors@lm-sensors.org
5292S: Maintained
5293F: Documentation/hwmon/max6697
5294F: Documentation/devicetree/bindings/i2c/max6697.txt
5295F: drivers/hwmon/max6697.c
5296F: include/linux/platform_data/max6697.h
5297
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005298MAXIRADIO FM RADIO RECEIVER DRIVER
5299M: Hans Verkuil <hverkuil@xs4all.nl>
5300L: linux-media@vger.kernel.org
5301T: git git://linuxtv.org/media_tree.git
5302W: http://linuxtv.org
5303S: Maintained
5304F: drivers/media/radio/radio-maxiradio*
5305
Joe Perches127c49a2009-04-08 08:34:04 -07005306MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03005307M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005308P: LinuxTV.org Project
5309L: linux-media@vger.kernel.org
5310W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005311Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005312T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005313S: Maintained
5314F: Documentation/dvb/
5315F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005316F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005317F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005318F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005319F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005320F: include/uapi/linux/dvb/
5321F: include/uapi/linux/videodev2.h
5322F: include/uapi/linux/media.h
5323F: include/uapi/linux/v4l2-*
5324F: include/uapi/linux/meye.h
5325F: include/uapi/linux/ivtv*
5326F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005327
Hans Verkuil6149a932012-11-23 07:21:19 -03005328MEDIAVISION PRO MOVIE STUDIO DRIVER
5329M: Hans Verkuil <hverkuil@xs4all.nl>
5330L: linux-media@vger.kernel.org
5331T: git git://linuxtv.org/media_tree.git
5332W: http://linuxtv.org
5333S: Odd Fixes
5334F: drivers/media/parport/pms*
5335
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005336MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005337M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005338L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005339W: http://megaraid.lsilogic.com
5340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005341F: Documentation/scsi/megaraid.txt
5342F: drivers/scsi/megaraid.*
5343F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005344
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005345MELLANOX ETHERNET DRIVER (mlx4_en)
5346M: Amir Vadai <amirv@mellanox.com>
5347L: netdev@vger.kernel.org
5348S: Supported
5349W: http://www.mellanox.com
5350Q: http://patchwork.ozlabs.org/project/netdev/list/
5351F: drivers/net/ethernet/mellanox/mlx4/en_*
5352
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005353MEMORY MANAGEMENT
5354L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005355W: http://www.linux-mm.org
5356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005357F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005358F: include/linux/gfp.h
5359F: include/linux/mmzone.h
5360F: include/linux/memory_hotplug.h
5361F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005362F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005363
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005364MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005365M: Johannes Weiner <hannes@cmpxchg.org>
5366M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005367M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005368M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005369L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005370L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005372F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005373F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005374
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005375MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005378W: http://www.linux-mtd.infradead.org/
5379Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005380T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005382F: drivers/mtd/
5383F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005384F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Johannes Thumshirn26c57ef2013-06-18 17:19:45 +02005386MEN A21 WATCHDOG DRIVER
5387M: Johannes Thumshirn <johannes.thumshirn@men.de>
5388L: linux-watchdog@vger.kernel.org
5389S: Supported
5390F: drivers/watchdog/mena21_wdt.c
5391
James Hogan12285942012-10-10 12:59:49 +01005392METAG ARCHITECTURE
5393M: James Hogan <james.hogan@imgtec.com>
5394S: Supported
5395F: arch/metag/
5396F: Documentation/metag/
5397F: Documentation/devicetree/bindings/metag/
James Hogana2c5d4e2012-10-09 10:54:39 +01005398F: drivers/clocksource/metag_generic.c
James Hogan5698c502012-10-09 10:54:47 +01005399F: drivers/irqchip/irq-metag.c
5400F: drivers/irqchip/irq-metag-ext.c
James Hoganae85ac72012-09-21 17:38:15 +01005401F: drivers/tty/metag_da.c
5402F: fs/imgdafs/
James Hogan12285942012-10-10 12:59:49 +01005403
Michal Simekc6375b02009-03-27 14:25:52 +01005404MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005405M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005406L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005407W: http://www.monstr.eu/fdt/
5408T: git git://git.monstr.eu/linux-2.6-microblaze.git
5409S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005410F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
5412MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005413M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005418M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005420W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005421T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005422Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005424F: Documentation/mips/
5425F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Hans Verkuil08b76202012-11-23 07:15:42 -03005427MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5428M: Hans Verkuil <hverkuil@xs4all.nl>
5429L: linux-media@vger.kernel.org
5430T: git git://linuxtv.org/media_tree.git
5431W: http://linuxtv.org
5432S: Odd Fixes
5433F: drivers/media/radio/radio-miropcm20*
5434
Eli Cohene126ba92013-07-07 17:25:49 +03005435Mellanox MLX5 core VPI driver
5436M: Eli Cohen <eli@mellanox.com>
5437L: netdev@vger.kernel.org
5438L: linux-rdma@vger.kernel.org
5439W: http://www.mellanox.com
5440Q: http://patchwork.ozlabs.org/project/netdev/list/
5441Q: http://patchwork.kernel.org/project/linux-rdma/list/
5442T: git://openfabrics.org/~eli/connect-ib.git
5443S: Supported
5444F: drivers/net/ethernet/mellanox/mlx5/core/
5445F: include/linux/mlx5/
5446
5447Mellanox MLX5 IB driver
5448M: Eli Cohen <eli@mellanox.com>
5449L: linux-rdma@vger.kernel.org
5450W: http://www.mellanox.com
5451Q: http://patchwork.kernel.org/project/linux-rdma/list/
5452T: git://openfabrics.org/~eli/connect-ib.git
5453S: Supported
5454F: include/linux/mlx5/
5455F: drivers/infiniband/hw/mlx5/
5456
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005458M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005460F: include/linux/module.h
5461F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
5463MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005465S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005466F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005467F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005468F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
Jiri Slabyb9705b62008-04-30 00:53:48 -07005470MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005474F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005475
Alexey Klimov889b2f82012-11-16 17:43:59 -03005476MR800 AVERMEDIA USB FM RADIO DRIVER
5477M: Alexey Klimov <klimov.linux@gmail.com>
5478L: linux-media@vger.kernel.org
5479T: git git://linuxtv.org/media_tree.git
5480S: Maintained
5481F: drivers/media/radio/radio-mr800.c
5482
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005483MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005484M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005485L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005488
Anisse Astier0f1006b2009-12-17 11:28:49 +01005489MSI WMI SUPPORT
5490M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005491L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005492S: Supported
5493F: drivers/platform/x86/msi-wmi.c
5494
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005495MT9M032 SENSOR DRIVER
5496M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5497L: linux-media@vger.kernel.org
5498T: git git://linuxtv.org/media_tree.git
5499S: Maintained
5500F: drivers/media/i2c/mt9m032.c
5501F: include/media/mt9m032.h
5502
5503MT9P031 SENSOR DRIVER
5504M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5505L: linux-media@vger.kernel.org
5506T: git git://linuxtv.org/media_tree.git
5507S: Maintained
5508F: drivers/media/i2c/mt9p031.c
5509F: include/media/mt9p031.h
5510
5511MT9T001 SENSOR DRIVER
5512M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5513L: linux-media@vger.kernel.org
5514T: git git://linuxtv.org/media_tree.git
5515S: Maintained
5516F: drivers/media/i2c/mt9t001.c
5517F: include/media/mt9t001.h
5518
5519MT9V032 SENSOR DRIVER
5520M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5521L: linux-media@vger.kernel.org
5522T: git git://linuxtv.org/media_tree.git
5523S: Maintained
5524F: drivers/media/i2c/mt9v032.c
5525F: include/media/mt9v032.h
5526
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005527MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005528M: Samuel Ortiz <sameo@linux.intel.com>
Samuel Ortizf7d32102013-05-17 00:53:42 +02005529M: Lee Jones <lee.jones@linaro.org>
5530T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git
5531T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/mfd/
Mark Brown55b59402013-06-28 15:14:11 +01005534F: include/linux/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005535
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005536MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005537M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005538L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005539T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: drivers/mmc/
5542F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005543F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005544
David Brownell15a05802007-08-08 09:12:54 -07005545MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005546S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005547F: drivers/mmc/host/mmc_spi.c
5548F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005549
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005551M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005553F: Documentation/sound/oss/MultiSound
5554F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
Jiri Slabyd7354102006-12-08 02:38:35 -08005556MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005557S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005558F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005559F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005560
Felipe Balbi550a7372008-07-24 12:27:36 +03005561MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005562M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005563L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005564T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005566F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005567
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005568MXL5007T MEDIA DRIVER
5569M: Michael Krufky <mkrufky@linuxtv.org>
5570L: linux-media@vger.kernel.org
5571W: http://linuxtv.org/
5572W: http://github.com/mkrufky
5573Q: http://patchwork.linuxtv.org/project/linux-media/list/
5574T: git git://linuxtv.org/mkrufky/tuners.git
5575S: Maintained
5576F: drivers/media/tuners/mxl5007t.*
5577
Brice Goglin2d3cf582008-05-17 12:45:36 +02005578MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005580L: netdev@vger.kernel.org
5581W: http://www.myri.com/scs/download-Myri10GE.html
5582S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005583F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005586S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005587F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Daniel Mack23dc05a2011-05-18 11:28:38 +02005589NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5590M: Daniel Mack <zonque@gmail.com>
5591S: Maintained
5592L: alsa-devel@alsa-project.org
5593W: http://www.native-instruments.com
5594F: sound/usb/caiaq/
5595
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005597M: Petr Vandrovec <petr@vandrovec.name>
5598S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005599F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600
5601NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005602M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603L: linux-scsi@vger.kernel.org
5604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005605F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
Guenter Roeck4aa3eb42013-04-03 14:12:11 -07005607NCT6775 HARDWARE MONITOR DRIVER
5608M: Guenter Roeck <linux@roeck-us.net>
5609L: lm-sensors@lm-sensors.org
5610S: Maintained
5611F: Documentation/hwmon/nct6775
5612F: drivers/hwmon/nct6775.c
5613
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005614NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005615M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005616L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005617W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005618S: Supported
5619F: drivers/infiniband/hw/nes/
5620
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005621NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005622M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005623L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005626
Jon Masonb2f5a052010-07-15 08:47:27 +00005627NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005628M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005629L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005631F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005632F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005633F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005634
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005635NETFILTER/IPTABLES
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005636M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005637M: Patrick McHardy <kaber@trash.net>
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005638M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005639L: netfilter-devel@vger.kernel.org
5640L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005641L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642W: http://www.netfilter.org/
5643W: http://www.iptables.org/
Pablo Neira Ayuso42010ed2013-05-06 12:22:57 +02005644Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
5645T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
5646T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005648F: include/linux/netfilter*
5649F: include/linux/netfilter/
5650F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005651F: include/uapi/linux/netfilter*
5652F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005653F: net/*/netfilter.c
5654F: net/*/netfilter/
5655F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656
Paul Moore4cc67732006-09-25 15:57:13 -07005657NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005658M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005659W: http://netlabel.sf.net
5660L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005661S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005662F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005663F: include/net/netlabel.h
5664F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005665
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005667M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005669W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005671F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005672F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005673F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005675NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677S: Maintained
Wouter Verhelst5e4b2692013-02-27 17:05:27 -08005678L: nbd-general@lists.sourceforge.net
Joe Perches679655d2009-04-07 20:44:32 -07005679F: Documentation/blockdev/nbd.txt
5680F: drivers/block/nbd.c
5681F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005682F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
Neil Horman6e436502009-10-05 03:56:55 +00005684NETWORK DROP MONITOR
5685M: Neil Horman <nhorman@tuxdriver.com>
5686L: netdev@vger.kernel.org
5687S: Maintained
5688W: https://fedorahosted.org/dropwatch/
5689F: net/core/drop_monitor.c
5690
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005693L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005694W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005695Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005696T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5697T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: net/
5700F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005701F: include/linux/in.h
5702F: include/linux/net.h
5703F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005704F: include/uapi/linux/in.h
5705F: include/uapi/linux/net.h
5706F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
5708NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: "David S. Miller" <davem@davemloft.net>
5710M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005711M: James Morris <jmorris@namei.org>
5712M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5713M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005714L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005715T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: net/ipv4/
5718F: net/ipv6/
5719F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005720F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
David S. Miller73b76562012-10-16 14:08:40 -04005722NETWORKING [IPSEC]
5723M: Steffen Klassert <steffen.klassert@secunet.com>
5724M: Herbert Xu <herbert@gondor.apana.org.au>
5725M: "David S. Miller" <davem@davemloft.net>
5726L: netdev@vger.kernel.org
5727T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5728S: Maintained
5729F: net/xfrm/
5730F: net/key/
5731F: net/ipv4/xfrm*
5732F: net/ipv6/xfrm*
5733F: include/uapi/linux/xfrm.h
5734F: include/net/xfrm.h
5735
James Morris10e2ff12007-08-25 14:41:28 -07005736NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005737M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005738L: netdev@vger.kernel.org
5739S: Maintained
5740
John W. Linville29f8f632006-01-18 14:52:48 -08005741NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005742M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005743L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005744Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005745T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005746S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005747F: net/mac80211/
5748F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005749F: net/wireless/
5750F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005751F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005752F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005753F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005754F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005755
Joe Perches788873a2009-04-16 09:38:45 +00005756NETWORKING DRIVERS
5757L: netdev@vger.kernel.org
5758W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005759Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005760T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5761T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005762S: Odd Fixes
5763F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005764F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005765F: include/linux/netdevice.h
5766F: include/linux/arcdevice.h
5767F: include/linux/etherdevice.h
5768F: include/linux/fcdevice.h
5769F: include/linux/fddidevice.h
5770F: include/linux/hippidevice.h
5771F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005772F: include/uapi/linux/if_*
5773F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005774
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005775NETXEN (1/10) GbE SUPPORT
Manish Chopra86223152013-03-28 23:54:08 +00005776M: Manish Chopra <manish.chopra@qlogic.com>
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005777M: Sony Chacko <sony.chacko@qlogic.com>
5778M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005779L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005780W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005781S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005782F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005783
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005784NFC SUBSYSTEM
5785M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5786M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5787M: Samuel Ortiz <sameo@linux.intel.com>
5788L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005789L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005790S: Maintained
5791F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005792F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005793F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005794F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005795F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005797NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005798M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005799L: linux-nfs@vger.kernel.org
5800W: http://client.linux-nfs.org
5801T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005803F: fs/lockd/
5804F: fs/nfs/
5805F: fs/nfs_common/
5806F: net/sunrpc/
5807F: include/linux/lockd/
5808F: include/linux/nfs*
5809F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005810F: include/uapi/linux/nfs*
5811F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005813NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005814M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005815L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005816W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/filesystems/nilfs2.txt
5820F: fs/nilfs2/
5821F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005824M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005827F: Documentation/scsi/NinjaSCSI.txt
5828F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829
5830NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005831M: GOTO Masanori <gotom@debian.or.jp>
5832M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005835F: Documentation/scsi/NinjaSCSI.txt
5836F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837
Jon Masonfce8a7b2012-11-16 19:27:12 -07005838NTB DRIVER
5839M: Jon Mason <jon.mason@intel.com>
5840S: Supported
5841F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005842F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005843F: include/linux/ntb.h
5844
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005846M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005848W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005849T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005851F: Documentation/filesystems/ntfs.txt
5852F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005854NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005855M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005856L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: drivers/video/riva/
5859F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Matthew Wilcox79461682012-11-10 08:54:53 -05005861NVM EXPRESS DRIVER
5862M: Matthew Wilcox <willy@linux.intel.com>
5863L: linux-nvme@lists.infradead.org
5864T: git git://git.infradead.org/users/willy/linux-nvme.git
5865S: Supported
Dan Carpenter5be37bf2013-05-13 18:00:42 +03005866F: drivers/block/nvme*
Matthew Wilcox79461682012-11-10 08:54:53 -05005867F: include/linux/nvme.h
5868
Tony Lindgrenf5525782009-05-28 13:23:53 -07005869OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005870M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005871L: linux-omap@vger.kernel.org
5872W: http://www.muru.com/linux/omap/
5873W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005874Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005875T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005876S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005877F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005878F: drivers/i2c/busses/i2c-omap.c
5879F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005880
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005881OMAP DEVICE TREE SUPPORT
5882M: Benoît Cousson <b-cousson@ti.com>
5883M: Tony Lindgren <tony@atomide.com>
5884L: linux-omap@vger.kernel.org
Grant Likelyd0fb18c2013-07-19 20:10:12 -07005885L: devicetree@vger.kernel.org
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005886S: Maintained
5887F: arch/arm/boot/dts/*omap*
5888F: arch/arm/boot/dts/*am3*
5889
Tony Lindgrenf5525782009-05-28 13:23:53 -07005890OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005891M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005892L: linux-omap@vger.kernel.org
5893S: Maintained
5894F: arch/arm/*omap*/*clock*
5895
5896OMAP POWER MANAGEMENT SUPPORT
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005897M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005898L: linux-omap@vger.kernel.org
5899S: Maintained
5900F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005901F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005902
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005903OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5904M: Rajendra Nayak <rnayak@ti.com>
5905M: Paul Walmsley <paul@pwsan.com>
5906L: linux-omap@vger.kernel.org
5907S: Maintained
5908F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5909F: arch/arm/mach-omap2/powerdomain44xx.c
5910F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5911F: arch/arm/mach-omap2/clockdomain44xx.c
5912
Tony Lindgrenf5525782009-05-28 13:23:53 -07005913OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005914M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005915M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005916L: alsa-devel@alsa-project.org (subscribers-only)
5917L: linux-omap@vger.kernel.org
5918S: Maintained
5919F: sound/soc/omap/
5920
5921OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005922M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005923L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005924L: linux-omap@vger.kernel.org
5925S: Maintained
5926F: drivers/video/omap/
5927
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005928OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005929M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005930L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005931L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005932S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005933F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005934F: Documentation/arm/OMAP/DSS
5935
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005936OMAP HARDWARE SPINLOCK SUPPORT
5937M: Ohad Ben-Cohen <ohad@wizery.com>
5938L: linux-omap@vger.kernel.org
5939S: Maintained
5940F: drivers/hwspinlock/omap_hwspinlock.c
5941F: arch/arm/mach-omap2/hwspinlock.c
5942
Tony Lindgrenf5525782009-05-28 13:23:53 -07005943OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005944M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005945L: linux-omap@vger.kernel.org
5946S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005947F: drivers/mmc/host/omap.c
5948
5949OMAP HS MMC SUPPORT
Balaji T K14006bf2013-02-06 20:04:43 +05305950M: Balaji T K <balajitk@ti.com>
Venkatraman S0a4585c2012-08-17 23:59:53 +05305951L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005952L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305953S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005954F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005955
5956OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005957M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005958S: Maintained
5959F: drivers/char/hw_random/omap-rng.c
5960
Paul Walmsleyf400c822010-12-06 19:08:54 -07005961OMAP HWMOD SUPPORT
5962M: Benoît Cousson <b-cousson@ti.com>
5963M: Paul Walmsley <paul@pwsan.com>
5964L: linux-omap@vger.kernel.org
5965S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005966F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005967
5968OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5969M: Benoît Cousson <b-cousson@ti.com>
5970L: linux-omap@vger.kernel.org
5971S: Maintained
5972F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5973
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005974OMAP IMAGE SIGNAL PROCESSOR (ISP)
5975M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5976L: linux-media@vger.kernel.org
5977S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005978F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005979
Tony Lindgrenf5525782009-05-28 13:23:53 -07005980OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005981M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005982L: linux-usb@vger.kernel.org
5983L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005984T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005985S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005986F: drivers/usb/*/*omap*
5987F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005988
Kevin Hilman6d994712012-07-16 10:05:07 -07005989OMAP GPIO DRIVER
5990M: Santosh Shilimkar <santosh.shilimkar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08005991M: Kevin Hilman <khilman@deeprootsystems.com>
Kevin Hilman6d994712012-07-16 10:05:07 -07005992L: linux-omap@vger.kernel.org
5993S: Maintained
5994F: drivers/gpio/gpio-omap.c
5995
Bob Copeland0ad122d2008-07-25 19:45:18 -07005996OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005997M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005998L: linux-karma-devel@lists.sourceforge.net
5999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: Documentation/filesystems/omfs.txt
6001F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07006002
Harald Weltec1986ee2005-11-13 16:06:29 -08006003OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08006005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: drivers/char/pcmcia/cm4000_cs.c
6007F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006008F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08006009
Harald Welte77c44ab2005-11-13 16:06:26 -08006010OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006011M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08006012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08006014
Jonathan Corbet77d51402007-03-22 19:44:17 -03006015OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006016M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006017L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006018T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03006019S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006020F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03006021
Thomas Gleixner431bca72007-05-02 09:31:35 +02006022ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006023M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02006024L: linux-mtd@lists.infradead.org
6025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: drivers/mtd/onenand/
6027F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02006028
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006030M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031L: osst-users@lists.sourceforge.net
6032L: linux-scsi@vger.kernel.org
6033S: Maintained
Jean Delvaref7269cf2013-07-03 15:05:08 -07006034F: Documentation/scsi/osst.txt
6035F: drivers/scsi/osst.*
6036F: drivers/scsi/osst_*.h
6037F: drivers/scsi/st.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006039OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006040M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01006041L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006043F: Documentation/i2c/busses/i2c-ocores
6044F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006045
Grant Likely860c44c2009-10-26 16:49:49 -07006046OPEN FIRMWARE AND FLATTENED DEVICE TREE
Grant Likely19624232013-04-08 11:51:42 +01006047M: Grant Likely <grant.likely@linaro.org>
Rob Herringf910b832011-09-14 07:40:10 -05006048M: Rob Herring <rob.herring@calxeda.com>
Grant Likelyd0fb18c2013-07-19 20:10:12 -07006049L: devicetree@vger.kernel.org
Grant Likely860c44c2009-10-26 16:49:49 -07006050W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06006051T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07006052S: Maintained
Grant Likelyf8828202013-07-19 18:57:39 -07006053F: drivers/of/
Grant Likely860c44c2009-10-26 16:49:49 -07006054F: include/linux/of*.h
Grant Likelyf8828202013-07-19 18:57:39 -07006055F: scripts/dtc/
Grant Likely860c44c2009-10-26 16:49:49 -07006056K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09006057K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07006058
Grant Likelyf8828202013-07-19 18:57:39 -07006059OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6060M: Rob Herring <rob.herring@calxeda.com>
6061M: Pawel Moll <pawel.moll@arm.com>
6062M: Mark Rutland <mark.rutland@arm.com>
6063M: Stephen Warren <swarren@wwwdotorg.org>
6064M: Ian Campbell <ian.campbell@citrix.com>
6065L: devicetree@vger.kernel.org
6066S: Maintained
6067F: Documentation/devicetree/
6068F: arch/*/boot/dts/
6069F: include/dt-bindings/
6070
Jonas Bonn19f9d392011-06-04 22:00:38 +03006071OPENRISC ARCHITECTURE
6072M: Jonas Bonn <jonas@southpole.se>
6073W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02006074L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03006075S: Maintained
6076T: git git://openrisc.net/~jonas/linux
6077F: arch/openrisc
6078
Jesse Grossccb13522011-10-25 19:26:31 -07006079OPENVSWITCH
6080M: Jesse Gross <jesse@nicira.com>
6081L: dev@openvswitch.org
6082W: http://openvswitch.org
6083T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
6084S: Maintained
6085F: net/openvswitch/
6086
Clemens Ladischaf399172011-01-10 16:32:54 +01006087OPL4 DRIVER
6088M: Clemens Ladisch <clemens@ladisch.de>
6089L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6090T: git git://git.alsa-project.org/alsa-kernel.git
6091S: Maintained
6092F: sound/drivers/opl4/
6093
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01006095M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096L: oprofile-list@lists.sf.net
6097S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02006098F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07006099F: arch/*/oprofile/
6100F: drivers/oprofile/
6101F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006103ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07006104M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08006105M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006106L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6107W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07006108T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006110F: Documentation/filesystems/ocfs2.txt
6111F: Documentation/filesystems/dlmfs.txt
6112F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006113
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07006115L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006116W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07006117W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01006118S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006119F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006121OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006122M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07006123M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02006124L: osd-dev@open-osd.org
6125W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07006126T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02006127S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006128F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07006129F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03006130F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02006131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006132P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006133M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006134L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02006135W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006137F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006138
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006139PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006141L: netdev@vger.kernel.org
6142S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07006143F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06006144
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006145PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006146M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01006147L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006149F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01006150
Steffen Klassert48fc2672010-08-13 10:10:46 -04006151PADATA PARALLEL EXECUTION MECHANISM
6152M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04006153L: linux-crypto@vger.kernel.org
6154S: Maintained
6155F: kernel/padata.c
6156F: include/linux/padata.h
6157F: Documentation/padata.txt
6158
Harald Welte709ee532008-09-23 17:46:57 +02006159PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006160M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05006161L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02006162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006163F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02006164
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01006165PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07006166M: David Howells <dhowells@redhat.com>
6167M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01006168L: linux-am33-list@redhat.com (moderated for non-subscribers)
6169W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006171F: Documentation/mn10300/
6172F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01006173
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006175L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08006176S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006177F: drivers/parport/
6178F: include/linux/parport*.h
6179F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006180F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006182PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08006183M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006184M: Chris Wright <chrisw@sous-sol.org>
6185M: Alok Kataria <akataria@vmware.com>
6186M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00006187L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006189F: Documentation/ia64/paravirt_ops.txt
6190F: arch/*/kernel/paravirt*
6191F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006192
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07006195L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196W: http://www.torque.net/linux-pp.html
6197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006198F: Documentation/blockdev/paride.txt
6199F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
6201PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00006202M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05006203M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00006204L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08006206Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07006207T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Helge Dellerfbb46caa2013-05-16 21:00:16 +00006208T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: arch/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006211F: Documentation/parisc/
Joe Perches679655d2009-04-07 20:44:32 -07006212F: drivers/parisc/
Helge Deller2b6bac92013-05-30 13:48:07 +00006213F: drivers/char/agp/parisc-agp.c
6214F: drivers/input/serio/gscps2.c
6215F: drivers/parport/parport_gsc.*
6216F: drivers/tty/serial/8250/8250_gsc.c
6217F: drivers/video/sti*
6218F: drivers/video/console/sti*
6219F: drivers/video/logo/logo_parisc*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220
Jim Cromie1662d322006-10-06 00:43:59 -07006221PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006222M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006223L: lm-sensors@lm-sensors.org
6224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006225F: Documentation/hwmon/pc87360
6226F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07006227
6228PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006229M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006231F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07006232
Jean Delvare1ad107f2010-08-14 21:09:00 +02006233PC87427 HARDWARE MONITORING DRIVER
6234M: Jean Delvare <khali@linux-fr.org>
6235L: lm-sensors@lm-sensors.org
6236S: Maintained
6237F: Documentation/hwmon/pc87427
6238F: drivers/hwmon/pc87427.c
6239
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006240PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006241M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006242S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006243F: drivers/leds/leds-pca9532.c
6244F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02006245
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006246PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07006247M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006248L: linux-i2c@vger.kernel.org
6249S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02006250F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02006251
Khalid Aziz3971dae2012-04-12 12:49:13 -07006252PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07006253M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07006254S: Maintained
6255F: drivers/firmware/pcdp.*
6256
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006257PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07006258M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07006259L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006261F: Documentation/PCI/pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06006262
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07006264M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07006265L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06006266Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06006267T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006269F: Documentation/PCI/
6270F: drivers/pci/
6271F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006274P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07006275L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08006276W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07006277T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07006278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006279F: Documentation/pcmcia/
6280F: drivers/pcmcia/
6281F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
6283PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08006284M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006285L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07006287F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288
Steffen Klassert48fc2672010-08-13 10:10:46 -04006289PCRYPT PARALLEL CRYPTO ENGINE
6290M: Steffen Klassert <steffen.klassert@secunet.com>
6291L: linux-crypto@vger.kernel.org
6292S: Maintained
6293F: crypto/pcrypt.c
6294F: include/crypto/pcrypt.h
6295
Tejun Heoe72df0b2010-12-10 17:02:49 +01006296PER-CPU MEMORY ALLOCATOR
6297M: Tejun Heo <tj@kernel.org>
6298M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01006299T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6300S: Maintained
6301F: include/linux/percpu*.h
6302F: mm/percpu*.c
6303F: arch/*/include/asm/percpu.h
6304
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006305PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07006306M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006308F: include/linux/delayacct.h
6309F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07006310
Ingo Molnar57c0c152009-09-21 12:20:38 +02006311PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6313M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006314M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006315M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006316T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006317S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006318F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006319F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006320F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006321F: arch/*/kernel/perf_event*.c
6322F: arch/*/kernel/*/perf_event*.c
6323F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006324F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006325F: arch/*/kernel/perf_callchain.c
6326F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006327
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006328PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006329M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006330L: linux-abi-devel@lists.sourceforge.net
6331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006332F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006333F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006334
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006335PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006336M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006337S: Supported
6338F: Documentation/networking/phonet.txt
6339F: include/linux/phonet.h
6340F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006341F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006342F: net/phonet/
6343
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346L: linux-mtd@lists.infradead.org
6347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
Bruno Prémontefdbb102012-07-30 21:39:03 +02006350PICOLCD HID DRIVER
6351M: Bruno Prémont <bonbons@linux-vserver.org>
6352L: linux-input@vger.kernel.org
6353S: Maintained
6354F: drivers/hid/hid-picolcd*
6355
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006356PICOXCELL SUPPORT
6357M: Jamie Iles <jamie@jamieiles.com>
6358L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6359T: git git://github.com/jamieiles/linux-2.6-ji.git
6360S: Supported
6361F: arch/arm/mach-picoxcell
6362F: drivers/*/picoxcell*
6363F: drivers/*/*/picoxcell*
6364
Linus Walleij2744e8a2011-05-02 20:50:54 +02006365PIN CONTROL SUBSYSTEM
6366M: Linus Walleij <linus.walleij@linaro.org>
6367S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006368F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006369F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006370
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006371PIN CONTROLLER - ATMEL AT91
6372M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6373L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6374S: Maintained
6375F: drivers/pinctrl/pinctrl-at91.c
6376
Doug Andersonb75e60d2013-06-16 15:17:46 -07006377PIN CONTROLLER - SAMSUNG
6378M: Tomasz Figa <t.figa@samsung.com>
6379M: Thomas Abraham <thomas.abraham@linaro.org>
6380L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6381L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6382S: Maintained
6383F: drivers/pinctrl/pinctrl-exynos.*
6384F: drivers/pinctrl/pinctrl-s3c*
6385F: drivers/pinctrl/pinctrl-samsung.*
6386
Viresh Kumardeda8282012-03-28 22:27:07 +05306387PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006388M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306389L: spear-devel@list.st.com
6390L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6391W: http://www.st.com/spear
6392S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006393F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306394
Peter Osterlund249a6772005-09-27 21:45:30 -07006395PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006396M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006398F: drivers/block/pktcdvd.c
6399F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006400F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006401
GuanXuetaob31d8272011-01-16 00:35:49 +08006402PKUNITY SOC DRIVERS
6403M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6404W: http://mprc.pku.edu.cn/~guanxuetao/linux
6405S: Maintained
6406T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6407F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006408F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006409F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006410F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006411
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006412PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006413M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006414L: lm-sensors@lm-sensors.org
6415W: http://www.lm-sensors.org/
6416W: http://www.roeck-us.net/linux/drivers/
6417T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6418S: Maintained
6419F: Documentation/hwmon/pmbus
6420F: drivers/hwmon/pmbus/
6421F: include/linux/i2c/pmbus.h
6422
Anil Ravindranath89a36812009-08-25 17:35:18 -07006423PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006424M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006425L: linux-scsi@vger.kernel.org
6426W: http://www.pmc-sierra.com/
6427S: Supported
6428F: drivers/scsi/pmcraid.*
6429
jack wangdbf9bfe2009-10-14 16:19:21 +08006430PMC SIERRA PM8001 DRIVER
Jack Wang4f0e3592013-03-06 10:38:34 +08006431M: xjtuwjp@gmail.com
jack wangdbf9bfe2009-10-14 16:19:21 +08006432M: lindar_liu@usish.com
6433L: linux-scsi@vger.kernel.org
6434S: Supported
6435F: drivers/scsi/pm8001/
6436
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006438M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006439T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006441F: fs/timerfd.c
6442F: include/linux/timer*
6443F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Anton Vorontsov3be86142007-07-15 04:43:36 +04006445POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006446M: Anton Vorontsov <anton@enomsg.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006448T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006450F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006451F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006452
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453PNP SUPPORT
Rafael J. Wysocki46a1f212013-03-29 22:59:53 +01006454M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006455M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006457F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458
Vitaly Wool999445d2007-01-04 13:07:03 +01006459PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006460M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006461L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006463F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006464
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467L: linux-ppp@vger.kernel.org
6468S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006469F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
6471PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006472M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006474F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006475F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
6477PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006480F: drivers/net/ppp/pppoe.c
6481F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482
James Chapmana6d23702007-06-27 15:53:17 -07006483PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006484M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006485S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006486F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006487F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006488F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006489
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006490PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006492W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6493L: linuxpps@ml.enneenne.com (subscribers-only)
6494S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006495F: Documentation/pps/
6496F: drivers/pps/
6497F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006498
Harry Wei71a6d0a2011-05-11 15:13:33 -07006499PPTP DRIVER
6500M: Dmitry Kozlov <xeb@mail.ru>
6501L: netdev@vger.kernel.org
6502S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006503F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006504W: http://sourceforge.net/projects/accel-pptp
6505
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006507M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508L: kpreempt-tech@lists.sourceforge.net
6509W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006511F: Documentation/preempt-locking.txt
6512F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
6514PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006515M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006516L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006517W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006518S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006519F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006521PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006522M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006523L: linux-ide@vger.kernel.org
6524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006526
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006527PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006528M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006529L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006530L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006531S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006532F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006533
Geoff Levandf58a9d12006-11-23 00:46:51 +01006534PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006535M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006536L: linuxppc-dev@lists.ozlabs.org
6537L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006539F: arch/powerpc/boot/ps3*
6540F: arch/powerpc/include/asm/lv1call.h
6541F: arch/powerpc/include/asm/ps3*.h
6542F: arch/powerpc/platforms/ps3/
6543F: drivers/*/ps3*
6544F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006545F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006546F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006547F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006548
Jim Pariscffb4add2009-01-06 11:32:10 +00006549PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006550M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006551L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006552S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006553F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006554
Anton Vorontsov8defe592012-08-03 18:07:20 -07006555PSTORE FILESYSTEM
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07006556M: Anton Vorontsov <anton@enomsg.org>
Anton Vorontsov8defe592012-08-03 18:07:20 -07006557M: Colin Cross <ccross@android.com>
6558M: Kees Cook <keescook@chromium.org>
6559M: Tony Luck <tony.luck@intel.com>
6560S: Maintained
6561T: git git://git.infradead.org/users/cbou/linux-pstore.git
6562F: fs/pstore/
6563F: include/linux/pstore*
Matt Fleming04851772013-02-08 15:48:51 +00006564F: drivers/firmware/efi/efi-pstore.c
Anton Vorontsov8defe592012-08-03 18:07:20 -07006565F: drivers/acpi/apei/erst.c
6566
Richard Cochran7fbc4152012-03-10 01:55:53 +00006567PTP HARDWARE CLOCK SUPPORT
6568M: Richard Cochran <richardcochran@gmail.com>
Jiri Bence7333e32013-03-26 04:01:12 +00006569L: netdev@vger.kernel.org
Richard Cochran7fbc4152012-03-10 01:55:53 +00006570S: Maintained
6571W: http://linuxptp.sourceforge.net/
6572F: Documentation/ABI/testing/sysfs-ptp
6573F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006574F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006575F: drivers/net/phy/dp83640*
6576F: drivers/ptp/*
6577F: include/linux/ptp_cl*
6578
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006579PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006580M: Roland McGrath <roland@redhat.com>
6581M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006582S: Maintained
6583F: include/asm-generic/syscall.h
6584F: include/linux/ptrace.h
6585F: include/linux/regset.h
6586F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006587F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006588F: kernel/ptrace.c
6589
Michael Krufky83202042006-07-03 00:24:18 -07006590PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006592L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006593L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006594W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006595T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006598F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006599
Hans de Goede39532e62012-11-04 17:05:59 -03006600PWC WEBCAM DRIVER
6601M: Hans de Goede <hdegoede@redhat.com>
6602L: linux-media@vger.kernel.org
6603T: git git://linuxtv.org/media_tree.git
6604S: Maintained
6605F: drivers/media/usb/pwc/*
6606
Thierry Reding200efed2012-03-27 13:16:18 +02006607PWM SUBSYSTEM
Thierry Redingaa3495f2013-05-06 12:50:36 +02006608M: Thierry Reding <thierry.reding@gmail.com>
6609L: linux-pwm@vger.kernel.org
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006610S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006611W: http://gitorious.org/linux-pwm
6612T: git git://gitorious.org/linux-pwm/linux-pwm.git
6613F: Documentation/pwm.txt
6614F: Documentation/devicetree/bindings/pwm/
6615F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006616F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006617F: drivers/video/backlight/pwm_bl.c
6618F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006619
Eric Miao30ec2612008-06-12 15:21:41 -07006620PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006621M: Eric Miao <eric.y.miao@gmail.com>
6622M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006623M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006624L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006625T: git git://github.com/hzhuang1/linux.git
6626T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006628F: arch/arm/mach-pxa/
6629F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006630F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006631F: drivers/usb/gadget/pxa2*
6632F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006633F: sound/arm/pxa*
6634F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006636MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006637M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006638M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006639L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006640T: git git://github.com/hzhuang1/linux.git
6641T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006642S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006643F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006644
Pierre Ossman272f1332007-05-14 21:25:26 +02006645PXA MMCI DRIVER
6646S: Orphan
6647
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006648PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006649M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006650L: rtc-linux@googlegroups.com
6651S: Maintained
6652
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006653QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006654M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006655L: linux-rdma@vger.kernel.org
6656S: Supported
6657F: drivers/infiniband/hw/qib/
6658
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006659QLOGIC QLA1280 SCSI DRIVER
6660M: Michael Reed <mdr@sgi.com>
6661L: linux-scsi@vger.kernel.org
6662S: Maintained
6663F: drivers/scsi/qla1280.[ch]
6664
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006666M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006667M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668L: linux-scsi@vger.kernel.org
6669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006670F: Documentation/scsi/LICENSE.qla2xxx
6671F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
Ravi Anand883c98f2010-04-28 11:45:49 +05306673QLOGIC QLA4XXX iSCSI DRIVER
6674M: Ravi Anand <ravi.anand@qlogic.com>
6675M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6676M: iscsi-driver@qlogic.com
6677L: linux-scsi@vger.kernel.org
6678S: Supported
6679F: drivers/scsi/qla4xxx/
6680
Ron Mercer5a4faa872006-07-25 00:40:21 -07006681QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006682M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006683M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006684M: linux-driver@qlogic.com
6685L: netdev@vger.kernel.org
6686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006687F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006688F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006689
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006690QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006691M: Himanshu Madhani <himanshu.madhani@qlogic.com>
Sony Chacko195ca382013-03-06 13:03:25 +00006692M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6693M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006694M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006695M: Sony Chacko <sony.chacko@qlogic.com>
Jitendra Kalsaria7ad031e2013-07-10 14:00:22 -04006696M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006697M: linux-driver@qlogic.com
6698L: netdev@vger.kernel.org
6699S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006700F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006701
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006702QLOGIC QLGE 10Gb ETHERNET DRIVER
Shahed Shaikhd4ec1b52013-03-26 05:34:55 +00006703M: Shahed Shaikh <shahed.shaikh@qlogic.com>
Ron Mercerb997d792011-06-22 06:35:45 +00006704M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006705M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006706M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006707L: netdev@vger.kernel.org
6708S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006709F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006710
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006712M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006713W: http://www.alarsen.net/linux/qnx4fs/
6714S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006715F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006716F: include/uapi/linux/qnx4_fs.h
6717F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718
Antti Palosaari91952bc2012-10-01 12:28:46 -03006719QT1010 MEDIA DRIVER
6720M: Antti Palosaari <crope@iki.fi>
6721L: linux-media@vger.kernel.org
6722W: http://linuxtv.org/
6723W: http://palosaari.fi/linux/
6724Q: http://patchwork.linuxtv.org/project/linux-media/list/
6725T: git git://linuxtv.org/anttip/media_tree.git
6726S: Maintained
6727F: drivers/media/tuners/qt1010*
6728
Richard Kuo4f4567c2011-10-31 18:56:38 -05006729QUALCOMM HEXAGON ARCHITECTURE
6730M: Richard Kuo <rkuo@codeaurora.org>
6731L: linux-hexagon@vger.kernel.org
6732S: Supported
6733F: arch/hexagon/
6734
Hans Verkuil35e35402012-11-23 07:02:29 -03006735QUICKCAM PARALLEL PORT WEBCAMS
6736M: Hans Verkuil <hverkuil@xs4all.nl>
6737L: linux-media@vger.kernel.org
6738T: git git://linuxtv.org/media_tree.git
6739W: http://linuxtv.org
6740S: Odd Fixes
6741F: drivers/media/parport/*-qcam*
6742
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006743RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006744M: Yehuda Sadeh <yehuda@inktank.com>
6745M: Sage Weil <sage@inktank.com>
6746M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006747M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006748W: http://ceph.com/
6749T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006750S: Supported
6751F: drivers/block/rbd.c
6752F: drivers/block/rbd_types.h
6753
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006755M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006756L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006758F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006759F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Hans de Goedec6c9b342012-11-04 17:03:58 -03006761RADIOSHARK RADIO DRIVER
6762M: Hans de Goede <hdegoede@redhat.com>
6763L: linux-media@vger.kernel.org
6764T: git git://linuxtv.org/media_tree.git
6765S: Maintained
6766F: drivers/media/radio/radio-shark.c
6767
6768RADIOSHARK2 RADIO DRIVER
6769M: Hans de Goede <hdegoede@redhat.com>
6770L: linux-media@vger.kernel.org
6771T: git git://linuxtv.org/media_tree.git
6772S: Maintained
6773F: drivers/media/radio/radio-shark2.c
6774F: drivers/media/radio/radio-tea5777.c
6775
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006777M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006778L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006780F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781
Randy Dunlape7839f22008-10-12 16:11:45 -07006782RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006783P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006784M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006785M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006786M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006787L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006788L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006789W: http://rt2x00.serialmonkey.com/
6790S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006791T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006792F: drivers/net/wireless/rt2x00/
6793
Nick Piggin9db55792008-02-08 04:19:49 -08006794RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006795M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006797F: Documentation/blockdev/ramdisk.txt
6798F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006799
Matt Mackall9e95ce22005-04-16 15:25:56 -07006800RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006801M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006803F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006804
Matt Porter394b7012005-11-07 01:00:15 -08006805RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006806M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006807M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006809F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006810
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006811RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006812L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006813S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006814F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006815
6816RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006817M: Josh Triplett <josh@freedesktop.org>
6818M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006819S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006820T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006821F: Documentation/RCU/torture.txt
6822F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006823
Florian Fainellic1f766b2008-02-06 22:39:44 +01006824RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006825M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006826S: Maintained
6827
Florian Fainellidb17f392007-12-19 11:30:30 +01006828RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006829M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006830L: netdev@vger.kernel.org
6831S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006832F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006833
Andy Grovera09ed662009-02-24 15:30:41 +00006834RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006835M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006836L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006837S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006838F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006839
Josh Triplett595182b2006-10-04 02:17:21 -07006840READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006841M: Dipankar Sarma <dipankar@in.ibm.com>
6842M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006843W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006844S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006845T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006846F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006847X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006848F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006849F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006850X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006851
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006852REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006854L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006855Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006857F: Documentation/rtc.txt
6858F: drivers/rtc/
6859F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006860F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006861
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006863L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006865F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866
Mark Brownb83a3132011-05-11 19:59:58 +02006867REGISTER MAP ABSTRACTION
Mark Brownb02e48f2013-04-12 11:39:57 +01006868M: Mark Brown <broonie@kernel.org>
Mark Brownb83a3132011-05-11 19:59:58 +02006869T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6870S: Supported
6871F: drivers/base/regmap/
6872F: include/linux/regmap.h
6873
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006874REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6875M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006876T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006877S: Maintained
6878F: drivers/remoteproc/
6879F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006880F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006881
Ohad Ben-Cohend8115db2013-04-16 20:34:49 +03006882REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
6883M: Ohad Ben-Cohen <ohad@wizery.com>
6884T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
6885S: Maintained
6886F: drivers/rpmsg/
6887F: Documentation/rpmsg.txt
6888F: include/linux/rpmsg.h
6889
Ivo van Doorne08976452008-04-12 19:23:55 +02006890RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006891M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006892L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006893W: http://wireless.kernel.org/
6894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6895T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006896S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006897F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006898F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006899
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006900RICOH SMARTMEDIA/XD DRIVER
6901M: Maxim Levitsky <maximlevitsky@gmail.com>
6902S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006903F: drivers/mtd/nand/r852.c
6904F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006905
Maxim Levitsky92634122011-03-25 01:56:59 -07006906RICOH R5C592 MEMORYSTICK DRIVER
6907M: Maxim Levitsky <maximlevitsky@gmail.com>
6908S: Maintained
6909F: drivers/memstick/host/r592.*
6910
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911ROCKETPORT DRIVER
6912P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006913W: http://www.comtrol.com
6914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006915F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006916F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917
6918ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006919M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006921W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006923F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006924F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006925F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926
Antti Palosaari91952bc2012-10-01 12:28:46 -03006927RTL2830 MEDIA DRIVER
6928M: Antti Palosaari <crope@iki.fi>
6929L: linux-media@vger.kernel.org
6930W: http://linuxtv.org/
6931W: http://palosaari.fi/linux/
6932Q: http://patchwork.linuxtv.org/project/linux-media/list/
6933T: git git://linuxtv.org/anttip/media_tree.git
6934S: Maintained
6935F: drivers/media/dvb-frontends/rtl2830*
6936
Antti Palosaari27a0aac2013-04-09 20:30:43 -03006937RTL2832 MEDIA DRIVER
6938M: Antti Palosaari <crope@iki.fi>
6939L: linux-media@vger.kernel.org
6940W: http://linuxtv.org/
6941W: http://palosaari.fi/linux/
6942Q: http://patchwork.linuxtv.org/project/linux-media/list/
6943T: git git://linuxtv.org/anttip/media_tree.git
6944S: Maintained
6945F: drivers/media/dvb-frontends/rtl2832*
6946
Larry Finger59840482008-11-12 17:13:09 -06006947RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006948M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006949L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006950W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006951T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006952S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006953F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006954
Larry Finger59840482008-11-12 17:13:09 -06006955RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006956M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006957M: Hin-Tak Leung <htl10@users.sourceforge.net>
6958M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006959L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006960W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006961T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006962S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006963F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006964
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006965RTL8192CE WIRELESS DRIVER
6966M: Larry Finger <Larry.Finger@lwfinger.net>
6967M: Chaoming Li <chaoming_li@realsil.com.cn>
6968L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006969W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006970T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6971S: Maintained
6972F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006973F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006974
6975S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006976M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006977L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006979F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006980
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981S390
Joe Perches8b58be82009-07-29 15:04:30 -07006982M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6983M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006985L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006986W: http://www.ibm.com/developerworks/linux/linux390/
6987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006988F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006989F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006990F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006991F: Documentation/s390/
6992F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006993
6994S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006995M: Ursula Braun <ursula.braun@de.ibm.com>
6996M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006997M: 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: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08007002
Felix Beckfeed9b62009-03-26 15:24:23 +01007003S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01007004M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01007005M: linux390@de.ibm.com
7006L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01007007W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01007008S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007009F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01007010
Heiko Carstens5238da42006-02-11 17:56:01 -08007011S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01007012M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08007013M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01007014L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08007015W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007017F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
Ursula Braundd96df22007-09-19 13:09:02 +02007019S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02007021M: linux390@de.ibm.com
7022L: linux-s390@vger.kernel.org
7023W: http://www.ibm.com/developerworks/linux/linux390/
7024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007025F: drivers/s390/net/*iucv*
7026F: include/net/iucv/
7027F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02007028
Ben Dooks4dde7f72008-06-30 22:40:38 +01007029S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07007030M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07007031L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01007032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007033F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01007034
Hans Verkuil1f15a222012-11-23 07:45:29 -03007035SAA6588 RDS RECEIVER DRIVER
7036M: Hans Verkuil <hverkuil@xs4all.nl>
7037L: linux-media@vger.kernel.org
7038T: git git://linuxtv.org/media_tree.git
7039W: http://linuxtv.org
7040S: Odd Fixes
7041F: drivers/media/i2c/saa6588*
7042
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007043SAA7134 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007044M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007045L: linux-media@vger.kernel.org
7046W: http://linuxtv.org
7047T: git git://linuxtv.org/media_tree.git
7048S: Odd fixes
Cesar Eduardo Barrose42bf502013-03-02 21:53:47 -03007049F: Documentation/video4linux/*.saa7134
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02007050F: drivers/media/pci/saa7134/
7051
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03007053M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007054L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007055T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007057F: drivers/media/common/saa7146/
7058F: drivers/media/pci/saa7146/
7059F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060
Corentin Chary92304a42011-12-05 12:38:35 -05007061SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08007062M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05007063L: platform-driver-x86@vger.kernel.org
7064S: Maintained
7065F: drivers/platform/x86/samsung-laptop.c
7066
Mark Brown4a109cc2010-09-24 10:50:46 +01007067SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09007068M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01007069L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7070S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00007071F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01007072
Jingoo Han0d89a282011-12-19 11:09:35 +09007073SAMSUNG FRAMEBUFFER DRIVER
7074M: Jingoo Han <jg1.han@samsung.com>
7075L: linux-fbdev@vger.kernel.org
7076S: Maintained
7077F: drivers/video/s3c-fb.c
7078
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09007079SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7080M: Sangbeom Kim <sbkim73@samsung.com>
7081L: linux-kernel@vger.kernel.org
7082S: Supported
7083F: drivers/mfd/sec*.c
7084F: drivers/regulator/s2m*.c
7085F: drivers/regulator/s5m*.c
7086F: drivers/rtc/rtc-sec.c
7087F: include/linux/mfd/samsung/
7088
Sylwester Nawrocki038f5c42013-05-28 18:26:20 -03007089SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7090M: Kyungmin Park <kyungmin.park@samsung.com>
7091M: Sylwester Nawrocki <s.nawrocki@samsung.com>
7092L: linux-media@vger.kernel.org
7093Q: https://patchwork.linuxtv.org/project/linux-media/list/
7094S: Supported
7095F: drivers/media/platform/exynos4-is/
7096F: include/media/s5p_fimc.h
7097
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03007098SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7099M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7100L: linux-media@vger.kernel.org
7101L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7102S: Maintained
7103F: drivers/media/platform/s3c-camif/
7104F: include/media/s3c_camif.h
7105
Andrzej Hajdab84ef242013-01-31 07:03:05 -03007106SAMSUNG S5C73M3 CAMERA DRIVER
7107M: Kyungmin Park <kyungmin.park@samsung.com>
7108M: Andrzej Hajda <a.hajda@samsung.com>
7109L: linux-media@vger.kernel.org
7110S: Supported
7111F: drivers/media/i2c/s5c73m3/*
7112
Alan Coxca749e22011-03-18 13:56:14 +00007113SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007114M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00007115L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08007116S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00007117F: drivers/tty/serial
7118
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307119SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007120M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307121S: Maintained
7122F: include/linux/dw_dmac.h
Andy Shevchenko61a76492013-06-05 15:26:44 +03007123F: drivers/dma/dw/
Viresh Kumaraecb7b62011-05-24 14:04:09 +05307124
Seungwon Jeonf9e37132013-01-17 21:33:23 +09007125SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7126M: Seungwon Jeon <tgih.jun@samsung.com>
7127M: Jaehoon Chung <jh80.chung@samsung.com>
7128L: linux-mmc@vger.kernel.org
7129S: Maintained
7130F: include/linux/mmc/dw_mmc.h
7131F: drivers/mmc/host/dw_mmc*
7132
Thomas Gleixner88606e82010-12-14 21:37:13 +01007133TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05007134M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01007135M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007136T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01007137S: Supported
7138F: include/linux/clocksource.h
7139F: include/linux/time.h
7140F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007141F: include/uapi/linux/time.h
7142F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01007143F: kernel/time/clocksource.c
7144F: kernel/time/time*.c
7145F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02007146F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01007147
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007148TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03007149M: Huang Shijie <shijie8@gmail.com>
Hans Verkuila545e2e2013-02-07 09:26:14 -03007150M: Hans Verkuil <hverkuil@xs4all.nl>
7151S: Odd Fixes
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007152F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03007153
Linus Torvalds1da177e2005-04-16 15:20:36 -07007154SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007155M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007157F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007158
7159SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01007160M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007161M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007162T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09007164F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07007165F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007166F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007167
Chen Liqin6bcf6732009-06-13 15:24:33 +08007168SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07007169M: Chen Liqin <liqin.chen@sunplusct.com>
7170M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08007171W: http://www.sunplusct.com
7172S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07007173F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08007174
Linus Torvalds1da177e2005-04-16 15:20:36 -07007175SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007176M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007177L: linux-scsi@vger.kernel.org
7178W: http://www.kernel.dk
7179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007180F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181
Roland Dreierfb50a832010-10-07 09:54:53 -07007182SCSI RDMA PROTOCOL (SRP) INITIATOR
7183M: David Dillow <dillowda@ornl.gov>
7184L: linux-rdma@vger.kernel.org
7185S: Supported
7186W: http://www.openfabrics.org
7187Q: http://patchwork.kernel.org/project/linux-rdma/list/
7188T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7189F: drivers/infiniband/ulp/srp/
7190F: include/scsi/srp.h
7191
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007193M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194L: linux-scsi@vger.kernel.org
7195W: http://www.torque.net/sg
7196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007197F: drivers/scsi/sg.c
7198F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199
7200SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05007201M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007203T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7204T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7205T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007207F: drivers/scsi/
7208F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209
7210SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007211M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007212L: linux-scsi@vger.kernel.org
7213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007214F: Documentation/scsi/st.txt
Jean Delvaref7269cf2013-07-03 15:05:08 -07007215F: drivers/scsi/st.*
7216F: drivers/scsi/st_*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217
7218SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007219M: Vlad Yasevich <vyasevich@gmail.com>
Neil Horman02c38d02012-10-24 09:26:51 +00007220M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07007221L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07007222W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00007223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007224F: Documentation/networking/sctp.txt
7225F: include/linux/sctp.h
7226F: include/net/sctp/
7227F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228
7229SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007230M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007231S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07007232F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07007233F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07007234F: drivers/watchdog/scx200_wdt.c
7235F: drivers/i2c/busses/scx200*
7236F: drivers/mtd/maps/scx200_docflash.c
7237F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07007238
7239SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007240M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007242F: drivers/char/scx200_gpio.c
7243F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07007244
7245SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007246M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07007247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007248F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Sascha Sommer6a369132008-07-15 14:21:29 +02007250SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007251M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02007252L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007254F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02007255
Randy Dunlape7839f22008-10-12 16:11:45 -07007256SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04007257M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007258L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04007259T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7260S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07007261F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08007262F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007263
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03007264SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Anton Vorontsov9d5e2a02013-06-09 09:41:23 -07007265M: Anton Vorontsov <anton@enomsg.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007266L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07007267L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08007269F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270
Ben Dooks0d1bb412009-06-14 13:52:37 +01007271SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007272M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07007273L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01007274S: Maintained
7275F: drivers/mmc/host/sdhci-s3c.c
7276
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007277SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007278M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007279L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07007280L: linux-mmc@vger.kernel.org
7281S: Maintained
7282F: drivers/mmc/host/sdhci-spear.c
7283
James Morris8711cca2008-12-04 03:19:45 +11007284SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11007285M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11007286L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11007287T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10007288W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11007289S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07007290F: security/
James Morris8711cca2008-12-04 03:19:45 +11007291
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07007293M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294S: Supported
7295
7296SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007297M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11007298M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007299M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007300L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04007301W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04007302T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007304F: include/linux/selinux*
7305F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04007306F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307
John Johansenc1c124e2010-07-29 14:48:09 -07007308APPARMOR SECURITY MODULE
7309M: John Johansen <john.johansen@canonical.com>
7310L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7311W: apparmor.wiki.kernel.org
7312T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7313S: Supported
7314F: security/apparmor/
7315
Jiri Slabycef2cf02007-05-08 00:31:45 -07007316SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07007317M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07007318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007319F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007320F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07007321
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007322SERIAL ATA (SATA) SUBSYSTEM
Tejun Heo3d9b9352013-05-07 10:09:27 -07007323M: Tejun Heo <tj@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324L: linux-ide@vger.kernel.org
Tejun Heo3d9b9352013-05-07 10:09:27 -07007325T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07007327F: drivers/ata/
7328F: include/linux/ata.h
7329F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307331SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007332M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08007333L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07007334W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08007335S: Supported
7336F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05307337
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007338SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08007339M: Sathya Perla <sathya.perla@emulex.com>
7340M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7341M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07007342L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08007343W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07007344S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07007345F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07007346
Ben Hutchings8ceee662008-04-27 12:55:59 +01007347SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00007348M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00007349M: Ben Hutchings <bhutchings@solarflare.com>
7350L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01007351S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07007352F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01007353
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007354SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07007355M: Dimitri Sivanich <sivanich@sgi.com>
7356M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007358F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007359
7360SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007361M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007362L: linux-ia64@vger.kernel.org
7363S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007364F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007365F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07007366F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007367
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007369M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370L: linux-visws-devel@lists.sf.net
7371W: http://linux-visws.sf.net
7372S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007373F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Jack Steiner75312612008-08-15 00:40:42 -07007375SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007376M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007378F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007379
Hans Verkuil49cc6292012-11-30 07:13:29 -03007380SI470X FM RADIO RECEIVER I2C DRIVER
7381M: Hans Verkuil <hverkuil@xs4all.nl>
7382L: linux-media@vger.kernel.org
7383T: git git://linuxtv.org/media_tree.git
7384W: http://linuxtv.org
7385S: Odd Fixes
7386F: drivers/media/radio/si470x/radio-si470x-i2c.c
7387
7388SI470X FM RADIO RECEIVER USB DRIVER
7389M: Hans Verkuil <hverkuil@xs4all.nl>
7390L: linux-media@vger.kernel.org
7391T: git git://linuxtv.org/media_tree.git
7392W: http://linuxtv.org
7393S: Maintained
7394F: drivers/media/radio/si470x/radio-si470x-common.c
7395F: drivers/media/radio/si470x/radio-si470x.h
7396F: drivers/media/radio/si470x/radio-si470x-usb.c
7397
Eduardo Valentinc937ca02013-02-27 10:37:39 -03007398SI4713 FM RADIO TRANSMITTER I2C DRIVER
7399M: Eduardo Valentin <edubezval@gmail.com>
7400L: linux-media@vger.kernel.org
7401T: git git://linuxtv.org/media_tree.git
7402W: http://linuxtv.org
7403S: Odd Fixes
7404F: drivers/media/radio/si4713-i2c.?
7405
7406SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7407M: Eduardo Valentin <edubezval@gmail.com>
7408L: linux-media@vger.kernel.org
7409T: git git://linuxtv.org/media_tree.git
7410W: http://linuxtv.org
7411S: Odd Fixes
7412F: drivers/media/radio/radio-si4713.h
7413
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007414SIANO DVB DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03007415M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabbeb91d42013-03-19 12:42:45 -03007416L: linux-media@vger.kernel.org
7417W: http://linuxtv.org
7418T: git git://linuxtv.org/media_tree.git
7419S: Odd fixes
7420F: drivers/media/common/siano/
7421F: drivers/media/dvb/siano/
7422F: drivers/media/usb/siano/
7423F: drivers/media/mmc/siano
7424
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007425SH_VEU V4L2 MEM2MEM DRIVER
7426M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7427L: linux-media@vger.kernel.org
7428S: Maintained
7429F: drivers/media/platform/sh_veu.c
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007430
7431SH_VOU V4L2 OUTPUT DRIVER
7432M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7433L: linux-media@vger.kernel.org
Laurent Pinchart4290fd12013-04-04 10:31:58 -03007434S: Odd Fixes
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007435F: drivers/media/platform/sh_vou.c
7436F: include/media/sh_vou.h
7437
Len Brown6349d992009-08-14 15:07:14 -04007438SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007439M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007440L: sfi-devel@simplefirmware.org
7441W: http://simplefirmware.org/
7442T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007443S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007444F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007445F: drivers/sfi/
7446F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007447
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448SIMTEC EB110ATX (Chalice CATS)
7449P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007450P: Vincent Sanders <vince@simtec.co.uk>
7451M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452W: http://www.simtec.co.uk/products/EB110ATX/
7453S: Supported
7454
7455SIMTEC EB2410ITX (BAST)
7456P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007457P: Vincent Sanders <vince@simtec.co.uk>
7458M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459W: http://www.simtec.co.uk/products/EB2410ITX/
7460S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007461F: arch/arm/mach-s3c2410/mach-bast.c
7462F: arch/arm/mach-s3c2410/bast-ide.c
7463F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007465TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007466M: Sekhar Nori <nsekhar@ti.com>
Kevin Hilmanc69d72a2012-11-28 15:46:45 -08007467M: Kevin Hilman <khilman@deeprootsystems.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307468L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307469T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007470Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007471S: Supported
7472F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007473F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007474
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007475TI DAVINCI SERIES MEDIA DRIVER
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007476M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007477L: linux-media@vger.kernel.org
7478L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7479W: http://linuxtv.org/
7480Q: http://patchwork.linuxtv.org/project/linux-media/list/
7481T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
Lad, Prabhakar9ce5eca2013-04-15 01:32:44 -03007482S: Maintained
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007483F: drivers/media/platform/davinci/
7484F: include/media/davinci/
7485
Francois Romieu92aab3c2005-07-30 13:11:18 +02007486SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007487M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007488L: netdev@vger.kernel.org
7489S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007490F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007491
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007493M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007494W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007495L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007497F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498
7499SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007500M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007503F: Documentation/fb/sisfb.txt
7504F: drivers/video/sis/
7505F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
7507SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007508M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509W: http://www.winischhofer.at/linuxsisusbvga.shtml
7510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007511F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007513SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007514M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007515M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007516M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007517L: linux-mm@kvack.org
7518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007519F: include/linux/sl?b*.h
7520F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07007521
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007522SLEEPABLE READ-COPY UPDATE (SRCU)
7523M: Lai Jiangshan <laijs@cn.fujitsu.com>
7524M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7525W: http://www.rdrop.com/users/paulmck/RCU/
7526S: Supported
7527T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7528F: include/linux/srcu*
7529F: kernel/srcu*
7530
Casey Schaufler66372842012-05-23 18:34:52 -07007531SMACK SECURITY MODULE
7532M: Casey Schaufler <casey@schaufler-ca.com>
7533L: linux-security-module@vger.kernel.org
7534W: http://schaufler-ca.com
7535T: git git://git.gitorious.org/smack-next/kernel.git
7536S: Maintained
7537F: Documentation/security/Smack.txt
7538F: security/smack/
7539
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007541M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007542S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007543F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544
Sakari Ailuse8e31622012-11-12 18:14:39 -03007545SMIA AND SMIA++ IMAGE SENSOR DRIVER
7546M: Sakari Ailus <sakari.ailus@iki.fi>
7547L: linux-media@vger.kernel.org
7548S: Maintained
7549F: drivers/media/i2c/smiapp
7550F: include/media/smiapp.h
7551F: drivers/media/i2c/smiapp-pll.c
7552F: drivers/media/i2c/smiapp-pll.h
7553
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007554SMM665 HARDWARE MONITOR DRIVER
7555M: Guenter Roeck <linux@roeck-us.net>
7556L: lm-sensors@lm-sensors.org
7557S: Maintained
7558F: Documentation/hwmon/smm665
7559F: drivers/hwmon/smm665.c
7560
Steve Glendinning9df73052010-08-14 21:08:54 +02007561SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007562M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007563L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007564S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007565F: Documentation/hwmon/emc2103
7566F: drivers/hwmon/emc2103.c
7567
Hans de Goedea98d5062011-03-21 17:59:36 +01007568SMSC SCH5627 HARDWARE MONITOR DRIVER
7569M: Hans de Goede <hdegoede@redhat.com>
7570L: lm-sensors@lm-sensors.org
7571S: Supported
7572F: Documentation/hwmon/sch5627
7573F: drivers/hwmon/sch5627.c
7574
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007575SMSC47B397 HARDWARE MONITOR DRIVER
Jean Delvare94877542013-03-18 21:19:49 +01007576M: Jean Delvare <khali@linux-fr.org>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007577L: lm-sensors@lm-sensors.org
7578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007579F: Documentation/hwmon/smsc47b397
7580F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007581
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007582SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007583M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007584L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007586F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007587F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007588
Steve Glendinning2cb37722008-12-11 20:54:30 -08007589SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007590M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007591L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007592S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007593F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007594
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007595SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007596M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007597L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007598S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007599F: drivers/video/smscufx.c
7600
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007601SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007602M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007603L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007604T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007605S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007606F: include/media/soc*
7607F: drivers/media/i2c/soc_camera/
7608F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007609
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007610SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007611M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007613F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007614
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007616M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007619F: drivers/md/
7620F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007621F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007624M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007625L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007627F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628
Michael Buesch61e115a2007-09-18 15:12:50 -04007629SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007630M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007631L: netdev@vger.kernel.org
7632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007633F: drivers/ssb/
7634F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007635
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007638L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007639W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007641F: Documentation/laptops/sony-laptop.txt
7642F: drivers/char/sonypi.c
7643F: drivers/platform/x86/sony-laptop.c
7644F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645
Alex Dubovbaf85322008-02-09 10:20:54 -08007646SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007647M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007648W: http://tifmxx.berlios.de/
7649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007650F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007651
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007653M: Jaroslav Kysela <perex@perex.cz>
7654M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007655L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007656W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007657T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007658T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007660F: Documentation/sound/
7661F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007662F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007663F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664
Mark Brownbd903bd2008-11-19 19:16:05 +00007665SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007666M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01007667M: Mark Brown <broonie@kernel.org>
Mark Brown86f14df2011-11-02 21:36:32 +00007668T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007669L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007670W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007672F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007673F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007674
Sam Ravnborg473321f2009-01-04 15:47:49 -08007675SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007676M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007678Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007679T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7680T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007682F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007683F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
David S. Miller6404fcc2010-03-16 01:00:17 -07007685SPARC SERIAL DRIVERS
7686M: "David S. Miller" <davem@davemloft.net>
7687L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007688T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7689T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007690S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007691F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007692F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007693F: drivers/tty/serial/sunhv.c
7694F: drivers/tty/serial/sunsab.c
7695F: drivers/tty/serial/sunsab.h
7696F: drivers/tty/serial/sunsu.c
7697F: drivers/tty/serial/sunzilog.c
7698F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007699
Christopher Li389325b2012-04-05 14:25:14 -07007700SPARSE CHECKER
7701M: "Christopher Li" <sparse@chrisli.org>
7702L: linux-sparse@vger.kernel.org
7703W: https://sparse.wiki.kernel.org/
7704T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7705T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7706S: Maintained
7707F: include/linux/compiler.h
7708
viresh kumarfc0c1952010-04-01 12:31:21 +01007709SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007710M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307711M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007712L: spear-devel@list.st.com
7713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007714W: http://www.st.com/spear
7715S: Maintained
7716F: arch/arm/plat-spear/
7717
Viresh Kumar71e09a92012-04-20 22:39:48 +05307718SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007719M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307720M: Shiraz Hashim <shiraz.hashim@st.com>
7721L: spear-devel@list.st.com
7722L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7723W: http://www.st.com/spear
7724S: Maintained
7725F: arch/arm/mach-spear13xx/
7726
viresh kumarfc0c1952010-04-01 12:31:21 +01007727SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007728M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307729M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007730L: spear-devel@list.st.com
7731L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007732W: http://www.st.com/spear
7733S: Maintained
7734F: arch/arm/mach-spear3xx/
7735
7736SPEAR6XX MACHINE SUPPORT
7737M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307738M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007739M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007740L: spear-devel@list.st.com
7741L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007742W: http://www.st.com/spear
7743S: Maintained
7744F: arch/arm/mach-spear6xx/
7745
7746SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007747M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007748L: spear-devel@list.st.com
7749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007750W: http://www.st.com/spear
7751S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307752F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007753
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007754SPI SUBSYSTEM
Mark Brownb02e48f2013-04-12 11:39:57 +01007755M: Mark Brown <broonie@kernel.org>
Mark Browndfbe4032013-05-17 13:12:52 +01007756L: linux-spi@vger.kernel.org
Mark Browne7e4e132013-04-18 18:18:47 +01007757T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007758Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007760F: Documentation/spi/
7761F: drivers/spi/
7762F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007763F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007764
Jim Lewis2752e402006-09-29 02:01:19 -07007765SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007766M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7767M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007768L: netdev@vger.kernel.org
7769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007770F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007771F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007772
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007773SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007774M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007775L: linuxppc-dev@lists.ozlabs.org
7776L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007777W: http://www.ibm.com/developerworks/power/cell/
7778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007779F: Documentation/filesystems/spufs.txt
7780F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007781
Phillip Lougherfc555842009-01-05 08:46:29 +00007782SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007783M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007784L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7785W: http://squashfs.org.uk
7786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007787F: Documentation/filesystems/squashfs.txt
7788F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007789
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007791M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007793F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794
Linus Torvalds26e9a392008-10-17 09:50:12 -07007795STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007796M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007797L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007798S: Supported
Greg Kroah-Hartman7b175c42013-06-18 12:58:12 -07007799F: Documentation/stable_kernel_rules.txt
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007800
Linus Torvalds26e9a392008-10-17 09:50:12 -07007801STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007802M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007803T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007804L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007805S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007806F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007807
Joe Perchesc8c8b102011-07-05 09:42:12 -07007808STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7809M: Henk de Groot <pe1dnn@amsat.org>
7810S: Odd Fixes
7811F: drivers/staging/wlags49_h2/
7812F: drivers/staging/wlags49_h25/
7813
Joe Perchesc9555152011-07-05 09:42:01 -07007814STAGING - ASUS OLED
7815M: Jakub Schmidtke <sjakub@gmail.com>
7816S: Odd Fixes
7817F: drivers/staging/asus_oled/
7818
Joe Perchesebd3d012011-07-05 09:42:02 -07007819STAGING - COMEDI
7820M: Ian Abbott <abbotti@mev.co.uk>
Lidza Louina81b884c2013-07-24 11:29:33 -04007821M: H Hartley Sweeten <hsweeten@visionengravers.com>
Joe Perchesebd3d012011-07-05 09:42:02 -07007822S: Odd Fixes
7823F: drivers/staging/comedi/
7824
Joe Perches8ca572c2011-07-05 09:42:03 -07007825STAGING - CRYSTAL HD VIDEO DECODER
7826M: Naren Sankar <nsankar@broadcom.com>
7827M: Jarod Wilson <jarod@wilsonet.com>
7828M: Scott Davilla <davilla@4pi.com>
7829M: Manu Abraham <abraham.manu@gmail.com>
7830S: Odd Fixes
7831F: drivers/staging/crystalhd/
7832
Joe Perches0f16ffc2011-07-05 09:42:04 -07007833STAGING - ECHO CANCELLER
7834M: Steve Underwood <steveu@coppice.org>
7835M: David Rowe <david@rowetel.com>
7836S: Odd Fixes
7837F: drivers/staging/echo/
7838
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007839STAGING - ET131X NETWORK DRIVER
7840M: Mark Einon <mark.einon@gmail.com>
7841S: Odd Fixes
7842F: drivers/staging/et131x/
7843
Joe Perchesa0138162011-07-05 15:21:34 -07007844STAGING - FLARION FT1000 DRIVERS
7845M: Marek Belisko <marek.belisko@gmail.com>
7846S: Odd Fixes
7847F: drivers/staging/ft1000/
7848
Joe Perchesec3fab92011-07-05 09:42:05 -07007849STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7850M: David Täht <d@teklibre.com>
7851S: Odd Fixes
7852F: drivers/staging/frontier/
7853
Hans Verkuil98ded592013-03-09 12:59:44 -03007854STAGING - GO7007 MPEG CODEC
7855M: Hans Verkuil <hans.verkuil@cisco.com>
7856S: Maintained
7857F: drivers/staging/media/go7007/
7858
Joe Perches6c1bb422011-07-05 09:42:07 -07007859STAGING - INDUSTRIAL IO
7860M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007861L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007862S: Odd Fixes
7863F: drivers/staging/iio/
7864
Joe Perchesa0138162011-07-05 15:21:34 -07007865STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7866M: Jarod Wilson <jarod@wilsonet.com>
7867W: http://www.lirc.org/
7868S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007869F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007870
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007871STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007872M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007873M: Marc Dietrich <marvin24@gmx.de>
7874L: ac100@lists.launchpad.net (moderated for non-subscribers)
Stephen Warren5d96bf42013-02-27 17:02:54 -08007875L: linux-tegra@vger.kernel.org
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007876S: Maintained
7877F: drivers/staging/nvec/
7878
Joe Perchesa0138162011-07-05 15:21:34 -07007879STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7880M: Andres Salomon <dilinger@queued.net>
7881M: Chris Ball <cjb@laptop.org>
7882M: Jon Nettleton <jon.nettleton@gmail.com>
7883W: http://wiki.laptop.org/go/DCON
7884S: Odd Fixes
7885F: drivers/staging/olpc_dcon/
7886
Chris Kelly94cfdd12012-03-14 10:55:42 +00007887STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007888M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007889S: Maintained
7890F: drivers/staging/ozwpan/
7891
Joe Perchesa0138162011-07-05 15:21:34 -07007892STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007893M: Willy Tarreau <willy@meta-x.org>
7894S: Odd Fixes
7895F: drivers/staging/panel/
7896
Joe Perchesa0138162011-07-05 15:21:34 -07007897STAGING - REALTEK RTL8712U DRIVERS
7898M: Larry Finger <Larry.Finger@lwfinger.net>
7899M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7900S: Odd Fixes
7901F: drivers/staging/rtl8712/
7902
Joe Perches9629fa82011-07-05 09:42:09 -07007903STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7904M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7905S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007906F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007907
Joe Perchesa0138162011-07-05 15:21:34 -07007908STAGING - SOFTLOGIC 6x10 MPEG CODEC
Ismael Luceno4d354352013-02-21 18:53:58 -03007909M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
7910S: Supported
Joe Perchesb2b01862012-01-10 15:09:01 -08007911F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007912
7913STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7914M: William Hubbs <w.d.hubbs@gmail.com>
7915M: Chris Brannon <chris@the-brannons.com>
William Hubbsd33bce32013-05-12 13:49:54 -05007916M: Kirk Reiser <kirk@reisers.ca>
Joe Perchesa0138162011-07-05 15:21:34 -07007917M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7918L: speakup@braille.uwo.ca
7919W: http://www.linux-speakup.org/
7920S: Odd Fixes
7921F: drivers/staging/speakup/
7922
7923STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007924M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007925S: Odd Fixes
7926F: drivers/staging/tidspbridge/
7927
Joe Perchesa0138162011-07-05 15:21:34 -07007928STAGING - USB ENE SM/MS CARD READER DRIVER
7929M: Al Cho <acho@novell.com>
7930S: Odd Fixes
7931F: drivers/staging/keucr/
7932
Joe Perchesb3e871c2011-07-05 09:42:10 -07007933STAGING - VIA VT665X DRIVERS
7934M: Forest Bond <forest@alittletooquiet.net>
7935S: Odd Fixes
7936F: drivers/staging/vt665?/
7937
Joe Perches81a9a522011-07-05 09:42:11 -07007938STAGING - WINBOND IS89C35 WLAN USB DRIVER
7939M: Pavel Machek <pavel@ucw.cz>
7940S: Odd Fixes
7941F: drivers/staging/winbond/
7942
Joe Perches709bcb02011-07-05 09:42:13 -07007943STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007944M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007945S: Odd Fixes
7946F: drivers/staging/xgifb/
7947
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007949M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007950S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007951F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007953SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007954M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007955W: http://sammy.net/sun3/
7956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007957F: arch/m68k/kernel/*sun3*
7958F: arch/m68k/sun3*/
7959F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007960F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007961
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007962SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007963M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007964L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007966Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007967T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007968S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007969F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007970F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007971F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007973SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Len Brown <len.brown@intel.com>
7975M: Pavel Machek <pavel@ucw.cz>
7976M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007977L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007978S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007979F: Documentation/power/
7980F: arch/x86/kernel/acpi/
7981F: drivers/base/power/
7982F: kernel/power/
7983F: include/linux/suspend.h
7984F: include/linux/freezer.h
7985F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986
7987SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989L: linux-video@atrey.karlin.mff.cuni.cz
7990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: Documentation/svga.txt
7992F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007994SWIOTLB SUBSYSTEM
7995M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7996L: linux-kernel@vger.kernel.org
7997S: Supported
7998F: lib/swiotlb.c
7999F: arch/*/kernel/pci-swiotlb.c
8000F: include/linux/swiotlb.h
8001
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308002SYNOPSYS ARC ARCHITECTURE
8003M: Vineet Gupta <vgupta@synopsys.com>
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308004S: Supported
8005F: arch/arc/
Vineet Gupta6659a202013-03-07 13:50:16 +05308006F: Documentation/devicetree/bindings/arc/
8007F: drivers/tty/serial/arc-uart.c
Vineet Guptadb8e35d2013-01-18 15:12:25 +05308008
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008010M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: Documentation/filesystems/sysv-fs.txt
8013F: fs/sysv/
8014F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008016TARGET SUBSYSTEM
8017M: Nicholas A. Bellinger <nab@linux-iscsi.org>
8018L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00008019L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008020L: http://groups.google.com/group/linux-iscsi-target-dev
8021W: http://www.linux-iscsi.org
Nicholas Bellinger452cf322013-05-11 16:27:56 -07008022T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07008023S: Supported
8024F: drivers/target/
8025F: include/target/
8026F: Documentation/target/
8027
Alan Cox4e688522008-04-30 00:52:11 -07008028TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07008029M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07008030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008031F: Documentation/accounting/taskstats*
8032F: include/linux/taskstats*
8033F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07008034
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008035TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00008036M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008037L: netdev@vger.kernel.org
8038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008039F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008040F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07008041F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07008042
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008043TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008044M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8045M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008046W: http://tcp-lp-mod.sourceforge.net/
8047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008048F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07008049
Antti Palosaari91952bc2012-10-01 12:28:46 -03008050TDA10071 MEDIA DRIVER
8051M: Antti Palosaari <crope@iki.fi>
8052L: linux-media@vger.kernel.org
8053W: http://linuxtv.org/
8054W: http://palosaari.fi/linux/
8055Q: http://patchwork.linuxtv.org/project/linux-media/list/
8056T: git git://linuxtv.org/anttip/media_tree.git
8057S: Maintained
8058F: drivers/media/dvb-frontends/tda10071*
8059
8060TDA18212 MEDIA DRIVER
8061M: Antti Palosaari <crope@iki.fi>
8062L: linux-media@vger.kernel.org
8063W: http://linuxtv.org/
8064W: http://palosaari.fi/linux/
8065Q: http://patchwork.linuxtv.org/project/linux-media/list/
8066T: git git://linuxtv.org/anttip/media_tree.git
8067S: Maintained
8068F: drivers/media/tuners/tda18212*
8069
8070TDA18218 MEDIA DRIVER
8071M: Antti Palosaari <crope@iki.fi>
8072L: linux-media@vger.kernel.org
8073W: http://linuxtv.org/
8074W: http://palosaari.fi/linux/
8075Q: http://patchwork.linuxtv.org/project/linux-media/list/
8076T: git git://linuxtv.org/anttip/media_tree.git
8077S: Maintained
8078F: drivers/media/tuners/tda18218*
8079
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03008080TDA18271 MEDIA DRIVER
8081M: Michael Krufky <mkrufky@linuxtv.org>
8082L: linux-media@vger.kernel.org
8083W: http://linuxtv.org/
8084W: http://github.com/mkrufky
8085Q: http://patchwork.linuxtv.org/project/linux-media/list/
8086T: git git://linuxtv.org/mkrufky/tuners.git
8087S: Maintained
8088F: drivers/media/tuners/tda18271*
8089
Michael Krufkye48307a2012-10-02 00:56:33 -03008090TDA827x MEDIA DRIVER
8091M: Michael Krufky <mkrufky@linuxtv.org>
8092L: linux-media@vger.kernel.org
8093W: http://linuxtv.org/
8094W: http://github.com/mkrufky
8095Q: http://patchwork.linuxtv.org/project/linux-media/list/
8096T: git git://linuxtv.org/mkrufky/tuners.git
8097S: Maintained
8098F: drivers/media/tuners/tda8290.*
8099
Michael Krufky66cf9212012-10-02 00:56:28 -03008100TDA8290 MEDIA DRIVER
8101M: Michael Krufky <mkrufky@linuxtv.org>
8102L: linux-media@vger.kernel.org
8103W: http://linuxtv.org/
8104W: http://github.com/mkrufky
8105Q: http://patchwork.linuxtv.org/project/linux-media/list/
8106T: git git://linuxtv.org/mkrufky/tuners.git
8107S: Maintained
8108F: drivers/media/tuners/tda8290.*
8109
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008110TDA9840 MEDIA DRIVER
8111M: Hans Verkuil <hverkuil@xs4all.nl>
8112L: linux-media@vger.kernel.org
8113T: git git://linuxtv.org/media_tree.git
8114W: http://linuxtv.org
8115S: Maintained
8116F: drivers/media/i2c/tda9840*
8117
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008118TEA5761 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008119M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008120L: linux-media@vger.kernel.org
8121W: http://linuxtv.org
8122T: git git://linuxtv.org/media_tree.git
8123S: Odd fixes
8124F: drivers/media/tuners/tea5761.*
8125
8126TEA5767 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008127M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02008128L: linux-media@vger.kernel.org
8129W: http://linuxtv.org
8130T: git git://linuxtv.org/media_tree.git
8131S: Maintained
8132F: drivers/media/tuners/tea5767.*
8133
Hans Verkuil4b9fba32012-11-23 10:02:05 -03008134TEA6415C MEDIA DRIVER
8135M: Hans Verkuil <hverkuil@xs4all.nl>
8136L: linux-media@vger.kernel.org
8137T: git git://linuxtv.org/media_tree.git
8138W: http://linuxtv.org
8139S: Maintained
8140F: drivers/media/i2c/tea6415c*
8141
8142TEA6420 MEDIA DRIVER
8143M: Hans Verkuil <hverkuil@xs4all.nl>
8144L: linux-media@vger.kernel.org
8145T: git git://linuxtv.org/media_tree.git
8146W: http://linuxtv.org
8147S: Maintained
8148F: drivers/media/i2c/tea6420*
8149
Jiri Pirko3d249d42011-11-11 22:16:48 +00008150TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00008151M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00008152L: netdev@vger.kernel.org
8153S: Supported
8154F: drivers/net/team/
8155F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008156F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00008157
Vivien Didelot7d029122013-01-04 16:18:14 -05008158TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8159M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8160S: Maintained
8161F: arch/x86/platform/ts5500/
8162
Sean Young40ad4a32012-11-19 10:32:53 -03008163TECHNOTREND USB IR RECEIVER
8164M: Sean Young <sean@mess.org>
8165L: linux-media@vger.kernel.org
8166S: Maintained
8167F: drivers/media/rc/ttusbir.c
8168
Erik Gilling84b94142010-06-09 15:35:53 -07008169TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07008170M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07008171L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07008172Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8173T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07008174S: Supported
Stephen Warrenbbbe96e2013-04-29 16:17:23 -07008175N: [^a-z]tegra
Erik Gilling84b94142010-06-09 15:35:53 -07008176
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008177TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008178M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008179L: netdev@vger.kernel.org
8180S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07008181F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07008182
Alan Cox4e688522008-04-30 00:52:11 -07008183Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07008184M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07008185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008186F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07008187
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008188TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07008189M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07008190M: Max Filippov <jcmvbkbc@gmail.com>
8191L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07008192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008193F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07008194
Zhang Ruid3fb6952012-11-15 08:58:27 +08008195THERMAL
8196M: Zhang Rui <rui.zhang@intel.com>
Eduardo Valentinfa3031d2013-04-10 14:44:08 +00008197M: Eduardo Valentin <eduardo.valentin@ti.com>
Zhang Ruid3fb6952012-11-15 08:58:27 +08008198L: linux-pm@vger.kernel.org
8199T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
Eduardo Valentin65d467e2013-06-21 17:02:36 -04008200T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
Eduardo Valentin2f99a472013-04-10 14:44:09 +00008201Q: https://patchwork.kernel.org/project/linux-pm/list/
Zhang Ruid3fb6952012-11-15 08:58:27 +08008202S: Supported
8203F: drivers/thermal/
8204F: include/linux/thermal.h
Eduardo Valentincfaf7172013-04-17 17:12:21 +00008205F: include/linux/cpu_cooling.h
Zhang Ruid3fb6952012-11-15 08:58:27 +08008206
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05008207THINGM BLINK(1) USB RGB LED DRIVER
8208M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8209S: Maintained
8210F: drivers/hid/hid-thingm.c
8211
Alan Cox4e688522008-04-30 00:52:11 -07008212THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008213M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07008214L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05008215L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008216W: http://ibm-acpi.sourceforge.net
8217W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07008218T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07008219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008220F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07008221
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008222TI BANDGAP AND THERMAL DRIVER
8223M: Eduardo Valentin <eduardo.valentin@ti.com>
8224L: linux-pm@vger.kernel.org
Eduardo Valentin794b2e22013-05-15 15:46:01 +00008225S: Supported
8226F: drivers/thermal/ti-soc-thermal/
Eduardo Valentin1b46f2a2013-03-15 09:00:34 -04008227
Alex Dubov4020f2d2006-10-04 02:15:37 -07008228TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008229M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008231F: drivers/misc/tifm*
8232F: drivers/mmc/host/tifm_sd.c
8233F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07008234
M R Swami Reddy152ad442012-04-02 20:02:31 +05308235TI LM49xxx FAMILY ASoC CODEC DRIVERS
8236M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308237M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05308238L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8239S: Maintained
8240F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05308241F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05308242
Kim, Milo0edd8072012-12-17 16:01:17 -08008243TI LP855x BACKLIGHT DRIVER
8244M: Milo Kim <milo.kim@ti.com>
8245S: Maintained
8246F: Documentation/backlight/lp855x-driver.txt
8247F: drivers/video/backlight/lp855x_bl.c
8248F: include/linux/platform_data/lp855x.h
8249
Kim, Milofaf13f62012-12-10 05:27:03 +00008250TI LP8727 CHARGER DRIVER
8251M: Milo Kim <milo.kim@ti.com>
8252S: Maintained
8253F: drivers/power/lp8727_charger.c
8254F: include/linux/platform_data/lp8727.h
8255
Kim, Milo22f12292012-12-10 05:27:55 +00008256TI LP8788 MFD DRIVER
8257M: Milo Kim <milo.kim@ti.com>
8258S: Maintained
8259F: drivers/iio/adc/lp8788_adc.c
8260F: drivers/leds/leds-lp8788.c
8261F: drivers/mfd/lp8788*.c
8262F: drivers/power/lp8788-charger.c
8263F: drivers/regulator/lp8788-*.c
8264F: include/linux/mfd/lp8788*.h
8265
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008266TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03008267M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03008268L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8269S: Maintained
8270F: sound/soc/codecs/twl4030*
8271
Luciano Coelho90921012011-11-20 21:40:41 +02008272TI WILINK WIRELESS DRIVERS
8273M: Luciano Coelho <coelho@ti.com>
8274L: linux-wireless@vger.kernel.org
8275W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8276W: http://wireless.kernel.org/en/users/Drivers/wl1251
8277T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8278S: Maintained
8279F: drivers/net/wireless/ti/
8280F: include/linux/wl12xx.h
8281
Per Lidene86eaa32006-01-12 16:45:18 +01008282TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07008283M: Jon Maloy <jon.maloy@ericsson.com>
8284M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05008285L: netdev@vger.kernel.org (core kernel code)
8286L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01008287W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01008288S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008289F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07008290F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01008291
Chris Metcalf867e3592010-05-28 23:09:12 -04008292TILE ARCHITECTURE
8293M: Chris Metcalf <cmetcalf@tilera.com>
8294W: http://www.tilera.com/scm/
8295S: Supported
8296F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08008297F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07008298F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05008299F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04008300
Linus Torvalds1da177e2005-04-16 15:20:36 -07008301TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008302M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08008303L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008304W: http://sourceforge.net/projects/tlan/
8305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008306F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07008307F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008309TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Kentaro Takeda <takedakn@nttdata.co.jp>
8311M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09008312L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8313L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008314L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8315L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8316W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09008317T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008319F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09008320
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008321TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03008322M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008323L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03008324S: Maintained
8325F: drivers/platform/x86/topstar-laptop.c
8326
Linus Torvalds1da177e2005-04-16 15:20:36 -07008327TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05008328L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02008329S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008330F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331
8332TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008333M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334L: tlinux-users@tce.toshiba-dme.co.jp
8335W: http://www.buzzard.org.uk/toshiba/
8336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008337F: drivers/char/toshiba.c
8338F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008339F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340
Pierre Ossmand719f902009-03-24 21:06:09 +01008341TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008342M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07008343M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008344L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01008345S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02008346F: drivers/mmc/host/tmio_mmc*
8347F: drivers/mmc/host/sh_mobile_sdhi.c
8348F: include/linux/mmc/tmio.h
8349F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01008350
Guenter Roeck917cc4e2013-05-19 20:44:27 -07008351TMP401 HARDWARE MONITOR DRIVER
8352M: Guenter Roeck <linux@roeck-us.net>
8353L: lm-sensors@lm-sensors.org
8354S: Maintained
8355F: Documentation/hwmon/tmp401
8356F: drivers/hwmon/tmp401.c
8357
Hugh Dickins98f32602009-05-21 20:33:58 +01008358TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07008359M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01008360L: linux-mm@kvack.org
8361S: Maintained
8362F: include/linux/shmem_fs.h
8363F: mm/shmem.c
8364
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008365TM6000 VIDEO4LINUX DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03008366M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02008367L: linux-media@vger.kernel.org
8368W: http://linuxtv.org
8369T: git git://linuxtv.org/media_tree.git
8370S: Odd fixes
8371F: drivers/media/usb/tm6000/
8372
Alan Cox4e688522008-04-30 00:52:11 -07008373TPM DEVICE DRIVER
Kent Yoder5b88e272013-05-22 10:56:58 -05008374M: Leonidas Da Silva Barbosa <leosilva@linux.vnet.ibm.com>
8375M: Ashley Lai <ashley@ashleylai.com>
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008376M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07008377W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03008378M: Marcel Selhorst <tpmdd@selhorst.net>
8379M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08008380W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07008381L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07008382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008383F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07008384
Joe Perchesd6f005a2009-10-26 16:49:40 -07008385TRACING
8386M: Steven Rostedt <rostedt@goodmis.org>
8387M: Frederic Weisbecker <fweisbec@gmail.com>
8388M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008389T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07008390S: Maintained
8391F: Documentation/trace/ftrace.txt
8392F: arch/*/*/*/ftrace.h
8393F: arch/*/kernel/ftrace.c
8394F: include/*/ftrace.h
8395F: include/linux/trace*.h
8396F: include/trace/
8397F: kernel/trace/
8398
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07008400M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07008401T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008402S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02008403K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07008404
Alan Cox4e688522008-04-30 00:52:11 -07008405TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08008406M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01008407M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08008408S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07008409T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02008410F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008411F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01008412F: include/linux/serial_core.h
8413F: include/linux/serial.h
8414F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008415F: include/uapi/linux/serial_core.h
8416F: include/uapi/linux/serial.h
8417F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07008418
Antti Palosaari91952bc2012-10-01 12:28:46 -03008419TUA9001 MEDIA DRIVER
8420M: Antti Palosaari <crope@iki.fi>
8421L: linux-media@vger.kernel.org
8422W: http://linuxtv.org/
8423W: http://palosaari.fi/linux/
8424Q: http://patchwork.linuxtv.org/project/linux-media/list/
8425T: git git://linuxtv.org/anttip/media_tree.git
8426S: Maintained
8427F: drivers/media/tuners/tua9001*
8428
Grant Grundler740db6d2008-02-17 11:53:49 -07008429TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008430M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07008431L: netdev@vger.kernel.org
8432S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08008433F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434
8435TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008436M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008437W: http://vtun.sourceforge.net/tun
8438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008439F: Documentation/networking/tuntap.txt
8440F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008441
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008442TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008443M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008445F: drivers/tc/
8446F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008447
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008449M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450L: linux-scsi@vger.kernel.org
8451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008452F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008454UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008455M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008456M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008457L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008458T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008459W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008461F: Documentation/filesystems/ubifs.txt
8462F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008463
Alan Coxcc2020e2008-05-19 14:21:51 +01008464UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008465M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008466W: http://www.uclinux.org/
8467L: uclinux-dev@uclinux.org (subscribers-only)
8468S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008469F: arch/m68k/*/*_no.*
8470F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008471
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008472UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008473M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008474W: http://uclinux-h8.sourceforge.jp/
8475S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008476F: arch/h8300/
8477F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008478F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008479
Linus Torvalds1da177e2005-04-16 15:20:36 -07008480UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008481M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008483F: Documentation/filesystems/udf.txt
8484F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485
Alan Coxcc2020e2008-05-19 14:21:51 +01008486UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008487M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008489F: Documentation/filesystems/ufs.txt
8490F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008491
David Herrmann0a09d3a2012-06-10 15:16:28 +02008492UHID USERSPACE HID IO DRIVER:
8493M: David Herrmann <dh.herrmann@googlemail.com>
8494L: linux-input@vger.kernel.org
8495S: Maintained
8496F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008497F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008498
David Vrabel18332a82008-09-17 16:34:44 +01008499ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008500L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008501S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008502F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008503F: include/linux/uwb.h
8504F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008505
GuanXuetaob31d8272011-01-16 00:35:49 +08008506UNICORE32 ARCHITECTURE:
8507M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8508W: http://mprc.pku.edu.cn/~guanxuetao/linux
8509S: Maintained
8510T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8511F: arch/unicore32/
8512
Tony Finchd8379ab2009-11-27 15:50:30 +00008513UNIFDEF
8514M: Tony Finch <dot@dotat.at>
8515W: http://dotat.at/prog/unifdef
8516S: Maintained
8517F: scripts/unifdef.c
8518
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008520M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008521W: http://www.kernel.dk
8522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008523F: Documentation/cdrom/
8524F: drivers/cdrom/cdrom.c
8525F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008526F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308528UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8529M: Vinayak Holikatti <vinholikatti@gmail.com>
8530M: Santosh Y <santoshsy@gmail.com>
8531L: linux-scsi@vger.kernel.org
8532S: Supported
8533F: Documentation/scsi/ufs.txt
8534F: drivers/scsi/ufs/
8535
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008536UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008537M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008538W: http://www.linux-mtd.infradead.org/
8539L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008540T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008541S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008542F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008543F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008544F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008545
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008546UNSORTED BLOCK IMAGES (UBI) Fastmap
8547M: Richard Weinberger <richard@nod.at>
8548L: linux-mtd@lists.infradead.org
8549S: Maintained
8550F: drivers/mtd/ubi/fastmap.c
8551
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008553M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008554L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008556F: Documentation/usb/acm.txt
8557F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008559USB AR5523 WIRELESS DRIVER
8560M: Pontus Fuchs <pontus.fuchs@gmail.com>
8561L: linux-wireless@vger.kernel.org
8562S: Maintained
8563F: drivers/net/wireless/ath/ar5523/
8564
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008565USB ATTACHED SCSI
8566M: Matthew Wilcox <willy@linux.intel.com>
8567M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008568M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008569L: linux-usb@vger.kernel.org
8570L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01008571S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008572F: drivers/usb/storage/uas.c
8573
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008575M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008576L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008578F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008579F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008581USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008582M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008583L: linux-usb@vger.kernel.org
8584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008585F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008586
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008587USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008588M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008589L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008590W: http://www.linux-usb.org/usbnet
8591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008592F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008593
Alan Coxcc2020e2008-05-19 14:21:51 +01008594USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008595M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008596L: rio500-users@lists.sourceforge.net
8597W: http://rio500.sourceforge.net
8598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008599F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008600
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008602M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008603L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008605F: Documentation/usb/ehci.txt
8606F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607
David Brownell69ae9e32006-11-14 02:03:31 -08008608USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008609M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008610L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008611W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008612T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008614F: drivers/usb/gadget/
8615F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008616
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008617USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008618M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008619L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008620T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008622F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008623F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624
matt mooney857aab32011-06-17 15:50:46 -07008625USB/IP DRIVERS
8626M: Matt Mooney <mfm@muteddisk.com>
8627L: linux-usb@vger.kernel.org
8628S: Maintained
8629F: drivers/staging/usbip/
8630
Olav Kongas959eea22005-11-03 17:38:14 +02008631USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008632M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008633L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008635F: drivers/usb/host/isp116x*
8636F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008639M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008640L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008642F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643
8644USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008645M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008646L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008647L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648S: Maintained
8649W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008650F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651
Clemens Ladischaf399172011-01-10 16:32:54 +01008652USB MIDI DRIVER
8653M: Clemens Ladisch <clemens@ladisch.de>
8654L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8655T: git git://git.alsa-project.org/alsa-kernel.git
8656S: Maintained
8657F: sound/usb/midi.*
8658
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008660M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008661L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008663F: Documentation/usb/ohci.txt
8664F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665
Matthias Urlichsba460e42005-07-14 00:33:47 -07008666USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008667M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008668L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008670F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008671
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672USB PEGASUS DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008673M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008674L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008675L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008676T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677W: http://pegasus2.sourceforge.net/
8678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008679F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680
Felipe Balbid3ad5582012-05-21 16:24:49 +03008681USB PHY LAYER
8682M: Felipe Balbi <balbi@ti.com>
8683L: linux-usb@vger.kernel.org
8684T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8685S: Maintained
8686F: drivers/usb/phy/
8687F: drivers/usb/otg/
8688
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008689USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008690M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008691L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008693F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008694
8695USB RTL8150 DRIVER
Petko Manolova16b9452013-04-29 16:17:25 -07008696M: Petko Manolov <petkan@nucleusys.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008697L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008698L: netdev@vger.kernel.org
Petko Manolova16b9452013-04-29 16:17:25 -07008699T: git git://git.code.sf.net/p/pegasus2/git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700W: http://pegasus2.sourceforge.net/
8701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008702F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703
Alan Cox4e688522008-04-30 00:52:11 -07008704USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008705M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008706L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008708F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008709
8710USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008711M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008712L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008713S: Maintained
8714W: http://geocities.com/i0xox0i
8715W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008716F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008717
Linus Torvalds1da177e2005-04-16 15:20:36 -07008718USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008719M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008720W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008722F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008723
8724USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008725M: Peter Berger <pberger@brimson.com>
8726M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008727L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008729F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008730
8731USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008732M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008733L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008735F: Documentation/usb/usb-serial.txt
8736F: drivers/usb/serial/generic.c
8737F: drivers/usb/serial/usb-serial.c
8738F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008739
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008741M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008742L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008744F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745
8746USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008747M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008748L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008750F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008751
8752USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008753M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008754L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755W: http://www.connecttech.com
8756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008757F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008758
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008759USB SMSC75XX ETHERNET DRIVER
8760M: Steve Glendinning <steve.glendinning@shawell.net>
8761L: netdev@vger.kernel.org
8762S: Maintained
8763F: drivers/net/usb/smsc75xx.*
8764
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008765USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008766M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008767L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008769F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008770
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008771USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008772M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008773L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008774L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008775T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008776W: http://www.linux-projects.org
8777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008778F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008779F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008780
8781USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008782M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008783L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008784W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008785T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008787F: Documentation/usb/
8788F: drivers/net/usb/
8789F: drivers/usb/
8790F: include/linux/usb.h
8791F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008792
8793USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008794M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008795L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008797F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008798
David Brownell69ae9e32006-11-14 02:03:31 -08008799USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008800M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008801L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008802W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008804F: drivers/net/usb/usbnet.c
8805F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008806
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008807USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008808M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008809L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008810L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008811T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008812W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008813S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008814F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008815F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008816
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008817USB VISION DRIVER
8818M: Hans Verkuil <hverkuil@xs4all.nl>
8819L: linux-media@vger.kernel.org
8820T: git git://linuxtv.org/media_tree.git
8821W: http://linuxtv.org
8822S: Odd Fixes
8823F: drivers/media/usb/usbvision/
8824
Laurent Pinchart8282da42012-10-04 02:32:42 +02008825USB WEBCAM GADGET
8826M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8827L: linux-usb@vger.kernel.org
8828S: Maintained
8829F: drivers/usb/gadget/*uvc*.c
8830F: drivers/usb/gadget/webcam.c
8831
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008832USB WIRELESS RNDIS DRIVER (rndis_wlan)
Jussi Kivilinnae6146c52013-03-07 22:33:38 +02008833M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008834L: linux-wireless@vger.kernel.org
8835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008836F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008837
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008838USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008839M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008840L: linux-usb@vger.kernel.org
8841S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008842F: drivers/usb/host/xhci*
8843F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008844
Linus Torvalds1da177e2005-04-16 15:20:36 -07008845USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008846L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008847W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008848S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008849F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008850
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008851USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008852M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008853L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008854L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008855T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008856W: http://royale.zerezo.com/zr364xx/
8857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008858F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008859F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008860
Randy Dunlape7839f22008-10-12 16:11:45 -07008861USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008862M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008863M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008864L: user-mode-linux-devel@lists.sourceforge.net
8865L: user-mode-linux-user@lists.sourceforge.net
8866W: http://user-mode-linux.sourceforge.net
8867S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008868F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008869F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008870F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008871F: fs/hostfs/
8872F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008873
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008874USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008875M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008876M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008878F: Documentation/DocBook/uio-howto.tmpl
8879F: drivers/uio/
8880F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008881
Karel Zak256cccb2012-06-01 10:13:09 +02008882UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008883M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008884L: util-linux@vger.kernel.org
8885W: http://en.wikipedia.org/wiki/Util-linux
8886T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008887S: Maintained
8888
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008889UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008890M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008891L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008892W: http://dev.gentoo.org/~spock/projects/uvesafb/
8893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008894F: Documentation/fb/uvesafb.txt
8895F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008896
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008897VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008898M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008900F: Documentation/filesystems/vfat.txt
8901F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902
Alex Williamsoncba33452012-07-31 08:16:22 -06008903VFIO DRIVER
8904M: Alex Williamson <alex.williamson@redhat.com>
8905L: kvm@vger.kernel.org
8906S: Maintained
8907F: Documentation/vfio.txt
8908F: drivers/vfio/
8909F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008910F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008911
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008912VIDEOBUF2 FRAMEWORK
8913M: Pawel Osciak <pawel@osciak.com>
8914M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008915M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008916L: linux-media@vger.kernel.org
8917S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008918F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008919F: include/media/videobuf2-*
8920
Amit Shah9a824462010-03-23 18:23:09 +05308921VIRTIO CONSOLE DRIVER
8922M: Amit Shah <amit.shah@redhat.com>
8923L: virtualization@lists.linux-foundation.org
8924S: Maintained
8925F: drivers/char/virtio_console.c
8926F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008927F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308928
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308929VIRTIO CORE, NET AND BLOCK DRIVERS
8930M: Rusty Russell <rusty@rustcorp.com.au>
8931M: "Michael S. Tsirkin" <mst@redhat.com>
8932L: virtualization@lists.linux-foundation.org
8933S: Maintained
8934F: drivers/virtio/
Michael S. Tsirkinc893c8d2013-07-08 11:31:13 +09308935F: tools/virtio/
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308936F: drivers/net/virtio_net.c
8937F: drivers/block/virtio_blk.c
8938F: include/linux/virtio_*.h
Amos Kong916cdab2013-04-02 16:42:02 +10308939F: include/uapi/linux/virtio_*.h
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308940
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008941VIRTIO HOST (VHOST)
8942M: "Michael S. Tsirkin" <mst@redhat.com>
8943L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008944L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008945L: netdev@vger.kernel.org
8946S: Maintained
8947F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008948F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008949
Linus Torvalds1da177e2005-04-16 15:20:36 -07008950VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008951M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008953F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008954
Harald Weltef0bf7f62009-06-17 20:22:39 +02008955VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008956M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008957M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008958S: Maintained
8959F: drivers/mmc/host/via-sdmmc.c
8960
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008961VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008962M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008963L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008964S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008965F: include/linux/via-core.h
8966F: include/linux/via-gpio.h
8967F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008968F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008969
Francois Romieu01f20732007-01-26 00:57:17 -08008970VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008971M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008972L: netdev@vger.kernel.org
8973S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008974F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008975
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008976VIVI VIRTUAL VIDEO DRIVER
8977M: Hans Verkuil <hverkuil@xs4all.nl>
8978L: linux-media@vger.kernel.org
8979T: git git://linuxtv.org/media_tree.git
8980W: http://linuxtv.org
8981S: Maintained
8982F: drivers/media/platform/vivi*
8983
Patrick McHardybe7f8272007-10-23 20:26:36 -07008984VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008985M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008986L: netdev@vger.kernel.org
8987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008988F: drivers/net/macvlan.c
8989F: include/linux/if_*vlan.h
8990F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008991
Florian Fainelli55e331c2009-06-16 15:33:53 -07008992VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008993M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008994L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008995S: Maintained
8996F: drivers/vlynq/vlynq.c
8997F: include/linux/vlynq.h
8998
Martyn Welch390beae2012-05-03 17:52:36 +01008999VME SUBSYSTEM
9000M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02009001M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01009002M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9003L: devel@driverdev.osuosl.org
9004S: Maintained
9005T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9006F: Documentation/vme_api.txt
9007F: drivers/staging/vme/
9008F: drivers/vme/
9009F: include/linux/vme*
9010
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009011VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08009012M: Shreyas Bhatewara <sbhatewara@vmware.com>
9013M: "VMware, Inc." <pv-drivers@vmware.com>
9014L: netdev@vger.kernel.org
9015S: Maintained
9016F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07009017
Alok Kataria851b1642009-10-13 14:51:05 -07009018VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08009019M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07009020M: VMware PV-Drivers <pv-drivers@vmware.com>
9021L: linux-scsi@vger.kernel.org
9022S: Maintained
9023F: drivers/scsi/vmw_pvscsi.c
9024F: drivers/scsi/vmw_pvscsi.h
9025
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009026VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Axel Lin88dd75a2013-03-25 16:49:51 +08009027M: Liam Girdwood <lgirdwood@gmail.com>
Mark Brownb02e48f2013-04-12 11:39:57 +01009028M: Mark Brown <broonie@kernel.org>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009029W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00009030W: http://www.slimlogic.co.uk/?p=48
Sachin Kamat6febb5a2013-07-04 12:08:50 +05309031T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009033F: drivers/regulator/
9034F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01009035
Juerg Haefligerab413192006-09-24 20:54:04 +02009036VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009037M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02009038L: lm-sensors@lm-sensors.org
9039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009040F: Documentation/hwmon/vt1211
9041F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02009042
Roger Lucas1de9e372005-11-26 20:20:05 +01009043VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009044M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01009045L: lm-sensors@lm-sensors.org
9046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009047F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01009048
Tony Olech88095e72011-05-14 16:48:13 -04009049VUB300 USB to SDIO/SD/MMC bridge chip
9050M: Tony Olech <tony.olech@elandigitalsystems.com>
9051L: linux-mmc@vger.kernel.org
9052L: linux-usb@vger.kernel.org
9053S: Supported
9054F: drivers/mmc/host/vub300.c
9055
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07009057M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009059F: Documentation/w1/
9060F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009061
Charles Spirakis13927072006-07-05 18:05:15 +02009062W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009063M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02009064L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04009065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009066F: Documentation/hwmon/w83791d
9067F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02009068
Rudolf Marek61db0112006-12-12 18:18:30 +01009069W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009070M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01009071L: lm-sensors@lm-sensors.org
9072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009073F: Documentation/hwmon/w83793
9074F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01009075
Jean Delvaree3760b42010-10-28 20:31:49 +02009076W83795 HARDWARE MONITORING DRIVER
9077M: Jean Delvare <khali@linux-fr.org>
9078L: lm-sensors@lm-sensors.org
9079S: Maintained
9080F: drivers/hwmon/w83795.c
9081
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009083M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009085F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009086
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009087WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07009088M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00009089L: linux-watchdog@vger.kernel.org
9090W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01009091T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009093F: Documentation/watchdog/
9094F: drivers/watchdog/
9095F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009096F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01009097
Linus Torvalds1da177e2005-04-16 15:20:36 -07009098WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009099M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009100L: linux-scsi@vger.kernel.org
9101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009102F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009103
David Herrmannb22e00f2011-09-06 13:50:40 +02009104WIIMOTE HID DRIVER
9105M: David Herrmann <dh.herrmann@googlemail.com>
9106L: linux-input@vger.kernel.org
9107S: Maintained
9108F: drivers/hid/hid-wiimote*
9109
David Härdemane258b802009-09-21 17:04:53 -07009110WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07009111M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07009112S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07009113F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07009114
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009115WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07009116M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009117M: linux-wimax@intel.com
9118L: wimax@linuxwimax.org
9119S: Supported
9120W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07009121F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07009122F: include/linux/wimax/debug.h
9123F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009124F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07009125F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08009126
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009127WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009128M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009130F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05009131
Linus Torvalds1da177e2005-04-16 15:20:36 -07009132WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009133M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07009134L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03009135W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07009136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009137F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009138
Mark Brownfebf1df2008-04-02 00:51:09 -04009139WM97XX TOUCHSCREEN DRIVERS
Mark Brownd9f1f482013-06-01 19:31:15 +01009140M: Mark Brown <broonie@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07009141M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04009142L: linux-input@vger.kernel.org
9143T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
9144W: http://opensource.wolfsonmicro.com/node/7
9145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009146F: drivers/input/touchscreen/*wm97*
9147F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04009148
Mark Brown055bcbc2010-08-13 14:18:12 +01009149WOLFSON MICROELECTRONICS DRIVERS
Mark Brownfef95162012-04-04 12:06:24 +01009150L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07009151T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01009152T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07009153W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01009154S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08009155F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01009156F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01009157F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009158F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01009159F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01009160F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009161F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05009162F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09009163F: drivers/input/misc/wm831x-on.c
9164F: drivers/input/touchscreen/wm831x-ts.c
9165F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01009166F: drivers/mfd/arizona*
9167F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01009168F: drivers/power/wm83*.c
9169F: drivers/rtc/rtc-wm83*.c
9170F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01009171F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01009172F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01009173F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01009174F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01009175F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08009176F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09009177F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01009178F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01009179F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01009180F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01009181
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009182WORKQUEUE
9183M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01009184T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9185S: Maintained
9186F: include/linux/workqueue.h
9187F: kernel/workqueue.c
9188F: Documentation/workqueue.txt
9189
Linus Torvalds1da177e2005-04-16 15:20:36 -07009190X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009191M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009192L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00009193S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07009194F: Documentation/networking/x25*
9195F: include/net/x25*
9196F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009197
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009198X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07009199M: Thomas Gleixner <tglx@linutronix.de>
9200M: Ingo Molnar <mingo@redhat.com>
9201M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08009202M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01009203T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009205F: Documentation/x86/
9206F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07009207
Matthew Garrettd0944852010-02-11 10:40:13 -05009208X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05009209M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05009210L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07009211T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05009212S: Maintained
9213F: drivers/platform/x86
9214
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009215X86 MCE INFRASTRUCTURE
9216M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01009217M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02009218L: linux-edac@vger.kernel.org
9219S: Maintained
9220F: arch/x86/kernel/cpu/mcheck/*
9221
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009222XC2028/3028 TUNER DRIVER
Mauro Carvalho Chehab1b2c14b2013-07-08 10:48:28 -03009223M: Mauro Carvalho Chehab <m.chehab@samsung.com>
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02009224L: linux-media@vger.kernel.org
9225W: http://linuxtv.org
9226T: git git://linuxtv.org/media_tree.git
9227S: Maintained
9228F: drivers/media/tuners/tuner-xc2028.*
9229
Ian Campbellc4468082011-04-27 15:26:46 -07009230XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07009231M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08009232M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07009233L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9234L: virtualization@lists.linux-foundation.org
9235S: Supported
9236F: arch/x86/xen/
9237F: drivers/*/xen-*front.c
9238F: drivers/xen/
9239F: arch/x86/include/asm/xen/
9240F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08009241F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07009242
Stefano Stabellini77bfb472012-09-14 13:35:15 +00009243XEN HYPERVISOR ARM
9244M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9245L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9246S: Supported
9247F: arch/arm/xen/
9248F: arch/arm/include/asm/xen/
9249
Stefano Stabellinib475e832013-06-04 16:13:23 +00009250XEN HYPERVISOR ARM64
9251M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9252L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9253S: Supported
9254F: arch/arm64/xen/
9255F: arch/arm64/include/asm/xen/
9256
Ian Campbell9b57e1a2011-04-03 23:12:23 +00009257XEN NETWORK BACKEND DRIVER
9258M: Ian Campbell <ian.campbell@citrix.com>
9259L: xen-devel@lists.xensource.com (moderated for non-subscribers)
9260L: netdev@vger.kernel.org
9261S: Supported
9262F: drivers/net/xen-netback/*
9263
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009264XEN PCI SUBSYSTEM
9265M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009266L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02009267S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009268F: arch/x86/pci/*xen*
9269F: drivers/pci/*xen*
9270
9271XEN SWIOTLB SUBSYSTEM
9272M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08009273L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04009274S: Supported
9275F: arch/x86/xen/*swiotlb*
9276F: drivers/xen/*swiotlb*
9277
Linus Torvalds1da177e2005-04-16 15:20:36 -07009278XFS FILESYSTEM
9279P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00009280M: Ben Myers <bpm@sgi.com>
9281M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00009282M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10009283L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07009284W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07009285T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07009287F: Documentation/filesystems/xfs.txt
9288F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009289
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009290XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00009291M: Anirudha Sarangi <anirudh@xilinx.com>
9292M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00009293S: Maintained
9294F: drivers/net/ethernet/xilinx/xilinx_axienet*
9295
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009296XILINX SYSTEMACE DRIVER
Grant Likelycdeb8992013-07-22 01:38:32 +01009297S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07009298F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02009299
Peter Korsgaard238b8722006-12-06 20:35:17 -08009300XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009301M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08009302L: linux-serial@vger.kernel.org
9303S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009304F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08009305
Linus Torvalds1da177e2005-04-16 15:20:36 -07009306YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009307M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009308L: linux-hams@vger.kernel.org
9309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009310F: drivers/net/hamradio/yam*
9311F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009312
Henkaf64a5e2005-10-12 15:02:56 +02009313YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009314M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02009315L: usbb2k-api-dev@nongnu.org
9316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009317F: Documentation/input/yealink.txt
9318F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02009319
Linus Torvalds1da177e2005-04-16 15:20:36 -07009320Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07009321M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322W: http://yaina.de/jreuter/
9323W: http://www.qsl.net/dl1bke/
9324L: linux-hams@vger.kernel.org
9325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009326F: Documentation/networking/z8530drv.txt
9327F: drivers/net/hamradio/*scc.c
9328F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07009329
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009330ZBUD COMPRESSED PAGE ALLOCATOR
9331M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9332L: linux-mm@kvack.org
9333S: Maintained
9334F: mm/zbud.c
9335F: include/linux/zbud.h
9336
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009337ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009338M: Daniel Drake <dsd@gentoo.org>
9339M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009340W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07009341L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009342L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07009344F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01009345
Linus Torvalds1da177e2005-04-16 15:20:36 -07009346ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07009347L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03009348L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03009350T: Mercurial http://linuxtv.org/hg/v4l-dvb
9351S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03009352F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009353
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009354ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07009355M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009356S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08009357F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07009358
Seth Jennings0cf31ec2013-07-08 16:00:05 -07009359ZSWAP COMPRESSED SWAP CACHING
9360M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9361L: linux-mm@kvack.org
9362S: Maintained
9363F: mm/zswap.c
9364
Linus Torvalds1da177e2005-04-16 15:20:36 -07009365THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07009366M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07009367L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08009368Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04009369T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07009370S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07009371F: *
9372F: */